vivek 0 Report post Posted February 12, 2008 hi I amtring to generate linear gauges by pure coding and set its values can anybody tell me how to set label values of its marker by code.I mean if I add a marker in horizontal guage I want to set its label values by code so that that values should appear on the browser i give u example of my code Public Sub displayguage(ByVal combinationclassobject As Combinationclass, ByVal minvalue As Integer, ByVal maxvalue As Integer) Dim Hguage As New ChartFX.WebForms.Gauge.HorizontalGauge Hguage.Width = 900 Hguage.MainIndicator.Value = 100 Hguage.Scales(0).Min = minvalue Hguage.Scales(0).Max = maxvalue Dim m1 As New ChartFX.WebForms.Gauge.Marker m1.Color = Drawing.Color.Red m1.VerticalPosition = IndicatorVerticalPosition.BehindTickmarks m1.Text = "SalesTyPharmacy" m1.Value = combinationclassobject.salesTyPharmacyvalue m1.Visible = TrueHguage.MainScale.Indicators.Add(m1) Dim m2 As New ChartFX.WebForms.Gauge.Marker m2.Color = Drawing.Color.Green m2.Text = "GrossProfitTyPharmacy"m2.Value = combinationclassobject.GrossprofitTyPharmacyvalue m2.Visible = Truem2.VerticalPosition = IndicatorVerticalPosition.BehindTickmarks Hguage.MainScale.Indicators.Add(m2) end sub Quote Share this post Link to post Share on other sites