3

I have a polar chart I created by MSChart control in my WinForms app. X axis type is date, y is integer. X represents exactly one day.

My problem is that I can not set date 00:00 to the place I need, it always appears at various places.

Here is the chart I create: enter image description here

00 is highlighted by red. I'd like to move it where now 14:00 can be found (highlighted by blue).

How can I do it?

VMAtm
  • 27,943
  • 17
  • 79
  • 125
Tom
  • 3,899
  • 22
  • 78
  • 137

1 Answers1

4

Finally I've got it by myself:

chartMain.ChartAreas["Default"].AxisX.Crossing = 270;
VMAtm
  • 27,943
  • 17
  • 79
  • 125
Tom
  • 3,899
  • 22
  • 78
  • 137