UI controls for ASP.NET AJAX, MVC, WPF,Silverlight, Windows 8 and Windows Phone
Cross-platform Mobile Development Toolwith cloud-based architecture
Everything you need to build sites andmobile apps with JavaScript and HTML5
One easy tool for Functional, Performance,Load and Mobile software testing
Everything for your online business - contentmanagement, ecommerce, emarketing
Simple and intuitive project managementand collaboration software
The versatile nature of Telerik Charts allow you to add financial, scientific, engineering, business or any kind of relevant data to charts that can be integrated into your applications. RadChart for ASP.NET AJAX encompasses a myriad of data visualization features, flexible databinding combined with an innovative rendering engine for remarkable performance, quality, and polished images. If you are just starting your project and want to have highly interactive, rich, animated or even 3D charts the Telerik Silverlight Charts are the perfect fit for your ASP.NET apps.
RadChart and 70+ other controls are part of RadControls for ASP.NET AJAX, a comprehensive toolset taking care of the common functionality of your application, while leaving you with more time to work on the business logic of the app.
<%@ Page Inherits="Telerik.ChartExamplesCS.DatabaseBinding.DefaultCS" Language="c#"CodeFile="DefaultCS.aspx.cs" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Charting" Assembly="Telerik.Web.UI" %> <%@ Register Namespace="Telerik.QuickStart" TagPrefix="qsf" %> <%@ Register Src="~/Chart/Examples/Overview/Info.ascx" TagPrefix="qsf" TagName="Info" %> <%@ Register TagPrefix="uc1" TagName="RadHtmlChartInfoBox" Src="~/Chart/Common/RadHmlChartInfoBox.ascx" %> <!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'> <head> <title>ASP.NET Chart control demo | RadChart tutorials</title> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <uc1:RadHtmlChartInfoBox ID="RadHtmlChartInfoBox1" runat="server" /> <asp:Label ID="Label1" runat="server" class="text">GDP by Year: </asp:Label> <asp:DropDownList ID="dropDownYears" runat="server" AutoPostBack="True" OnSelectedIndexChanged="dropDownYears_SelectedIndexChanged"> </asp:DropDownList> <br /> <telerik:RadChart ID="RadChart1" runat="server" Height="333px" Skin="LightGreen" Width="700px" OnItemDataBound="RadChart1_ItemDataBound" AutoLayout="true" AutoTextWrap="true"> <Series> <telerik:ChartSeries Name="Series 1" Type="Pie" DataYColumn="Sum"> <Appearance LegendDisplayMode="ItemLabels"> </Appearance> </telerik:ChartSeries> </Series> </telerik:RadChart> <br /> <br /> <br /> <label for="dropDownCategory"> <asp:Label ID="Label2" runat="server" class="text">GDP by Industry:</asp:Label> </label> <asp:DropDownList ID="dropDownCategory" runat="server" AutoPostBack="True" Width="225" OnSelectedIndexChanged="dropDownCategory_SelectedIndexChanged"> </asp:DropDownList> <br /> <br /> <telerik:RadChart ID="RadChart2" runat="server" Height="333px" Skin="Vista" Width="700px" AutoLayout="true" AutoTextWrap="true"> <PlotArea> <YAxis MaxValue="60" MinValue="-100" Step="20"> </YAxis> <YAxis2 MaxValue="5" MinValue="1" Step="1"> </YAxis2> <XAxis MaxValue="5" MinValue="1" Step="1"> </XAxis> </PlotArea> </telerik:RadChart> </form> </body> </html>