With the declaration of the RadChart (see below), I found few render problems:
1 - When unzoomed, the top-left corner of the PlotArea is round if I ask to have to have all corners of the chart only to be round. I tried to declare in the code (ASPX) to have all PlotArea corners as rectangle without success.
2- When zoomes, both axis are greater than the PlotArea. The worst one is the X-Axis which is very to big and in the left it terminate where the Y-Axis Label begin.
Note: I am using version 2012.3.1308.45
ASPX
<telerik:RadChart ID="RadChart" runat="server" Width="800px" DefaultType="Line" OnClick="RadChart_Click" OnZoom="RadChart_Zoom" AutoLayout="True" Height="400px" >
<ClientSettings ScrollMode="Both" ZoomRectangleColor="White" ZoomRectangleOpacity="0.5" />
<ChartTitle>
<TextBlock Text="Exemple avec RadChart">
</TextBlock>
</ChartTitle>
<Series>
<telerik:ChartSeries Name="Value_OK" Type="Line">
<Appearance ShowLabels="False">
<FillStyle MainColor="Lime">
</FillStyle>
</Appearance>
</telerik:ChartSeries>
<telerik:ChartSeries Name="Value_Alarm" Type="Line">
<Appearance ShowLabels="False">
<FillStyle MainColor="Aqua">
</FillStyle>
</Appearance>
</telerik:ChartSeries>
<telerik:ChartSeries Name="HighLimit" Type="Line">
<Appearance ShowLabels="False">
<FillStyle MainColor="Red">
</FillStyle>
</Appearance>
</telerik:ChartSeries>
</Series>
<Appearance TextQuality="AntiAlias" Corners="Round, Round, Round, Round, 6">
</Appearance>
<PlotArea>
<Appearance Dimensions-Margins="18%, 24%, 22%, 10%">
<FillStyle MainColor="Black" />
</Appearance>
<XAxis LayoutMode="Normal" AutoScale="False">
<AxisLabel TextBlock-Text="Temperature (°C)">
</AxisLabel>
<Appearance ValueFormat="ShortTime" >
<MajorGridLines Visible="true" />
<MinorGridLines Visible="false"/>
<LabelAppearance RotationAngle="90" Position-AlignedPosition="Top">
</LabelAppearance>
</Appearance>
</XAxis>
<YAxis IsZeroBased="false" AxisMode="Extended">
<Appearance>
<MajorGridLines Visible="true"/>
<MinorGridLines Visible="False" />
</Appearance>
<AxisLabel Visible="true">
<TextBlock Text="Temperature (°C)">
</TextBlock>
</AxisLabel>
</YAxis>
</PlotArea>
</telerik:RadChart>
1 - When unzoomed, the top-left corner of the PlotArea is round if I ask to have to have all corners of the chart only to be round. I tried to declare in the code (ASPX) to have all PlotArea corners as rectangle without success.
2- When zoomes, both axis are greater than the PlotArea. The worst one is the X-Axis which is very to big and in the left it terminate where the Y-Axis Label begin.
Note: I am using version 2012.3.1308.45
ASPX
<telerik:RadChart ID="RadChart" runat="server" Width="800px" DefaultType="Line" OnClick="RadChart_Click" OnZoom="RadChart_Zoom" AutoLayout="True" Height="400px" >
<ClientSettings ScrollMode="Both" ZoomRectangleColor="White" ZoomRectangleOpacity="0.5" />
<ChartTitle>
<TextBlock Text="Exemple avec RadChart">
</TextBlock>
</ChartTitle>
<Series>
<telerik:ChartSeries Name="Value_OK" Type="Line">
<Appearance ShowLabels="False">
<FillStyle MainColor="Lime">
</FillStyle>
</Appearance>
</telerik:ChartSeries>
<telerik:ChartSeries Name="Value_Alarm" Type="Line">
<Appearance ShowLabels="False">
<FillStyle MainColor="Aqua">
</FillStyle>
</Appearance>
</telerik:ChartSeries>
<telerik:ChartSeries Name="HighLimit" Type="Line">
<Appearance ShowLabels="False">
<FillStyle MainColor="Red">
</FillStyle>
</Appearance>
</telerik:ChartSeries>
</Series>
<Appearance TextQuality="AntiAlias" Corners="Round, Round, Round, Round, 6">
</Appearance>
<PlotArea>
<Appearance Dimensions-Margins="18%, 24%, 22%, 10%">
<FillStyle MainColor="Black" />
</Appearance>
<XAxis LayoutMode="Normal" AutoScale="False">
<AxisLabel TextBlock-Text="Temperature (°C)">
</AxisLabel>
<Appearance ValueFormat="ShortTime" >
<MajorGridLines Visible="true" />
<MinorGridLines Visible="false"/>
<LabelAppearance RotationAngle="90" Position-AlignedPosition="Top">
</LabelAppearance>
</Appearance>
</XAxis>
<YAxis IsZeroBased="false" AxisMode="Extended">
<Appearance>
<MajorGridLines Visible="true"/>
<MinorGridLines Visible="False" />
</Appearance>
<AxisLabel Visible="true">
<TextBlock Text="Temperature (°C)">
</TextBlock>
</AxisLabel>
</YAxis>
</PlotArea>
</telerik:RadChart>