Sharmila Report post Posted February 27, 2013 I am finding problem in dividing segment into 4 equal quaters what i tried : when i give the start and end values the segment have been auto divided into different quarters for different gauges in the same webview. Solution needed: Whatever may be the gauge and its start and end values i want it to be segmented into 4 equal quarters in the same webview. Share this post Link to post Share on other sites
Guest Sumedh Report post Posted February 28, 2013 Hi Sharmila, Welcome to FusionCharts Forum! Apologies for the delayed response. Could you please elaborate a bit more on your issue? Can you please send us the information on following points? > What FusionWidgets version are you using? > What chart type are you trying to render? > Are you trying to render JavaScript chart or Flash chart? > Send us the screen-shot of your issue as well along with the chart XML. Share this post Link to post Share on other sites
Sharmila Report post Posted March 1, 2013 Hi Sumedh, 1) We are using 3.2.4 version of fusion chart and we are rendering graph in mobiles 2) Angular Gauge with trend-points 3) Flash chart 4) screen shot attached, refered http://www.fusioncharts.com/demos/gallery/#gauges To be more clear, as in the attached figure the lower and upper limit values are 0 and 100. and the trend points are devided into 4 parts as(0%,25%,50%,75% & 100%), but in my case trend points are dynamically changing(i.e,if upper limit is 34 or 470etc) based on the upper limit graph segments(trends points) assgning but requirement for us is independent of any upper limit graph should divide into 4 segments ((0%-25%,25-50%,50-75% & 75-100%) in my case we have tried with the below attributes but it doesnt helps for various upper limits { "chart": { ... "majortmnumber": "4", "minortmnumber": "5" ... } Regards Sharmila Share this post Link to post Share on other sites
Guest Sumedh Report post Posted March 4, 2013 Hi Sharmila, Sincere apologies for the delayed response. Here in this case, you can use "setChartAttribute" function to update the "majorTMNumber" and "minorTMNumber" attributes according to the updated data. Ref. Code: function changeAttribute() { // get chart reference var chartReference = FusionCharts( "myChartId" ); // change to sliced 2D view chartReference.setChartAttribute( { "majorTMNumber" : "5", "minorTMNumber" : "9" } ); } For more information, please refer the following link: http://docs.fusioncharts.com/widgets/Contents/?JavaScript/JS_ChangeChartProperties.html Hope this helps! Share this post Link to post Share on other sites