Hi i'am using RadHTMLChart with LineSeries.
When i don't pu anything for the minValue in the YAxis the minValue is set automatic.
But it not working all the time, is it me or it a bug?
I have 2 diffrent graphs the first one the lowest number is 77 and the and the minValue autoscale to 72
I have a second graphs with almost with the samething but the smalest number is 58 and the minValue is set to 0??
What i am doing wrong?
I want the minValue and maxValue to autoscale
Sorry for my bad English!
Tks
Luc
When i don't pu anything for the minValue in the YAxis the minValue is set automatic.
But it not working all the time, is it me or it a bug?
I have 2 diffrent graphs the first one the lowest number is 77 and the and the minValue autoscale to 72
I have a second graphs with almost with the samething but the smalest number is 58 and the minValue is set to 0??
What i am doing wrong?
I want the minValue and maxValue to autoscale
Sorry for my bad English!
Tks
Luc
<telerik:RadHtmlChart runat="server" ChartTitle-Text="Courbe FR" DataSourceID="SqlDataSource1" ID="RadHtmlChart1" Width="800" Height="500"> <PlotArea> <Series> <telerik:LineSeries Name="École" DataFieldY="rlEcole"> <Appearance> <FillStyle BackgroundColor="Blue" /> </Appearance> <TooltipsAppearance Color="White" /> </telerik:LineSeries> <telerik:LineSeries Name="District" DataFieldY="rlDistrict"> <Appearance> <FillStyle BackgroundColor="Green" /> </Appearance> <TooltipsAppearance Color="White" /> </telerik:LineSeries> <telerik:LineSeries Name="Province" DataFieldY="rlProvince"> <Appearance> <FillStyle BackgroundColor="Red" /> </Appearance> <TooltipsAppearance Color="White" /> </telerik:LineSeries> </Series> <YAxis> <TitleAppearance Text="%" > <TextStyle FontSize="16px"></TextStyle> </TitleAppearance> </YAxis> <XAxis DataLabelsField="strAnnee"> <LabelsAppearance /> </XAxis> </PlotArea>