Overview
Area charts display quantitative data visually as filled areas between the line and axis. They’re ideal for showing trends over time, cumulative totals, and part-to-whole relationships when stacked. The filled area emphasizes the magnitude of change and makes it easy to compare multiple data series. Use cases:- Showing trends and changes over time
- Displaying cumulative values
- Comparing multiple data series with stacking
- Emphasizing volume or magnitude of data
Series Class
TAreaSeries - The primary class for creating area chartsKey Properties
| Property | Type | Description |
|---|---|---|
MultiArea | TMultiArea | Stacking mode: maNone, maStacked, maStacked100 |
Stairs | Boolean | Display as stepped areas instead of smooth lines |
AreaChartBrush | TChartBrush | Configure fill pattern and gradient |
AreaLinesPen | TPen | Customize the outline pen |
Transparency | Integer | Set transparency level (0-100) |
UseOrigin | Boolean | Fill from a specific origin value |
Origin | Double | Origin value for area fill |
Code Examples
Basic Area Chart
Area Chart with Gradient Fill
From VCL/TeeNew/Area_Gradient.pas:41:Stacked Area Charts
From VCL/TeeNew/SeriesType_Area.pas:46:Stairs Area Chart
From VCL/TeeNew/SeriesType_Area.pas:111:Customization Options
Multi-Area Modes
Gradient Direction
Transparency
Custom Origin
3D Display
Related Chart Types
- Line Charts - Show trends without filled areas
- Bar Charts - Compare discrete categories
- Point Charts - Display individual data points
- Horizontal Area - Area charts with horizontal orientation
