Having trouble getting help?
Contact Support
Contact Support
How to show or hide the tabs in the series style dialog in a Chart
4 Oct 20181 minute to read
The tabs in the series style dialog can be shown or hidden using the below properties settings.
this.chartControl1.StyleDialogOptions.ShowBorderTab = true;
this.chartControl1.StyleDialogOptions.ShowTextTab = false;
this.chartControl1.StyleDialogOptions.ShowFancyToolTipsTab = false;
this.chartControl1.StyleDialogOptions.ShowInteriorTab = false;
this.chartControl1.StyleDialogOptions.ShowShadowTab = false;
this.chartControl1.StyleDialogOptions.ShowSymbolTab = false;
Me.chartControl1.StyleDialogOptions.ShowBorderTab = True
Me.chartControl1.StyleDialogOptions.ShowTextTab = False
Me.chartControl1.StyleDialogOptions.ShowFancyToolTipsTab = False
Me.chartControl1.StyleDialogOptions.ShowInteriorTab = False
Me.chartControl1.StyleDialogOptions.ShowShadowTab = False
Me.chartControl1.StyleDialogOptions.ShowSymbolTab = False