or


<div id="wrapper" class="fontsize-2"> <telerik:RadDatePicker ...> <DateInput font-size="1.0em"></DateInput> </telerik:RadDatePicker></div>#wrapper.fontsize-2 { font-size: 133%; line-height: 1.4285; }o_gaussianItem.YValue = f_resultFormula;o_gaussianCurve.Items.Add(o_gaussianItem);o_gaussianItem.YValue = f_resultFormula;o_gaussianItem.ActiveRegion.Tooltip = "x :" + Math.Round(o_gaussianItem.YValue,3);o_gaussianCurve.Items.Add(o_gaussianItem);<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" width="200px" Animation="None" Position="TopCenter" EnableShadow="true" ToolTipZoneID="CHT_AvgHistogramme" AutoTooltipify="true"></telerik:RadToolTipManager>Hello,
Currently I am using telerik Asp.Net Radchart.
How can I use 2D feature for this chart without integrating with Silverlight?
Thanks.

ItemDataBound event. I get the default product group to be displayed accordingly but it creates a duplicate and I don't think this is the correct way to do this.protected void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e){ if (e.Item is GridEditFormItem && e.Item.IsInEditMode) { GridEditFormItem item = e.Item as GridEditFormItem; RadComboBox statusComboBox = (RadComboBox)item.FindControl("RadComboBox1"); // get the parent GridDataItem for this form // (i.e. which row this edit form is generated for) GridDataItem parentGridItem; parentGridItem = item.ParentItem; // put the current product group on combobox's first entry statusComboBox.Items.Insert(0, new RadComboBoxItem(parentGridItem["product_group"].Text, string.Empty)); }}