Articles in this section
Category / Section

How to reduce the size of the WinForms RadialGauge below its MinimumSize?

1 min read

Size

You can reduce the size of the WinForms Radial Gauge by specifying the required size as the Minimum size of the RadialGauge. The RadialGauge is initialized with the minimum size, by default.

C#

//Initializes the MinimumSize for the Radial Gauge.
this.radialGauge1.MinimumSize = new Size(0, 0);
//Sets the required size of the Radial Gauge.
this.radialGauge1.Size = new Size((int)this.integerTextBox1.IntegerValue, (int)this.integerTextBox2.IntegerValue);

VB

'Initializes the MinimumSize for the Radial Gauge.
Me.radialGauge1.MinimumSize = New Size(0, 0)
'Sets the required size of the Radial Gauge.
Me.radialGauge1.Size = New Size(CInt(Fix(Me.integerTextBox1.IntegerValue)), CInt(Fix(Me.integerTextBox2.IntegerValue)))

 

Note:

The “MinimumSize” property helps specify the lower limit of the Radial Gauge.

 

RadialGauge with specified size

Figure 1: Radial Gauge with specified size

 

Default size of the RadialGauge

Figure 2: Default size of the Radial Gauge

RadialGauge with minimum size specified

Figure 3: Radial Gauge with Minimum size specified

Samples:

C#: RadialGauge_Resize_C#

VB: RadialGauge_Resize_VB

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

Conclusion

I hope you enjoyed learning about how to reduce the size of the WinForms RadialGauge below its MinimumSize

You can refer to our WinForms Radial Gauge’s feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms Radial Gauge 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 the comment section below. You can also contact us through our support forums, Direct-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