Vedmack Report post Posted November 28, 2012 Hi I'm drawing a simple pie2D chart with assigning special colors (getting the default ones) I want to the chart to be with gradient color , but not like it comes as default - same color till almost the border , and in the end a major gradient ending ( which can be removed by setting use3DLighting into 0) SO I wonder how can I control this gradient steps from center of the pie till the borders Regards, Daniel. Share this post Link to post Share on other sites
Guest Bindhu Report post Posted November 29, 2012 Hi, Can you please share a sample image of your requirement for better comprehension? Also, please share the XML data. Share this post Link to post Share on other sites
Vedmack Report post Posted November 29, 2012 (edited) Here is a sample code var chartData = { "chart": { "showlabels": 0, "showvalues": 0, "showLegend": 1, "legendPosition": "buttom", "bgAlpha": '0,0', "animation": 0, "interactiveLegend": 0, "enableRotation": 0, "enableSlicing": 0, "use3DLighting": 0 }, "data": [ { "value": "243", "label": "USA" }, { "value": "207", "label": "UK" }, { "value": "82", "label": "Canada" }, { "value": "65", "label": "France" }, { "value": "175", "label": "Others" } ] }; var chartReference = new FusionCharts("Pie2D", "my_chart_id", 300, 300, "0", "0"); chartReference.setJSONData(chartData); chartReference.setTransparent(true); chartReference.render("my_chart_container"); which produces the following image Edited November 29, 2012 by Vedmack Share this post Link to post Share on other sites
Guest Sumedh Report post Posted November 30, 2012 Hi, Configuring gradient effect on the Pie slices of Pie chart is not possible. Share this post Link to post Share on other sites