Articles in this section
Category / Section

How to export WinForms RadialGauge control in image format?

1 min read

Export RadialGauge

Exporting control information to various image formats is an essential support for Data Visualization category controls and will be helpful in submitting reports and gets Printed. Some controls may not have built-in option to Export Control information. This article will provide guidance to configure Export functionality in WinForms RadialGauge for those controls in sample level.

 

For example, we have considered RadialGauge control as example.

 

The following code demonstrates the same.

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 + "." + format, imageFormat);                

VB

Dim b As New Bitmap(Me.radialGauge1.Width, Me.radialGauge1.Height)
Me.radialGauge1.DrawToBitmap(b, New Rectangle(0, 0, b.Width, b.Height))
b.Save(saveDialog.FileName & "." & format, imageFormat)

 

Screenshot

Click the export as image button

 

Show the export folder to select the image

Samples:

C#: RadialGauge_C# 

VB: RadialGauge_VB

Reference link: https://help.syncfusion.com/windowsforms/radial-gauge/radial-gauge#custom-renderer

 

Conclusion

I hope you enjoyed learning about how to export WinForms RadialGauge control in image format

You can refer to our WinForms RadialGauge’s feature tour page to know about its other groundbreaking feature representations. You can also explore our  WinForms RadialGauge  documentation to understand how to present and manipulate data.

For current customers, you can check out our WinForms components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms Radial Gauge and other WinForms components.

If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied