This is my ChartView:
<telerik:RadCartesianChart x:Name=
"bpsChart"
Palette=
"Windows8"
Margin=
"20,56,17,544"
>
<telerik:RadCartesianChart.Grid>
<telerik:CartesianChartGrid MajorXLineDashArray=
"5, 5"
MajorYLineDashArray=
"5, 5"
MajorLinesVisibility=
"None"
>
<telerik:CartesianChartGrid.MajorYLineStyle>
<Style TargetType=
"{x:Type Line}"
>
<Setter Property=
"Stroke"
Value=
"Gray"
/>
</Style>
</telerik:CartesianChartGrid.MajorYLineStyle>
<telerik:CartesianChartGrid.MajorXLineStyle>
<Style TargetType=
"{x:Type Line}"
>
<Setter Property=
"Stroke"
Value=
"Gray"
/>
</Style>
</telerik:CartesianChartGrid.MajorXLineStyle>
</telerik:CartesianChartGrid>
</telerik:RadCartesianChart.Grid>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:CategoricalAxis ShowLabels=
"False"
IsEnabled=
"False"
/>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis >
<telerik:LinearAxis ShowLabels=
"False"
IsEnabled=
"False"
/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Series>
<telerik:LineSeries CategoryBinding=
"Date"
ValueBinding=
"Value"
Stroke=
"Yellow"
ItemsSource=
"{Binding CurrentPosValues, RelativeSource={RelativeSource AncestorType=Window}}"
/>
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>
As you can see i removed the Axis label but i didn't find how to remove the label ticks, please see my attach file.
Thansk