Sign in to follow this  
Sharmila

Angular Guage With Trend-Point

Recommended Posts

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

Hi Sharmila,

 

Welcome to FusionCharts Forum! smile.gif

 

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

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

 

 

 

 

post-34261-0-71863300-1362119145_thumb.png

Share this post


Link to post
Share on other sites
Guest Sumedh

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this