Hello all,
Please have a look at the attached image. I want to show all the labels of the X axis. What should I do?
Best regards,
Zach
Hello Zach,
You can show all of the labels by setting the Interval property of the XAxis. For example you can try the following code snippet:
.Axes((axes) =>
{
axes.CategoryX("xAxis").Label(item => item.DateString).Interval(1);
If you need any additional assistance on this matter please do not hesitate to ask.
I was just wondering did you have a chance to try my suggestion. If you still need any assistance on the matter, please do not hesitate to ask.