Jim Kennelly 0 Report post Posted July 13, 2007 Are there any examples of gauge code that anybody would like to post? I got used to the original designer in the old version that would allow you to tweek the control then export the code. Why doesn't the HELP show any code? Thanks, Jim Quote Share this post Link to post Share on other sites
Jim Kennelly 0 Report post Posted July 13, 2007 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 = 2000nd.Visible = True RGauge.MainScale.Indicators.Add(nd) Quote Share this post Link to post Share on other sites