I am trying to get my X axis labelled in a readable fashion. I have tried this setup:
axisX.DataType =
axisX.TickmarkStyle = AxisTickStyle.Smart;
axisX.Labels.ItemFormat =
axisX.Labels.ItemFormatString = "<ITEM_LABEL:dd/MM/yy HH:mm>";
Which results in this labelling:
I then tried adding these 2 lines:
axisX.Labels.Layout.Behavior = AxisLabelLayoutBehaviors.UseCollection;
axisX.Labels.Layout.BehaviorCollection.Add(
Which turns out like this:
How should I achieve readable labelling on my CompositeChart with added NumericTimeSeries?
Dear lord this forum has corrupted my post for some reason.. Hope it is still readable