Area Chart displays the statistical data in a graphical format. It renders a chart by one or more series values. It is compatible with any browser which supports SVG and also Internet Explorer higher than 9.

You can learn more in my previous parts here:

There are two type of Area Charts.
  1. Stacked Area Chart
  2. Basic Type Area Chart

Let’s see initial code with its output then we can check the properties in detail.

  1. <ajaxToolkit:AreaChart ID="AreaChart1" runat="server" 2.
  2. ChartHeight="300" ChartWidth="450" ChartType="Basic
  3. ChartTitle="Pakistan versus European Widget Production"
  4. CategoriesAxis="2007,2008,2009,2010,2011,2012"
  5. ChartTitleColor="#0E426C" CategoryAxisLineColor="red"
  6. ValueAxisLineColor="REd" BaseLineColor="Red">

  7. <Series>
  8. <ajaxToolkit:AreaChartSeries Name="Pakistan"
  9. AreaColor="Green" Data="110, 189, 255, 95, 107, 140" />
  10. <ajaxToolkit:AreaChartSeries Name="Europe"
  11. AreaColor="Blue" Data="49, 77, 95, 68, 70, 79" />
  12. </Series>
  13. </ajaxToolkit:AreaChart>
Output



Properties