Sosuke Report post Posted January 16, 2014 Hi, I want to use custom 'displayValue' with Multi Series Stacked Column 2D Dual Y Chart, and I would like to place those values above each columns. But those values are put in the middle of each data plot, can I display those values above each columns? ~/Gallery/Data/String/MSStCol2DLine1.js ... <dataset> <dataSet seriesName="Product A" color="AFD8F8" showValues="1" valuePosition="ABOVE"> <set value="30" displayValue="Product : 51" /> <set value="26" displayValue="Product : 54" /> <set value="29" displayValue="Product : 68" /> <set value="31" displayValue="Product : 72" /> <set value="34" displayValue="Product : 58" /> </dataSet> <dataSet seriesName="Product B" color="F6BD0F" showValues="1" valuePosition="ABOVE"> <set value="21" displayValue="Product : 51" /> <set value="28" displayValue="Product : 54" /> <set value="39" displayValue="Product : 68" /> <set value="41" displayValue="Product : 72" /> <set value="24" displayValue="Product : 58" /> </dataSet> </dataset> ... Thanks, Share this post Link to post Share on other sites
Guest Sumedh Report post Posted January 17, 2014 Hello, Displaying values of each stack, above the data-plot is not possible. However, you can display the sum of all the stacks using 'showSum' attribute. Ref. Code: <chart .., showSum='1'> For more information, please refer the following link: http://docs.fusioncharts.com/charts/contents/?ChartSS/MSStColLineDY.html Hope this helps! Share this post Link to post Share on other sites