<MasterTableView AutoGenerateColumns="False" DataKeyNames="OrderId" DataMember="Orders" CommandItemDisplay="Top"> <EditFormSettings EditFormType="Template"> <FormTemplate> <asp:TableCell Width="25%" HorizontalAlign="Left"> <telerik:RadComboBox ID="RadComboBox_ShippingAddress" runat="server" DataTextField="LocationName" DataValueField="LocationID" Width="190px" EnableLoadOnDemand="True" MarkFirstMatch="True" AllowCustomText="false" ShowMoreResultsBox="True" ItemRequestTimeout="500" AutoPostBack="false" OnItemsRequested="RadComboBox_ShippingAddress_ItemsRequested" Height="140px"protected void RadComboBox_ShippingAddress_ItemsRequested(object o, RadComboBoxItemsRequestedEventArgs e) { LoadRadCombo_ShippingAddress(); RadComboBox oRadComboBox_ShippingAddress = RadGrid_Orders.MasterTableView.Items[0].FindControl("RadComboBox_ShippingAddress") as RadComboBox; oRadComboBox_ShippingAddress.Items.Clear(); string text = e.Text; try { DataRow[] rows = mShippingAddressNameListDataTable.Select("LocationName LIKE '" + text + "*'");RadComboBox
oRadComboBox_ShippingAddress =
RadGrid_Orders.MasterTableView.Items[0].FindControl("RadComboBox_ShippingAddress")
as RadComboBox;I cant show my Pie chart with 3 inputs,,I am a new one ,Help to show 3 inputs in pie chart ,here is my code
<telerik:RadChart ID="RadChart4" runat="server" DataSourceID="SqlDataSource3" DefaultType="Pie"
Width="321px" Style="font-weight: 700" >
<Series>
<telerik:ChartSeries DataYColumn="Amount" Name="Amount" Type="Pie">
</telerik:ChartSeries>
<telerik:ChartSeries DataYColumn2="Amount1" Name="Series 2" Type="Pie">
</telerik:ChartSeries>
<telerik:ChartSeries Type="Pie" DataYColumn3="Amoun2" Name="Series 3">
</telerik:ChartSeries>
</Series>
</telerik:RadChart>
<p>
.</p>
<asp:SqlDataSource ID="SqlDataSource3" runat="server" ConnectionString="<%$ ConnectionStrings:TestWaqarConnectionString %>"
SelectCommand="SELECT [Amount], [Amount1], [Amount2] FROM [Calendar] WHERE ([Year] = @Year)">
<SelectParameters>
<asp:Parameter DefaultValue="2000" Name="Year" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
http://www.bimonkey.com/2009/07/the-term-extraction-transformation/
Marc
<
head runat="server">
<title></title>
<link href="../App_Themes/Default/main.css" rel="stylesheet" type="text/css" />
</
head>
<telerik:RadPanelBar ID="RadPanelBar1" runat="server" ExpandMode="FullExpandedItem"
Skin="Vista" Width="300px" Height="700px" >
<Items >
<telerik:RadPanelItem runat="server" Text="0. Instructions on Setting up Client" Value="0"
Font-Size="12" ChildGroupCssClass="PanelChildBackGround">
<Items >
<telerik:RadPanelItem runat="server" Text="Instructions on Client" Font-Bold="true" Font-Size="11" ForeColor="#0f68c2"
>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelBar>
</body>
But unfortunately the ChildGroupCssClass property is not working, in other words, radpanelchild item is not taking the css behavior. If I am missing anything please let me know. Thanks.