Hi there,
In my radchart, for y axis I set autoScale=False and added few items with different values. But the values are getting overlapped in the y -axis while doing this. Is there any way to over come this issue ?
I am attaching the desgin code and screen of the chart below for your reference
<telerik:RadChart ID="RadChart2" Height="400px" SkinsOverrideStyles="true" runat="server" AutoLayout="false"> <ClientSettings /> <PlotArea > <XAxis> </XAxis> <YAxis AutoScale="false" > <Items> <telerik:ChartAxisItem Value="1"> </telerik:ChartAxisItem> <telerik:ChartAxisItem Value="3"> </telerik:ChartAxisItem> <telerik:ChartAxisItem Value="200"> </telerik:ChartAxisItem> </Items> </YAxis> </PlotArea> <Series> <telerik:ChartSeries Name="Series 1" Type="Line"> <Appearance> <LineSeriesAppearance Width="3" /> <PointMark Visible="True" Border-Width="10" Border-Visible="true" FillStyle-FillType="Solid" Dimensions-AutoSize="true" Dimensions-Height="10px" Dimensions-Width="10px"> </PointMark> </Appearance> <Items> <telerik:ChartSeriesItem XValue="1" YValue="1" Name="Item 20"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem XValue="3" YValue="2" Name="Item 100"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem XValue="4" YValue="70" Name="Item 100"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem XValue="5" YValue="71" Name="Item 20"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem XValue="6" YValue="73" Name="Item 20"> </telerik:ChartSeriesItem> </Items> </telerik:ChartSeries> </Series> </telerik:RadChart>Thanks and Regards
Shafi