How to display the Chart Area alone

4 Oct 20181 minute to read

This can be achieved by setting the Legend.Visible property of ChartControl to False, ElementsSpacing property of ChartControl to Zero_,_ and__Text property of ChartControl to an Empty String.

this.chartControl1.Text = "";

this.chartControl1.Legend.Visible = false;

this.chartControl1.ElementsSpacing = 0;
Me.chartControl1.Text = ""

Me.chartControl1.Legend.Visible = False

Me.chartControl1.ElementsSpacing = 0