Telerik is a leading vendor of ASP.NET AJAX, ASP.NET MVC, Silverlight, WinForms and WPF controls and components, as well as .NET Reporting, .NET ORM , .NET CMS, Code Analysis, Mocking, Team Productivity and Automated Testing Tools. Building on its expertise in interface development and Microsoft technologies, Telerik helps customers build applications with unparalleled richness, responsiveness and interactivity. Telerik products help thousands of companies to be more productive and deliver reliable applications under budget and on time.
Version Q2 2011 released 07/12/2011
select

Chart / Xml

Bound to a XML Data Source Control (ASP.NET 2.0) Bound to XML file (Series type - Pie)

Bound to a XML Data Source Control (ASP.NET 2.0).
The X Axis is data bound too.
Did you know that you can add Telerik Silverlight Charts to your ASP.NET applications?

RadControls for Silverlight


  • RadChart can be automatically bound to an either XML data source control or to a XML file.

    The first chart is bound to the ASP.NET 2.0 XML DataSource Control.

    The second chart uses an old ASP.NET-style data binding by setting the DataSource property. An XML file is used as a Datasource.

    The third chart has its X Axis bound to XML Data Source control as well.

Source Code

C# VB.NET
Show code in new window Demo isolation steps
  • <%@ Register TagPrefix="telerik" TagName="Footer" Src="~/Common/Footer.ascx" %>
    <%@ Register TagPrefix="telerik" TagName="HeadTag" Src="~/Common/HeadTag.ascx" %>
    <%@ Register TagPrefix="telerik" TagName="Header" Src="~/Common/Header.ascx" %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.QuickStart" %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Charting" Assembly="Telerik.Web.UI" %>

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="Telerik.Chart.Examples.DataBinding.Automatic.DefaultCS" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
    <head runat="server">
        <telerik:HeadTag runat="server" ID="Headtag1"></telerik:HeadTag>
        <!-- custom head section -->
    </head>
    <body class="BODY">
        <!-- end of custom head section -->
        <asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/App_Data/ChartData.xml">
        </asp:XmlDataSource>
        <asp:XmlDataSource ID="XmlDataSource2" runat="server" DataFile="~/App_Data/ChartData2.xml">
        </asp:XmlDataSource>
        <form id="mainForm" runat="server" method="post">
            <telerik:Header ShowSkinChooser="false" ID="Header1" runat="server" AccessibilityLevel="AAA" NavigationLanguage="C#">
            </telerik:Header>
            <asp:ScriptManager ID="ScriptManager" runat="server" />
            <!-- content start -->
            <table summary="">
                <tr>
                    <th style="width: 360px">
                        Bound to a XML Data Source Control (ASP.NET 2.0)
                    </th>
                    <th style="width: 360px">
                        Bound to XML file (Series type - Pie)
                    </th>
                </tr>
                <tr>
                    <td style="width: 360px">
                        <telerik:RadChart ID="RadChart1" runat="server" DataSourceID="XmlDataSource1" Height="260px"
                            Width="360px">
                            <PlotArea>
                                <YAxis MaxValue="70">
                                </YAxis>
                                <YAxis2 MaxValue="4" MinValue="1" Step="1">
                                </YAxis2>
                                <XAxis MaxValue="4" MinValue="1" Step="1">
                                </XAxis>
                            </PlotArea>
                            <ChartTitle>
                                <TextBlock Text="RadChart 1">
                                </TextBlock>
                            </ChartTitle>
                            <Appearance Dimensions-Height="260px" Dimensions-Width="360px">
                            </Appearance>
                            <Series>
                                <telerik:ChartSeries DataYColumn="Price" Name="Price">
                                </telerik:ChartSeries>
                            </Series>
                        </telerik:RadChart>
                    </td>
                    <td style="width: 360px">
                        <telerik:RadChart ID="RadChart2" runat="server" DefaultType="Pie" Height="260px" Width="360px">
                            <PlotArea>
                                <Appearance Border-Width="0">
                                </Appearance>
                                <YAxis Step="20">
                                </YAxis>
                                <YAxis2 MaxValue="7" MinValue="1" Step="1">
                                </YAxis2>
                                <XAxis MaxValue="7" MinValue="1" Step="1">
                                </XAxis>
                            </PlotArea>
                            <ChartTitle>
                                <TextBlock Text="RadChart 2">
                                </TextBlock>
                            </ChartTitle>
                            <Appearance Dimensions-Height="260px" Dimensions-Width="360px">
                            </Appearance>
                            <Series>
                                <telerik:ChartSeries DefaultLabelValue="#Y of #SUM" Name="Series 1" Type="Pie">
                                </telerik:ChartSeries>
                            </Series>
                        </telerik:RadChart>
                    </td>
                </tr>
                <tr>
                    <th colspan="2">
                        <br />
                        Bound to a XML Data Source Control (ASP.NET 2.0).
                        <br />
                        The X Axis is data bound too.</th>
                </tr>
                <tr>
                    <td colspan="2">
                        <telerik:RadChart ID="RadChart3" runat="server" DataSourceID="XmlDataSource2" Height="260px"
                            Width="460px" style="margin:0 auto">
                            <PlotArea>
                                <YAxis MaxValue="6000" Step="1000">
                                </YAxis>
                                <YAxis2 MaxValue="4" MinValue="1" Step="1">
                                </YAxis2>
                                <XAxis AutoScale="False" DataLabelsColumn="Month" MaxValue="0" Step="1">
                                    <Items>
                                        <telerik:ChartAxisItem>
                                            <textblock text="October"></textblock>
                                        </telerik:ChartAxisItem>
                                        <telerik:ChartAxisItem>
                                            <textblock text="November"></textblock>
                                        </telerik:ChartAxisItem>
                                        <telerik:ChartAxisItem>
                                            <textblock text="December"></textblock>
                                        </telerik:ChartAxisItem>
                                        <telerik:ChartAxisItem>
                                            <textblock text="January"></textblock>
                                        </telerik:ChartAxisItem>
                                    </Items>
                                </XAxis>
                            </PlotArea>
                            <ChartTitle>
                                <TextBlock Text="RadChart 3">
                                </TextBlock>
                            </ChartTitle>
                            <Appearance>
                            </Appearance>
                            <Series>
                                <telerik:ChartSeries DataYColumn="Cars" Name="Cars">
                                </telerik:ChartSeries>
                                <telerik:ChartSeries DataYColumn="Bikes" Name="Bikes">
                                </telerik:ChartSeries>
                                <telerik:ChartSeries DataYColumn="Trailers" Name="Trailers">
                                </telerik:ChartSeries>
                            </Series>
                        </telerik:RadChart>
                    </td>
                </tr>
            </table>
            <!-- content end -->
            <telerik:Footer ID="Footer1" runat="server"></telerik:Footer>
        </form>
    </body>
    </html>

Get more than expected!

 
 

Take your time to truly experience the power of RadControls for ASP.NET AJAX with a free 60-day trial backed up by Telerik’s unlimited dedicated support.

Download your RadControls for ASP.NET AJAX trial and jumpstart your development with the available Getting Started resources.

If you have any questions, do not hesitate to contact us at sales@telerik.com.

Copyright 2002-2024 © Telerik. All right reserved
Telerik Inc, 201 Jones Rd, Waltham, MA 02451