The AxisX title is "Date". But how can I change its direction? I would like to see "Date" horizontally.
The AxisX Labels direction is set like this:
chartCalls.ChartAreas[0].AxisX.LabelStyle.Angle = -90;
Any idea?
The AxisX title is "Date". But how can I change its direction? I would like to see "Date" horizontally.
The AxisX Labels direction is set like this:
chartCalls.ChartAreas[0].AxisX.LabelStyle.Angle = -90;
Any idea?
Probably you need to add MyChart.Series[0].SmartLabelStyle.Enabled = false;
Put TextAlign="Horizontal" like this
<AxisX Title="" LineColor="green" LineWidth="3" TextOrientation="Horizontal">
<MajorGrid Enabled="False" />
</AxisX>