devnull Report post Posted January 29, 2015 He folks. I have an "msline"-chart containing five datasets. The first three should have a €-sign appended to the values (which already works by using "numberSuffix=' €'". The last two should get the string "Pcs" appended. How can I do that? Is there a way to override numberSuffix for certain datasets? Thank you very much for your help! Share this post Link to post Share on other sites
Nabajeet Report post Posted January 30, 2015 Hi, It is not possible to add different numberSuffix to different datasets. However you can set displayValue statically for each set you want to have a different numberSuffix. Please check out this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/6jg1t4ac/ Share this post Link to post Share on other sites
devnull Report post Posted February 5, 2015 Dear Nabajeet. Thanks a lot for your reply. Unfortunately I still don't get it. Here's what I do. Chart declaration: $xml="<chart [....] subCaption='' showValues='0' useRoundEdges='1' showBorder='1' decimals='2' formatNumberScale='0' numberSuffix=' €' >" $xml.="<categories><category label='1' />......</categories>"; First dataset: $xml.="<dataset seriesname='Total'><set label='1' value='500' />[.....]</dataset>"; <- This shows as 500,00 €, which is just what I want here. Fourth dataset: $xml.="<dataset seriesname='XYZ' dashed='1'><set value='100' displayValue=' Pcs'/>[.....]</dataset> <- This still shows as 100,00 € which is NOT what I want. It should show as "100 Pcs". What am I doing wrong? Share this post Link to post Share on other sites
Nabajeet Report post Posted February 6, 2015 Hi, Please note that whatever you add in displayValue inside the set attribute shall overwrite the actual value being provided. As such "<dataset seriesname='XYZ' dashed='1'><set value='100' displayValue=' Pcs'/> should show only ' Pcs' as value in the chart. Share this post Link to post Share on other sites