My first attempt did not go well. I've looked at samples, etc. and still can't get this to work. The issues are:
1) I can't get the Y-Axis line to display at the left.
2) I can't get the MinorTick lines to go away.
3) I want to put a red line along the 90% mark and label it as Target.
Chart code and picture of what I'm getting provided below.
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" DataSourceID="supplierAverage" Height="500px" Skin="WebBlue" Width="800px" Visible="true"> <charttitle Text="FWM SUPPLIER ON-TIME DELIVERY"> <appearance Align="Center" Position="Top" visible="True"> </appearance> </charttitle> <Legend> <Appearance position="Bottom" Visible="True"></Appearance> </Legend> <plotarea> <Series> <telerik:ColumnSeries Name="Hardware" DataFieldY="Hardware"> <LabelsAppearance DataFormatString="{0}%"></LabelsAppearance> <SeriesItems> </SeriesItems> </telerik:ColumnSeries> <telerik:ColumnSeries Name="Raw Materials" DataFieldY="RawMaterials"> <LabelsAppearance DataFormatString="{0}%"></LabelsAppearance> <SeriesItems> </SeriesItems> </telerik:ColumnSeries> </Series> <XAxis DataLabelsField="Month" Visible="True" MinorTickType="None" AxisCrossingValue="1" MaxValue="12" MinValue="1" Step="1"> <LabelsAppearance DataFormatString="{0}" /> </XAxis> <YAxis maxvalue="100" minvalue="0" name="Percentage" step="10" MinorTickSize="0" MinorTickType="None" Visible="True"> <TitleAppearance Position="Center" Text="Percentage" /> </YAxis> </plotarea></telerik:RadHtmlChart>