I can't manage to set the xAxis properly I would like interval increasing by 0.5:
|--|----|---|
0 0.5 1 1.5 and so on
I use this:
PositionModel.Axes.Add(new CategoryAxis {
Position = AxisPosition.Bottom, Minimum = 9,
Maximum = 28,
Key = "XAsis",
MajorStep = 1, // useless ?
MinorStep = 0.5 // useless ?
});
But this code doesn't produce the desired result (increasing by 1 instead).
Besides I don't really know what exactly Marjor/MinorStep is.
Documentation is really really light... unfortunatly
PS: I am really upset to see negative vote without explanation