Hi i using a HtmlChart - Column Chart.
How can i had an horizontal passing line in my chart.
I would like to one put a passing line at 55
Please refer to this link a put an horontal line in photoshop to show you what i need.
Exemple
For now i use this code :
Tks
How can i had an horizontal passing line in my chart.
I would like to one put a passing line at 55
Please refer to this link a put an horontal line in photoshop to show you what i need.
Exemple
For now i use this code :
Tks
<telerik:RadHtmlChart runat="server" ChartTitle-Text="Courbe FR" ID="RadHtmlChart1" Width="800" Height="500"> <PlotArea> <Series> <telerik:ColumnSeries Name="District"> <TooltipsAppearance Color="White" /> <SeriesItems> <telerik:CategorySeriesItem Y="95" /> <telerik:CategorySeriesItem Y="80" /> <telerik:CategorySeriesItem Y="80" /> <telerik:CategorySeriesItem Y="85" /> </SeriesItems> </telerik:ColumnSeries> <telerik:ColumnSeries AxisName="AdditionalAxis" Name="Ministère"> <Appearance> <FillStyle BackgroundColor="Red" /> </Appearance> <TooltipsAppearance Color="White" /> <SeriesItems> <telerik:CategorySeriesItem Y="90" /> <telerik:CategorySeriesItem Y="80" /> <telerik:CategorySeriesItem Y="45" /> <telerik:CategorySeriesItem Y="66" /> </SeriesItems> </telerik:ColumnSeries> </Series> <YAxis MinValue="0"> <TitleAppearance Text="%" /> </YAxis> <AdditionalYAxes> <telerik:AxisY Name="AdditionalAxis" Visible="false" Color="Red" Width="3"> <TitleAppearance Text="%" Visible="false" /> </telerik:AxisY> </AdditionalYAxes> <Series> <telerik:BarSeries Name="Seuil"> <Appearance> <FillStyle BackgroundColor="Red"></FillStyle> </Appearance> <LabelsAppearance Position="Center"> </LabelsAppearance> <TooltipsAppearance BackgroundColor="Red"></TooltipsAppearance> <SeriesItems> <telerik:CategorySeriesItem Y="55"></telerik:CategorySeriesItem> </SeriesItems> </telerik:BarSeries> </Series> <XAxis> <LabelsAppearance /> <Items> <telerik:AxisItem LabelText="L2" /> <telerik:AxisItem LabelText="L4" /> <telerik:AxisItem LabelText="F5" /> <telerik:AxisItem LabelText="F8" /> </Items> </XAxis> </PlotArea> <Legend> <Appearance Position="Bottom" /> </Legend> </telerik:RadHtmlChart>