or
<div id="info"> Hover over image for options and info <table id="rating"> <tr> <td>Rate this album:</td><td> <telerik:RadRating ID="RadRating1" runat="server" AutoPostBack="True" Skin="Metro" DataSourceID="AccessDataSource3" Precision="Item" AppendDataBoundItems="True"> <ItemBinding ValueField="AverageRatingRounded"></ItemBinding> </telerik:RadRating> </td> </tr> </table> </div> <asp:AccessDataSource ID="AccessDataSource3" runat="server" DataFile="~/App_Data/ASPNetDB.accdb" SelectCommand="SELECT AlbumID, CountRating, Totalrating, SUM(Totalrating) / CountRating AS AverageRating, ROUND(AverageRating, 0) AS AverageRatingRounded FROM qryRating GROUP BY AlbumID, CountRating, Totalrating HAVING (AlbumID = ?)"><SelectParameters> <asp:QueryStringParameter Name="AlbumID" QueryStringField="albumID" Type="Int32" /> </SelectParameters> </asp:AccessDataSource>

<telerik:RadGrid runat="server" ID="RadGrid1" AllowPaging="true" AllowSorting="true" AllowFilteringByColumn="true" PageSize="10"><div id="divMnuLeft"> <telerik:RadTreeView ID="lstMenuItem1" CheckBoxes="true" TriStateCheckBoxes="true" CheckChildNodes="true" runat="server"> <DataBindings> <telerik:RadTreeNodeBinding Expanded="true" /> </DataBindings> </telerik:RadTreeView></div>Private Sub Populate_tblMenuItems1() Dim dt As New DataTable Dim con As New clsSQLConnector dt = con.GetWebUserMenuItem(2, ViewState("WebUserID")) If dt Is Nothing = False Then If dt.Rows.Count > 0 Then lstMenuItem1.DataTextField = "Descr" lstMenuItem1.DataFieldID = "menuID" lstMenuItem1.DataFieldParentID = "ParentID" lstMenuItem1.DataSource = dt Dim binding As New RadTreeNodeBinding binding.CheckedField = "isAssigned" binding.Checkable = True lstMenuItem1.DataBindings.Add(binding) lstMenuItem1.DataBind() 'For Each dr As DataRow In dt.Rows 'Next End If End If End Sub<table style="width:100%;"> <tr style="text-align:center;"> <td style="vertical-align:top;"> <table id="inputs" style="height:50px;"> <tr> <td style="width:50%;"></td> <td style="text-align:right; vertical-align:middle;">Type:</td> <td style="vertical-align:middle;"> <telerik:RadComboBox CheckBoxes="true" runat="server" ID="cmbCheckAppointmentType" OnItemChecked="cmbCheckAppointmentType_ItemChecked" AutoPostBack="true"> </telerik:RadComboBox> </td> <td style="text-align:right; vertical-align:middle;">System:</td> <td style="vertical-align:middle;"> <telerik:RadDropDownList runat="server" ID="ddlSystemType" OnSelectedIndexChanged="ddlSystemType_SelectedIndexChanged" AutoPostBack="true"> <Items> <telerik:DropDownListItem Text="Both" Value="843,835,834" Selected="true" /> <telerik:DropDownListItem Text="Student" Value="835"/> <telerik:DropDownListItem Text="Business" Value="834" /> </Items> </telerik:RadDropDownList> </td> <td style="width:50%;"></td> </tr> </table> </td> </tr> <tr> <td> <telerik:RadToolTipManager runat="server" ID="telToolTipManager" RelativeTo="Mouse" ShowEvent="OnMouseOver" Animation="None" HideEvent="LeaveTargetAndToolTip" Text="Loading..." OnAjaxUpdate="telToolTipManager_AjaxUpdate"> </telerik:RadToolTipManager> <telerik:RadScheduler runat="server" ID="telCalendar" DataKeyField="ID" DataSubjectField="Subject" DataDescriptionField="Description" DataStartField="Start" DataEndField="End" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentID" ShowAllDayRow="false" DayStartTime="07:00:00" WorkDayStartTime="07:00:00" DayEndTime="18:00:00" WorkDayEndTime="18:00:00" EnableDescriptionField="false" Width="100%" Height="600px" StartEditingInAdvancedForm="false" AllowDelete="false" AllowEdit="false" AdvancedForm-EnableTimeZonesEditing="true" AgendaView-ResourceMarkerType="Block" AgendaView-UserSelectable="true" AgendaView-NumberOfDays="30" AgendaView-HeaderDateFormat="dd/MMM" AgendaView-GroupingDirection="Vertical" AgendaView-TimeColumnWidth="200px" MonthView-UserSelectable="true" MonthView-VisibleAppointmentsPerDay="5" TimelineView-UserSelectable="false" WeekView-UserSelectable="true" DayView-UserSelectable="true" OnClientAppointmentContextMenu="OnClientAppointmentContextMenu" OnNavigationComplete="telCalendar_NavigationComplete" OnAppointmentInsert="telCalendar_AppointmentInsert" OnAppointmentUpdate="telCalendar_AppointmentUpdate" OnAppointmentDelete="telCalendar_AppointmentDelete" OnAppointmentCreated="telCalendar_AppointmentCreated" OnAppointmentDataBound="telCalendar_AppointmentDataBound" OnDataBound="telCalendar_DataBound" OnFormCreating="telCalendar_FormCreating" CustomAttributeNames="FullSubject" Skin="Silk"> <AdvancedForm Modal="true" /> <TimeSlotContextMenuSettings EnableDefault="false"></TimeSlotContextMenuSettings> <AppointmentContextMenuSettings EnableDefault="false"></AppointmentContextMenuSettings> <AppointmentTemplate> <div style="margin: 0px 3px 0px 3px;"> <asp:Literal ID="AptType" runat="server" Text='<%# Eval("Attributes[\"FullSubject\"]") %>'></asp:Literal> </div> </AppointmentTemplate> </telerik:RadScheduler> </td> </tr> </table>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>