This example shows the different skins that are shipped with RadChart and optimized for these type of charts. The appearance of RadChart is easily customizable, setting a single Skin property. This is all you need to define the look and feel for all chart elements.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="Chart_Examples_Skinning_Misc_DefaultCS" %><%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><%@ Register TagPrefix="telerik" Namespace="Telerik.Charting" Assembly="Telerik.Web.UI" %><%@ 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" %><!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 id="Head1" runat="server"> <telerik:HeadTag runat="server" ID="Headtag1"></telerik:HeadTag> <link rel="Stylesheet" href="../Gallery.css" /></head><body class="BODY"> <form id="Form1" runat="server"> <telerik:Header ShowSkinChooser="false" runat="server" ID="Header1" NavigationLanguage="C#"> </telerik:Header> <asp:ScriptManager ID="ScriptManager" runat="server" /> <div id="MainPlaceHolder"> <div id="ChartArea"> <div id="chartOptionsPlaceholder"> <br /> <asp:Label ID="lblChartOrientation" runat="server" Text="Series orientation:" /> <asp:RadioButtonList AutoPostBack="true" ID="OrientationList" runat="server" OnSelectedIndexChanged="OrientationList_SelectedIndexChanged"> <asp:ListItem Text="Horizontal" Value="Horizontal" /> <asp:ListItem Text="Vertical" Value="Vertical" Selected="True" /> </asp:RadioButtonList> <br /> <asp:Label ID="lblChartType" runat="server" Text="Additional chart types:" /> <asp:DropDownList AutoPostBack="true" ID="SubtypeDropdown" runat="server" OnSelectedIndexChanged="SubtypeDropdown_SelectedIndexChanged"> <asp:ListItem Text="Point" Value="Point" Selected="True" /> <asp:ListItem Text="Gantt" Value="Gantt" /> <asp:ListItem Text="Bubble" Value="Bubble" /> </asp:DropDownList> </div> <div id="chartPlaceholder"> <telerik:RadChart ID="RadChart1" SkinsOverrideStyles="true" runat="server"> <PlotArea> <XAxis MaxValue="5" MinValue="1" Step="1"> </XAxis> <YAxis MaxValue="25" Step="5" AxisMode="Extended"> </YAxis> <YAxis2 MaxValue="5" MinValue="1" Step="1"> </YAxis2> </PlotArea> <Series> <telerik:ChartSeries Name="Series 1" Type="Point"> <Appearance LegendDisplayMode="ItemLabels"> <FillStyle MainColor="Blue"> </FillStyle> </Appearance> <Items> <telerik:ChartSeriesItem YValue="23" YValue2="44" Name="Item 1"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem YValue="20" YValue2="30" Name="Item 2"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem YValue="24" YValue2="34" Name="Item 3"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem YValue="19" YValue2="36" Name="Item 4"> </telerik:ChartSeriesItem> <telerik:ChartSeriesItem YValue="25" YValue2="17" Name="Item 5"> </telerik:ChartSeriesItem> </Items> </telerik:ChartSeries> </Series> </telerik:RadChart> </div> </div> <div id="ThumbsArea"> <asp:RadioButtonList ID="ThumbsList" AutoPostBack="true" runat="server" RepeatColumns="3" RepeatDirection="Horizontal" OnSelectedIndexChanged="ThumbsList_SelectedIndexChanged"> </asp:RadioButtonList> </div> </div> <div class="qsfClearFloat"><!-- --></div> <telerik:Footer ShowCodeViewer="true" runat="server" ID="Footer1"></telerik:Footer> </form></body></html>
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.