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 / Adding Values

Add new employee:


Remove Employee:
Did you know that you can add Telerik Silverlight Charts to your ASP.NET applications?

RadControls for Silverlight


  • This example shows how to add or remove data series and how to customize the X and Y axes. The chart has multiple bar series. The Y axis has a fixed value range. Only item values that fall into this range are shown normally. The others preserve only their labels. The X axis item labels can be changed dynamically.

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" %>

    <%@ Page Inherits="Telerik.ChartExamplesCS.AddingSeries.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" %>
    <!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 -->
        <form runat="server" id="mainForm" method="post">
            <telerik:Header ShowSkinChooser="false" runat="server" ID="Header1" NavigationLanguage="C#" AccessibilityLevel="AA">
            </telerik:Header>
            <asp:ScriptManager ID="ScriptManager" runat="server" />
            <!-- content start -->
            <table cellspacing="0" cellpadding="0" border="0" summary="">
                <tr>
                    <td style="vertical-align: top; width: 482px;">
                        <telerik:RadChart ID="RadChart1" runat="server">
                            <PlotArea>
                                <YAxis MaxValue="80">
                                </YAxis>
                                <YAxis2 Step="1" MaxValue="7" MinValue="1">
                                </YAxis2>
                                <XAxis MaxValue="7" MinValue="1" Step="1">
                                </XAxis>
                            </PlotArea>
                            <Series>
                                <telerik:ChartSeries Name="Series 1">
                                </telerik:ChartSeries>
                                <telerik:ChartSeries Name="Series 2">
                                </telerik:ChartSeries>
                            </Series>
                        </telerik:RadChart>
                    </td>
                    <td class="module">
                        <table width="100%" style="border: 0px" summary="">
                            <tr>
                                <td colspan="2">
                                    <b>Add new employee:</b></td>
                            </tr>
                            <tr>
                                <td>
                                    <label for="dropDownQuarter">
                                        <asp:Label ID="Label1" runat="server">Payroll Quarter:</asp:Label>
                                    </label>
                                </td>
                                <td>
    <asp:DropDownList ID="dropDownQuarter" runat="server" Width="80px" AutoPostBack="True"
    OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">

                                        <asp:ListItem Value="Q1">Q1</asp:ListItem>
                                        <asp:ListItem Value="Q2">Q2</asp:ListItem>
                                        <asp:ListItem Value="Q3">Q3</asp:ListItem>
                                        <asp:ListItem Value="Q4">Q4</asp:ListItem>
                                    </asp:DropDownList>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <label for="txtBoxSalary1">
                                        Salary
                                        <asp:Label ID="labelFirstMonth" runat="server">JAN</asp:Label>:
                                    </label>
                                </td>
                                <td>
                                    <asp:TextBox ID="txtBoxSalary1" runat="server" class="textfield"></asp:TextBox>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <label for="txtBoxSalary2">
                                        Salary
                                        <asp:Label ID="labelSecondMonth" runat="server">FEB</asp:Label>:
                                    </label>
                                </td>
                                <td>
                                    <asp:TextBox ID="txtBoxSalary2" runat="server" class="textfield"></asp:TextBox>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <label for="txtBoxSalary3">
                                        Salary
                                        <asp:Label ID="labelThirdMonth" runat="server">MAR</asp:Label>:
                                    </label>
                                </td>
                                <td>
                                    <asp:TextBox ID="txtBoxSalary3" runat="server" class="textfield"></asp:TextBox>
                                </td>
                            </tr>
                            <tr>
                                <td>
                                </td>
                                <td>
                                    <asp:Button ID="btnAddEmployee" runat="server" Text="Add New" class="button" OnClick="btnAddEmployee_Click">
                                    </asp:Button>
                                    <br />
                                    <br />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <b>Remove Employee:</b></td>
                                <td>
    <asp:Button ID="btnRemoveEmployee" runat="server" class="button" Text="Remove Last"
    OnClick="btnRemoveEmployee_Click"></asp:Button>

                                </td>
                            </tr>
                            <tr>
                                <td>
                                    <label for="txtBoxMinSalary">
                                        <asp:Label ID="Label2" runat="server">Display salaries larger than:</asp:Label>
                                    </label>
                                </td>
                                <td>
                                    <asp:TextBox ID="txtBoxMinSalary" runat="server" class="textfield">750</asp:TextBox>
                                    <asp:Button ID="btnApplyMinSalary" runat="server" Text="Apply" class="button" OnClick="btnApplyMinSalary_Click">
                                    </asp:Button>
                                </td>
                            </tr>
                        </table>
                    </td>
                </tr>
            </table>
            <!-- content end -->
            <telerik:Footer runat="server" ID="Footer1"></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