New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Create a Bar Chart with Simple Static Data

RadChart has been replaced by RadHtmlChart, Telerik's client-side charting component. If you are considering RadChart for new development, examine the RadHtmlChart documentation and online demos first to see if it will fit your development needs. If you are already using RadChart in your projects, you can migrate to RadHtmlChart by following these articles: Migrating Series, Migrating Axes, Migrating Date Axes, Migrating Databinding, Features parity. Support for RadChart is discontinued as of Q3 2014, but the control will remain in the assembly so it can still be used. We encourage you to use RadHtmlChart for new development.

This Quick Start tutorial is designed to have you quickly up and running with a working RadChart application. In the process of creating a basic bar chart you will be introduced to some of the features of RadChart. You will populate the chart with static data and modify several properties that affect chart appearance.

Create an ASP.NET AJAX Web Application

  1. From the Visual Studio File menu select New | Project.

  2. Select the "ASP.NET AJAX-Enabled Web Application" and enter a name and location path.

    create project

    While its possible to get a regular ASP.NET Web Application working with RadChart, the ASP.NET AJAX-Enabled projects automatically provide you with an appropriate web.config file, a ScriptManager component and the required references for ASP.NET AJAX.

  3. From the Toolbox drag a RadChart component to the default web page.

  4. RadChart requires that you register an HTTP handler in the web config file to render the chart. To do this, click the Smart Tag Add RadChart HTTP Handler to Web.Config.

    add handlers

Populate Chart Data

  1. Click the RadChart's SmartTag

  2. From the SmartTag "Data" section, click the ellipses for the Chart Series Collection.

  3. Click "Series 1" in the members list on the left, then locate the Name property in the property window.

  4. Change the Name property to "Sales" and the DefaultLabelValue to "#ITEM". Name will be the series name that shows up in the legend. DefaultLabelValue will display the name of each item in the series instead of the item value.

  5. Locate the Items property in the property window.

  6. Click the ellipses button of the Items property to open the ChartSeriesItem Collection Editor.

  7. Click the Add button to add a new Item.

  8. In the property window for the new item, change the Name property to "Beverages".

  9. Change the YValue property to "10000".

    change item value

  10. Repeat the Add Item steps to add 3 new items.

  11. Replace the properties for the three new items as follows

    • Label=Produce, YValue =7500
    • Label=Poultry, YValue =9000
    • Label=Grains, YValue =11200
  12. Click OK to close the ChartSeriesItem Collection Editor.

  13. Click "Series 2" in the ChartSeries Collection Editor.

  14. Click the Remove button to remove Series 2.

  15. Click the OK button to close the ChartSeries Collection Editor.

  16. The chart will display the new data using the default formatting.

    chart with data

Format the Chart

  1. Click the Chart Wizard link at the bottom of the RadChart Tasks menu.

  2. Click the Axis Tab.

  3. Locate the Visual Properties section of the Axis tab.

  4. On the Select Axis drop down list select the X Axis. In the Axis Title entry enter "Product Categories". Un-check Show Ticks to remove the tick marks from the bottom of the chart.

  5. On the Select Axis drop down list select the Y Axis. Un-check Show Ticks to remove the tick marks on the left hand side of the chart.

    remove ticks

  6. Click the Labels, Legend and Title tab

  7. Locate the Legend section.

  8. Uncheck the Visible check box. This will remove the Sales legend from the right side of the graph.

    remove legend

  9. On the Skins tab select the Deep Blue skin.

    select skin

  10. Click the Submit button to close the wizard.

  11. In the properties window, locate PlotArea.XAxis.AxisLabel.TextBlock.Visible and set it to "True".

    show axis label texts

  12. Set AutoLayoutproperty to "True".

  13. Run the application to view the finished chart. It should look like the screen shot shown below.

    final chart

In this article