Hi, I have two questions here:
1) When I use
NStandardScaleConfigurator
linearScale = (NStandardScaleConfigurator)chart.Axis(StandardAxis.PrimaryY).ScaleConfigurator;linearScale.MinorTickCount = 5;
I can see minor ticks on chart , but when I use
NStandardScaleConfigurator linearScale = (NStandardScaleConfigurator)chart.Axis(StandardAxis.PrimaryX).ScaleConfigurator;
linearScale.MinorTickCount = 5;
I dont see them. Could you help me? I used NLinearScaleConfigurator but it is not working as well.
I am using horizontal bar chart here and want to show ticks.
2) How can I show my own labels on Y-axis. I mean
If I have range of 10.00-30.00, I want to show them on Y-axis as 10.00, 10.30, 11:00, 11:30, 12:00, 12:30...
I have large dynamic range so I cant add label for each value. Is there anyway to define the gap between two labels on axis.
Regards