I have a polar chart I created by MSChart control in my WinForms app. X axis type is date, y is integer. X represents exact开发者_运维技巧ly 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:
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?
Finally I've got it by myself:
chartMain.ChartAreas["Default"].AxisX.Crossing = 270;
精彩评论