Jump to content
Software FX Community

Gauge code


Jim Kennelly

Recommended Posts

Figured it out.. was looking for a way to add 2nd need via code

 

Dim RGauge As New ChartFX.WebForms.Gauge.RadialGauge

RGauge.MainIndicator.Value = 100

RGauge.Scales(0).Min = 0

RGauge.Scales(0).Max = 22000

 

Dim nd As New ChartFX.WebForms.Gauge.Needle

nd.Color = Drawing.Color.Aquamarine

nd.Value = 2000

nd.Visible = True

 

RGauge.MainScale.Indicators.Add(nd)

 

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...