Hi Nigel,
Thanks for contacting our Syncfusion support.
We have checked your requirement, You can hide the border from LinearGauge instead of removing the border. You can achieve this by setting the OuterFrame and InnerFramer gradient color as `Transparent`. Please refer the below code and sample for your reference.
Code snippet:
// Set the Transparent to OuterFrame
this.linearGauge1.OuterFrameGradientEndColor = System.Drawing.Color.Transparent;
this.linearGauge1.OuterFrameGradientStartColor = System.Drawing.Color.Transparent;
//Set the color as Transparent to InnerFrame
this.linearGauge1.InnerFrameGradientEndColor = System.Drawing.Color.Transparent;
this.linearGauge1.InnerFrameGradientStartColor = System.Drawing.Color.Transparent; |
Please let us know if you have any concerns.
Regards,
Backia Raj Kanagaraj