BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
//Initialize the needle Syncfusion.Windows.Forms.Gauge.Needle needle1 = new Syncfusion.Windows.Forms.Gauge.Needle(); Syncfusion.Windows.Forms.Gauge.Needle needle2 = new Syncfusion.Windows.Forms.Gauge.Needle();
//To add needles this.radialGauge1.NeedleCollection.Add(needle1); this.radialGauge1.NeedleCollection.Add(needle2);
//To enable the custom needles this.radialGauge1.EnableCustomNeedles = true; //To specify the Needle value this.radialGauge1.NeedleCollection[0].Value = 0; //To specify the Needle color this.radialGauge1.NeedleCollection[0].NeedleColor = Color.Red; //To specify the Needle Style this.radialGauge1.NeedleCollection[0].NeedleStyle = Syncfusion.Windows.Forms.Gauge.NeedleStyle.Advanced; |