Dojo Stacked Column Chart Issues In Add Total Stacked Value On The Top Of Stacked
I seem to be having a problem with my dojo stacked column chart. Each stack values are placed 'inside' the stacked chart. But I want these stacked totals should be at the top but
Solution 1:
I'm not 100% sure what you are trying to achieve in the end but you can definitely dislpay "AC: 300, TV: 244" by using the following text function:
text: function(chartItem, plot) {
return"AC: "+plot.series[0].data[chartItem.index] +
", TV: "+plot.series[1].data[chartItem.index];
}
See also: http://jsfiddle.net/B45PW/3/
EDIT: In your example you are also missing the CSS needed for the tooltip to show up correctly. You need to add:
<link href="dojoinstall/dijit/themes/claro/claro.css">
and use the claro class on your body:
<body class="claro">
See:
Post a Comment for "Dojo Stacked Column Chart Issues In Add Total Stacked Value On The Top Of Stacked"