or
<telerik:RadChart ID="RadChart1" runat="server" Width="950px" Height="400px" SeriesOrientation="Horizontal" OnClick="RadChart1_OnClick" BorderWidth="0" IntelligentLabelsEnabled="True" PlotArea-Appearance-Dimensions-Margins="15%,10%,30%,10%" SkinsOverrideStyles="false" Skin="Custom" OnItemDataBound="RadChart1_OnItemDataBound"></telerik:RadChart><telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Animation="Slide" Position="TopCenter" EnableShadow="true" ToolTipZoneID="RadChart1" AutoTooltipify="true"></telerik:RadToolTipManager>Here is code behind:
protected void RadChart1_OnItemDataBound(object sender, ChartItemDataBoundEventArgs e) { e.SeriesItem.ActiveRegion.Tooltip = ((DataRowView)e.DataItem)["Answer"].ToString(); }RadImageEditor does not accept width in percentage.
In my project I am having a rad Panel within which I have a user control which contains a RadGrid. This rad grid has a NestedViewTemplate which contains <td> <tr> formation with a single row and two <td>’s I have given 50% width to each of these <td>’s and each of these <td>’s contain another user control which contains a RadImageEditor control with width as 100%. But when I run my code the Image control goes out of its parent element. Is there a way to fix this issue?