Hi Paul
Thank you for Contacting Syncfusion Support.
Yes, RadialGauge control can be exported as Bitmap file. Please make use of below code snippets for your reference.
Code Snippet: [C#]
| Bitmap b = new Bitmap(this.radialGauge1.Width, this.radialGauge1.Height); this.radialGauge1.DrawToBitmap(b, new Rectangle(0, 0, b.Width, b.Height)); b.Save(saveDialog.FileName + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp); |
Please make use this sample for your reference.
Regards
Kannan