Hello,
I am trying to create a histogram with ZedGraph.
The bars and data are all good, the only thing needed is I would like my bars to be between tics instead of directly on tics.
Sample data :
1, 4
2, 8
3, 1
means that I have :
4 items that are <= 0 and < 1
8 items that are <= 1 and < 2
1 item that is <= 2 and < 3
So currently my bars are of course appearing directly on the tics (x values) 1, 2 and 3.
But I would like to see : the first bar between the tics 0 and 1, the second bar between the tics 1 and 2 and the third bar between the tics 2 and 3
Does anybody know the property to tweak in order to achieve that? I am currently looking in XAxis and XAxis.Scale but found nothing yet...