New to Telerik UI for WinForms? Start a free 30-day trial
FastLine
Updated on May 7, 2026
FastLineSeries is inheriting the default line series but the performance is considerably improved. This type of series can be used for system performance monitoring or with chart than need to display thousands data points. The cost of the improved performance is that you cannot display labels or plot points.
The following code snipped shows how you can add FastLineSeries to RadChartView.
Initial Setup
C#
Random rnd = new Random();
FastLineSeries series = new FastLineSeries();
FastLineSeries series1 = new FastLineSeries();
for (int i = 0; i < 50; i++)
{
series.DataPoints.Add(new CategoricalDataPoint(rnd.Next(50, 100), i));
series1.DataPoints.Add(new CategoricalDataPoint(rnd.Next(50), i));
}
radChartView1.Series.Add(series);
radChartView1.Series.Add(series1);Figure 1: Initial Setup
