mmm, i have another question here, i was trying with the example you
helped me but now i want to do this:
function drawVisualization() {
// Create and populate the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'foobar');
data.addColumn('number', 'Subtotal');
data.addColumn('number', 'Total');
data.addRows([
['foo', {v: 15, f: "225"}, {v: 85, f: "1500"}],
['bar', {v: 30, f: "600"}, {v: 70, f: "2000"}]
]);
// Create and draw the visualization.
var chart = new
google.visualization.ColumnChart(document.getElementById(
'visualization'));
chart.draw(data, {
width:600,
height:400,
isStacked: true
});
The chart shows a 100% value (total value ie: 1500) and the diference
is 15% (225) it draws ok but when i see the tooltip the total value is
ok 1500 but the subtotal shows me 15, how can i do to shows me the
real value (225) and not the % diference? i need to show as it is now
based on a 100% chart but with values & %
txs
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.