This question is locked. New answers and comments are not allowed.
Hi all,
I am using Radchart in my application. I am able to get the border for entire chart. But i need the border only for Plot Area.
I tried
I am using Radchart in my application. I am able to get the border for entire chart. But i need the border only for Plot Area.
I tried
<telerik:RadChart x:Name="chart" Margin="3" BorderThickness="1" BorderBrush="Black"
FontSize="10" FontFamily="Arial" Opacity="1" Width="Auto" Height="298" >
<PlotArea>
<XAxis>
<Appearance Color="Red" Width="2" />
</XAxis>
<Appearance>
<Border Visible="False" />
</Appearance>
</PlotArea>
But I am getting the following error:
the type 'Plot Area' was not found. verify that you are not missing an assembly reference and that all referenced assemblies have been built.
Thanks in Advance.