or

<td style="width:25%;text-align:right">Est. Attendance:</td> <td><telerik:RadTextBox ID="txtAttendance2" runat="server" Width="80px" MaxLength="4" InputType="Number"></telerik:RadTextBox> <telerik:RadNumericTextBox ID="txtAttendance" runat="server" Width="80px" MaxLength="4"></telerik:RadNumericTextBox> </td>
<telerik:RadHtmlChart runat="server" ID="rhcSol" Layout="Sparkline" Width="150px" Height="40px"> <PlotArea> <Series> <telerik:ColumnSeries DataFieldY="cxCount"> <Appearance FillStyle-BackgroundColor="Red"></Appearance> <TooltipsAppearance> <ClientTemplate><div style="color:white;">Sol #= category #</div> <div> #= value #</div> </ClientTemplate> </TooltipsAppearance> </telerik:ColumnSeries> </Series> <XAxis DataLabelsField="sol"></XAxis> </PlotArea> <Legend> <Appearance Visible="false"></Appearance> </Legend></telerik:RadHtmlChart><telerik:RadHtmlChart runat="server" ID="rhcSol" Layout="Sparkline" Width="150px" Height="40px"> <PlotArea> <CommonTooltipsAppearance Shared="true" Visible="true"> <SharedTemplate><div style="color:white;">Sol #= category #</div> <div style="text-align:right;"> #= points[i].value #</div> </SharedTemplate> </CommonTooltipsAppearance> <Series> <telerik:ColumnSeries DataFieldY="cxCount"> <Appearance FillStyle-BackgroundColor="Red"></Appearance> <TooltipsAppearance> </TooltipsAppearance> </telerik:ColumnSeries> </Series> <XAxis DataLabelsField="sol"></XAxis> </PlotArea> <Legend> <Appearance Visible="false"></Appearance> </Legend></telerik:RadHtmlChart>protected void rgQualityReport_OnItemCommand(object sender, GridCommandEventArgs e){ if (e.CommandName == "ShowComment") { GridDataItem dataItem = e.Item as GridDataItem; comments.Content = dataItem["ColumnDate"].Text; this.modalPopupComments.VisibleOnPageLoad = true; RadWindowManager1.DestroyOnClose = true; RadWindowManager1.Controls.Add(modalPopupComments); }}