I have WPF application and 2 RadCartesianChart (please see my screenshot attach)
This is the code of one of them (they both identical):
<telerik:RadCartesianChart x:Name="ccPacketsPerSeconds" Margin="145,392,53,-119">
<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.VerticalAxis>
<telerik:LinearAxis ShowLabels="False" IsEnabled="False" Minimum="-5"/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.HorizontalAxis >
<telerik:CategoricalAxis ShowLabels="False" IsEnabled="False"/>
</telerik:RadCartesianChart.HorizontalAxis>
</telerik:RadCartesianChart>
And i want to change 2 things:
1. the color of the line
2. remove the y axis that remained.
I try to change almost all the properties and it still the same so i will glad for some help.
This is the code of one of them (they both identical):
<telerik:RadCartesianChart x:Name="ccPacketsPerSeconds" Margin="145,392,53,-119">
<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.VerticalAxis>
<telerik:LinearAxis ShowLabels="False" IsEnabled="False" Minimum="-5"/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.HorizontalAxis >
<telerik:CategoricalAxis ShowLabels="False" IsEnabled="False"/>
</telerik:RadCartesianChart.HorizontalAxis>
</telerik:RadCartesianChart>
And i want to change 2 things:
1. the color of the line
2. remove the y axis that remained.
I try to change almost all the properties and it still the same so i will glad for some help.