1

enter image description here

How remove the label of each bar in the chart

and need to set Title for the Chart.

Ramesh
  • 59
  • 7

1 Answers1

2

How remove the label of each bar in the chart

  tChart1[0].Marks.Visible = false;

and need to set Title for the Chart.

  tChart1.Header.Visible = true;
  tChart1.Header.Text = "Chart title";
Narcís Calvet
  • 7,304
  • 5
  • 27
  • 47