Hello EveryBody
I'm trying some chart task during the last few weeks. I tried a lot
ways but it still doesn't work.
What i need is count total number above the each bar like this
http://s1066.photobucket.com/albums/u418/f0under1/
Can someone help me please?
Thanks
my code snippets: It works good but i can't count the total visitor..
Is there good way to solve this issue?
function drawColumnChart() {
var wrapper = new google.visualization.ChartWrapper({
dataSourceUrl: 'http://127.0.0.1:8000/sms/stat/daily.json',
chartType: 'ColumnChart',
containerId: 'vis_div',
options: {
title: 'user',
isStacked: true,
colors: ['#ff9900' , '#dc3912' , '#3366cc' , '#109618'],
focusTarget: 'category',
reverseCategories: true,
vAxis: {title: 'day',
titleTextStyle: {color: 'red'},
logScale: false,
gridlines: {
count: 6
},
legend: {
position: 'none',
},
tooltip: {
textStyle: {color: '#FF0000'},
showColorCode: true,
trigger: 'none',
},
},
}
});
wrapper.draw();
}
--
You received this message because you are subscribed to the Google Groups
"Google Chart 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-chart-api?hl=en.