Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Regression Lines

A Regression Line is a series indicator that allows you to perform linear regression analysis over series points. The analysis aims to find a line that is as close to all series’s points as possible using the method of least squares to determine the underlying line’s equation.

WFP_RegressionLine_Overview

#How to Add a Regression Line to a Chart

The following markup shows how to build a regression line based on a stock series‘s High values:

<dxc:StockSeries2D.Indicators> 
    <dxc:RegressionLine ValueLevel="High" 
                        ShowInLegend="True" 
                        LegendText="Regression Line"/>
</dxc:StockSeries2D.Indicators>

The code above uses the following classes and properties:

Class or Property Description
XYSeries2D.Indicators The series indicators’ collection.
RegressionLine The regression line.
RegressionLine.ValueLevel Specifies a point value used to build a regression line.
Indicator.ShowInLegend Specifies whether to show a regression line in the legend.
Indicator.LegendText Specifies the text that indicates the indicator in the legend.
See Also