Hi Madhumita,
I have used chart.setAttribute("width", "600"); chart.setAttribute("height", "180"); which changes the chart size. I have also found other two methods in FusionCharts.js file viz; addParam and addVariable.
var chart = new FusionCharts( "Charts/AngularGauge.swf", "chartID", "200", "200", "0", "1" );
chart.setDataURL("data.xml");
chart.setAttribute("width", "600"); <---- final chart width is 600 although in constructor we provide width value as 200
chart.setAttribute("height", "180"); <---- final chart height is 180 although in constructor we provided height value as 200
chart.render( "chartID");
But I want to change other properties like gaugeStartAngle,gaugeEndAngle.
Can we do it without creating new XML ?
Thanks & Regards
Nabyendu Adhikari