Is there any way I can make attached graph axes cross at (0,0)? The left most point is 299, the right most is 292, so there is a little change over these 5 years, but the graphic looked like graph is going off a cliff
Here is my current setup
<telerik:RadHtmlChart ID="rhcWages" runat="server"
Width="225px" Height="200px"
Transitions="false">
<ChartTitle Text="">
<Appearance Align="Center" Position="Top" Visible="false">
<TextStyle Bold="true" />
</Appearance>
</ChartTitle>
<Legend>
<Appearance Position="Bottom" Visible="false" OffsetX="5" OffsetY="5"></Appearance>
</Legend>
<PlotArea>
<Series/>
<Appearance>
<FillStyle BackgroundColor="Transparent"></FillStyle>
</Appearance>
<XAxis AxisCrossingValue="0" Color="black" MajorTickType="None" MinorTickType="None" Reversed="false" >
<MajorGridLines Visible="false"/>
<MinorGridLines Visible="false"/>
<LabelsAppearance Visible="false" RotationAngle="0" Skip="0" Step="1">
</LabelsAppearance>
<TitleAppearance Position="Center" RotationAngle="0"
Visible="false" Text="Year">
<TextStyle Bold="true"/>
</TitleAppearance>
</XAxis>
<YAxis MajorTickType="None" MinorTickType="None" AxisCrossingValue="0">
<MajorGridLines Visible="false"/>
<MinorGridLines Visible="false"/>
<LabelsAppearance Visible="false" RotationAngle="0" Skip="0" Step="1" DataFormatString="{0:N0}" >
</LabelsAppearance>
<TitleAppearance Visible="false" Position="Center" RotationAngle="0" Text="% Change">
<TextStyle Padding="8" Margin="8" Bold="true"/>
</TitleAppearance>
</YAxis>
</PlotArea>
<Appearance>
<FillStyle BackgroundColor="Transparent"></FillStyle>
</Appearance>
</telerik:RadHtmlChart>
Please suggest