Hello good day.
I am making an application that shows a graph, I use the chartview control, but when there is too much data on the X axis, the information is not distinguished.
I have read that it can be fixed by using MajorTickInterval on the horizontalAxis, I use this lines:
horizontalAxis.LabelFitMode = AxisLabelFitMode.Rotate;
horizontalAxis.MajorTickInterval = 7;
The clearest information is already displayed, but when displaying the information some data should appear in the graph but they are not shown because they are not in the interval.
Is there a solution?
Another question,
Can you remove or hide from the graph the values that have zero or null on the X axis?
Awaiting your comments.
Thank you very much.