C# Class NSoft.NFramework.FusionCharts.Widgets.AngularGauge

Angular gauges are essentially like the speedometer or fuel gauge of your car. They use a radial scale to display your data range and a dial is used to indicate the data value. An angular/meter/dial gauge chart is used to display a specific data set utilizing an indicator that moves within a circular range to indicate whether the monitored data is within defined limits. Colors can be selected for the data range to suit the application such as green for satisfactory, yellow for caution and red for alarm. document : http://www.fusioncharts.com/widgets/docs/
To create a FusionWidgets Angular Gauge chart, you need to: •Decide the lower and upper limit of chart. •Decide the cosmetic and functional properties of the chart •Decide the color range for the chart. That is, suppose you are plotting a chart to show the production output of a factory, the color range could be: 0-100 pieces/hr – Under Average – Red 100-200 pieces/hr – Average Production - Yellow 200-300 pieces/hr – Very good - Green •Decide trend points if any – for example, if you would like to mark an average at say 175 - say “Last week’s average production”, you can use trend points to do the same. •Decide the chart value(s). FusionWidgets allows you to indicate multiple values on the angular gauge chart. All you have to do is decide the value each spindle/dial would indicate and the width and color of each one of them.
Inheritance: GaugeBase
Show file Open project: debop/NFramework Class Usage Examples

Public Methods

Method Description
AddDial ( string id, double value ) : DialElement

Add dial element

GenerateXmlAttributes ( System writer ) : void

속성들을 Xml Attribute로 생성합니다.

Protected Methods

Method Description
GenerateXmlElements ( System writer ) : void

ChartElementBase 형식의 Element 객체들을 XML Element Node로 생성합니다.

Method Details

AddDial() public method

Add dial element
public AddDial ( string id, double value ) : DialElement
id string
value double
return DialElement

GenerateXmlAttributes() public method

속성들을 Xml Attribute로 생성합니다.
public GenerateXmlAttributes ( System writer ) : void
writer System Attribute를 쓸 Writer
return void

GenerateXmlElements() protected method

ChartElementBase 형식의 Element 객체들을 XML Element Node로 생성합니다.
protected GenerateXmlElements ( System writer ) : void
writer System Element를 쓸 Writer
return void