samkwitty Report post Posted June 29, 2008 (edited) Labels don't show up when setting showLabel='1' I have tested this with barer2d. Doing the following does not show labels on the graph: < dataset> < set value='1' label='abc' showLabel='1'/> < /dataset> This also does not work: < dataset showLabels='1' > < set value='1' label='abc' showLabel='1'/> < /dataset> -Sam Edited July 28, 2008 by Guest Share this post Link to post Share on other sites
Pallav Report post Posted July 2, 2008 Hi, Can you please post the entire XML document? Share this post Link to post Share on other sites
samkwitty Report post Posted July 28, 2008 (edited) Apparently the first time I posted this the XML did not come across... I just fixed that in the original post. Edited July 28, 2008 by Guest Share this post Link to post Share on other sites
Pallav Report post Posted July 29, 2008 The showLabels attribute is set at [chart] element level. Share this post Link to post Share on other sites
samkwitty Report post Posted August 6, 2008 According to your doc it is in both places. I set it to "1" both on the chart and dataset. Share this post Link to post Share on other sites
FusionCharts Support Report post Posted August 7, 2008 Hi, Could you please let us know which chart SWF you are using? If you are using Bar2D.swf (single-series) then the permitted attributes for hiding and showing labels are :(showLabels and showLabel) <chart showLabels='1'..> <set label='foo' showLabel='0'/> ... </chart> In this XML structure there should be no <Dataset> In case you are using MSBar2D.swf : (multi-series) <chart showLabels='1'..> <categories> <category label='foo' showLabel='0'/> ... </chart> Labels are set through <category> elemements. Hence, must be given in <category> element. <dataset> or <set> inside <dataset> would ignore these attributes since these have nothing to do with labels in Multi-series XML/Chart model. Share this post Link to post Share on other sites