I'm trying to show only the major ticks and hide all the minor ticks between them, I have set the following properties in my xaml file:
On the AxisX, I set AutoRange="False", MinorTicksVisibility="Hidden", yet all the minor ticks are still showing up. Suggestions?
On the AxisX, I set AutoRange="False", MinorTicksVisibility="Hidden", yet all the minor ticks are still showing up. Suggestions?
<chart:ChartArea Grid.Row="1" x:Name="mainChartArea" LegendName="legend"> <chart:ChartArea.AxisX > <chart:AxisX MajorGridLinesVisibility="Collapsed" IsDateTime="True" DefaultLabelFormat = "dd-MMM" Title="Date" MinorTickPointMultiplier="0" AutoRange="False" MajorTicksVisibility="Visible" AxisLabelsVisibility="Visible" MinorTicksVisibility="Hidden" /> </chart:ChartArea.AxisX></chart:ChartArea>