How can I remove/hide the axes labels?

Hi, how can I remove/hide the axes labels? I just want a chart with no labels on any axes. It has to fit in a small screen space. Cheers DS

2 Replies

DS Damien Sawyer June 6, 2004 08:08 PM UTC

Found it Private Sub ChartControl1_ChartFormatAxisLabel(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Chart.ChartFormatAxisLabelEventArgs) Handles ChartControl1.ChartFormatAxisLabel If e.IsAxisPrimary And e.AxisOrientation = Orientation.Horizontal Then e.Label = "" e.Handled = True End If End Sub >Hi, how can I remove/hide the axes labels? > >I just want a chart with no labels on any axes. It has to fit in a small screen space. > >Cheers > > >DS >


DJ Davis Jebaraj Syncfusion Team June 8, 2004 06:08 PM UTC

Hi, We regret for the delay in responding. The solution you have discovered is the right one. Regards, Davis

Loader.
Up arrow icon