windowsforms-119143-controls-and-libraries-chart-control-provide-data-best-practices-display-large-data.md
A chart’s performance directly relates to how many points and elements it displays: fewer elements result in higher performance. This topic explains how to reduce the number of data points and enhance the chart’s performance.
The following approaches can help you to accelerate loading data:
Store all data points in as few series as possible. The Chart control is optimized to render a small number of series that have many points, rather than a large number of series with a few points. For example, a single series with a million points is processed faster than 10 series with 100000 points each.
Use data adapters to load data to the chart.
If the data schema of the underlying chart source is known, create an adapter that loads data to the chart. The adapter implemented specifically for your data source allows you to avoid the overhead of the Reflection API and type boxing operations. To create a data adapter, create a class that implements ISeriesAdapter or ISeriesTemplateAdapter.
Enable the DataSourceAdapterBase.DataSorted or SeriesBase.DataSorted property to notify the chart or series that its data source is already sorted to prevent the chart’s internal sorting procedures.
Starting with v16.1, the Chart Control loads data and applies settings when a chart is being rendered. This means you do not have to use the ChartControl.BeginInit and ChartControl.EndInit methods, or the SeriesPointCollection‘s ChartCollectionBase.BeginUpdate and ChartCollectionBase.EndUpdate methods to accelerate loading data.
You can use the Data Aggregation functionality to configure a more compact and readable view for a large amount of data. When using data aggregation, the chart splits the x-axis into intervals (according to the measurement unit value), and automatically aggregates data for each interval using an aggregation function. The following images illustrate this feature:
| Non-aggregated data | Data aggregated by year |
|---|---|
Refer to the following help topic for more details: Data Aggregation.
An internal data resampling algorithm allows the chart to avoid unnecessary operations when rendering series. The chart renders the minimum set of points required to display the correct series shape and form. The algorithm discards all points that have no effect on the output (for example, overlapped points). Every time the zoom level or visible data range changes, the chart re-calculates the minimum point set.
The resampling algorithm is in effect under the following conditions:
The resampled data algorithm and aggregated data display technique optimize RAM usage, but aggregate calculations require additional time and the resulting series shape can be different from the original.
The series is resampled.
The raw series (The series is not simplified and resampled).
The series is plotted based on aggregated data.
Note that the resampling algorithm is not supported for the following series views:
Range, scale type and layout’s automatic calculations require additional resources. The following steps can help accelerate rendering a chart:
Follow the steps below to decrease the time needed to render a chart’s visual elements:
Leave the ChartControl.RefreshDataOnRepaint property value as false to prevent a chart from reloading all its data when it is redrawn.
Using the ChartControl.CustomDrawSeriesPoint event functionality requires additional resources. Place points that should be customized into a separate series to improve performance.
Set the ChartControl.CacheToMemory property to true. This prevents a chart from executing unnecessary redraw operations.
The best series views to represent a large amount of data are the SwiftPlotSeriesView and SwiftPointSeriesView. The Swift Plot and Swift Point series views lack some elements and features available for other view types. These limitations allow these views to achieve the best possible performance. Refer to the following help topic for more information: Swift Plot Diagram.
Use a single color to paint series points instead of applying the SeriesViewColorEachSupportBase.ColorEach property.
Also note that each additional chart element (for example, a series point label) requires extra rendering time. This also applies to visual effects such as chart elements’ Shadow.
The data point markers should be invisible when you use the LineSeriesView and its descendants. Also, modify the LineSeriesView.LineStyle property’s line style settings as follows:
When you are dealing with the Point Series View or Bubble Series View, change their data point marker options as demonstrated below:
Customize the following parameters to optimize the Bar Series Views:
The runtime hit testing , selection and tooltips features require additional CPU and RAM resources and may decrease performance.
This section contains tips that allow you to increase performance when a chart shows a dataset that changes frequently.
See Also