shailendra311285 Report post Posted December 11, 2013 In attached image there is a legend area in red rectangle. Can we customize the legend as attached pictures. Forreference please follow the attached image. Share this post Link to post Share on other sites
Haritha Report post Posted December 12, 2013 Hi, If your requirement is to display legend in the form of a table, then you may use any one of the following approaches: 1. Grid Component You may disable showing legend for the chart and use grid component along with it to show the legend in similar format. However, when you use this method, legend interactivity will no longer be available since Grid is a separate component. For information on Grid component, you may refer : http://docs.fusioncharts.com/charts/contents/index.html?grid-component/Grid_Overview.html 2. Use Legend and give spaces in values You may use the legend of the chart and give spaces in values of "legendCaption" and "seriesName" so that they get displayed like a table. Eg. <chart ... legendNumColumns='1' legendCaption=' Property Change(%)' <dataset seriesName='Demo 20%'> In the above example is used to give spaces in XML data. Since, legend is a part of the chart, legend interactivity is still available. Hope this helps. Share this post Link to post Share on other sites