HI All
I require the code behind in C# equivalent of the following asp.net code , could you help please.
<telerik:RadHtmlChart runat="server" ID="LineChart" Width="800" Height="500" Transitions="true">
<PlotArea>
<Series>
<telerik:LineSeries Name="Week 15" MissingValues="Interpolate">
<Appearance>
<FillStyle BackgroundColor="Blue" />
</Appearance>
<LabelsAppearance DataFormatString="{0}%" Position="Above" />
<MarkersAppearance MarkersType="Square" BackgroundColor="Blue" />
<SeriesItems>
<telerik:CategorySeriesItem Y="15" />
<telerik:CategorySeriesItem Y="23" />
<telerik:CategorySeriesItem />
<telerik:CategorySeriesItem Y="71" />
<telerik:CategorySeriesItem Y="93" />
<telerik:CategorySeriesItem Y="43" />
<telerik:CategorySeriesItem Y="23" />
</SeriesItems>
</telerik:LineSeries>
<telerik:LineSeries Name="Week 16" MissingValues="Gap">
<Appearance>
<FillStyle BackgroundColor="Red" />
</Appearance>
<LabelsAppearance DataFormatString="{0}%" Position="Above" />
<MarkersAppearance MarkersType="Square" BackgroundColor="Red" />
<SeriesItems>
<telerik:CategorySeriesItem Y="35" />
<telerik:CategorySeriesItem Y="42" />
<telerik:CategorySeriesItem Y="18" />
<telerik:CategorySeriesItem Y="39" />
<telerik:CategorySeriesItem Y="64" />
<telerik:CategorySeriesItem Y="10" />
<telerik:CategorySeriesItem Y="6" />
</SeriesItems>
</telerik:LineSeries>
</Series>
<XAxis MajorTickType="Outside" MinorTickType="Outside">
<Items>
<telerik:AxisItem LabelText="Monday" />
<telerik:AxisItem LabelText="Tuesday" />
<telerik:AxisItem LabelText="Wednesday" />
<telerik:AxisItem LabelText="Thursday" />
<telerik:AxisItem LabelText="Friday" />
<telerik:AxisItem LabelText="Saturday" />
<telerik:AxisItem LabelText="Sunday" />
</Items>
<MajorGridLines Color="#EFEFEF" Width="1" />
<MinorGridLines Color="#F7F7F7" Width="1" />
<TitleAppearance Position="Center" RotationAngle="0" Text="Days" />
</XAxis>
<YAxis MajorTickSize="1" MajorTickType="Outside" MaxValue="100" MinorTickSize="1"
MinorTickType="Outside" MinValue="0">
<LabelsAppearance DataFormatString="{0}%" RotationAngle="0" />
<MajorGridLines Color="#EFEFEF" Width="1" />
<MinorGridLines Color="#F7F7F7" Width="1" />
<TitleAppearance Position="Center" RotationAngle="0" Text="CPU Load" />
</YAxis>
</PlotArea>
<ChartTitle Text="Server CPU Load By Days">
</ChartTitle>
<Legend>
<Appearance Position="Bottom" />
</Legend>
</telerik:RadHtmlChart>