Trend Lines in ASP.NET CORE Chart Component

16 May 202224 minutes to read

Trendlines are used to show the direction and speed of price. Trendlines can be generated for Cartesian type series (Line, Column, Scatter, Area, Candle, Hilo etc.) except bar type series. You can add more than one trendline to a series.

Chart supports 6 types of trendlines.

Linear

A linear trendline is a best fit straight line that is used with simpler data sets. To render a linear trendline, use trendline type as Linear.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="Linear" name="Linear"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Exponential

An exponential trendline is a curved line that is most useful when data values rise or fall at increasingly higher rates. You cannot create an exponential trendline, if your data contains zero or negative values. To render a exponential trendline, use trendline type as Exponential.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="Exponential" name="Exponential"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Logarithmic

A logarithmic trendline is a best-fit curved line that is most useful when the rate of change in the data increases or decreases quickly and then levels out.

A logarithmic trendline can use negative and/or positive values. To render a logarithmic trendline, use trendline type as Logarithmic.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="Logarithmic" name="Logarithmic"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Polynomial

A polynomial trendline is a curved line that is used when data fluctuates.

To render a polynomial trendline, use trendline type as Polynomial. polynomialOrder used to define the polynomial value.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="Polynomial" name="Polynomial"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Power

A power trendline is a curved line that is best used with data sets that compare measurements that increase at a specific rate.

To render a power trendline, use trendline type as Power.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series dataSource="ViewBag.dataSource" name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="Power" width="3" name="Power" fill="#0066FF"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
public IActionResult Index()
        {
            List<powerData> chartData = new List<powerData>
            {
                    new powerData { x= 1, y= 10 },
                    new powerData { x= 2, y= 50 },
                    new powerData { x= 3, y= 80 },
                    new powerData { x= 4, y= 110 },
                    new powerData { x= 5, y= 180 },
                    new powerData { x= 6, y= 220 },
                    new powerData { x= 7, y= 300 },
                    new powerData { x= 8, y= 370 },
                    new powerData { x= 9, y= 490 },
                    new powerData { x= 10, y= 500 }
            };
            ViewBag.dataSource = chartData;
            return View();
        }
        public class powerData
        {
            public double x;
            public double y;
        }

Moving Average

A moving average trendline smoothen out fluctuations in data to show a pattern or trend more clearly.

To render a moving average trendline, use trendline type as MovingAverage. The period property defines the period to find the moving average.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="MovingAverage" name="MovingAverage"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Customization of Trendlines

The fill and width properties are used to customize the appearance of the trendline.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="MovingAverage" width="2" name="MovingAverage" fill="red"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Forecasting

Trendlines forecasting is the prediction of future/past situations. Forecasting can be classified into two types as follows,

  • Forward Forecasting
  • Backward Forecasting

Forward Forecasting

The value set for forwardForecast is used to determine the distance moving towards the future trend.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="Linear" forwardForecast="5"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Backward Forecasting

The value set for the backwardForecast is used to determine the past trends.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline type="Linear" backwardForecast="5"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }

Show or hide a trendline

You can show or hide the trendline by setting trendline visible property.

<ejs-chart id="container" load="window.onChartLoad ">
        <e-series-collection>
            <e-series name="Apple Inc" xName="x" yName="y" fill="#0066FF" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter">
                <e-series-trendlines>
                    <e-trendline visible="false"></e-trendline>
                </e-series-trendlines>
            </e-series>
        </e-series-collection>
    </ejs-chart>
<script>
    window.onChartLoad = function (args) {
    var data = [];
    var yValue = [7.66, 8.03, 8.41, 8.97, 8.77, 8.20, 8.16, 7.89, 8.68, 9.48, 10.11, 11.36, 12.34, 12.60, 12.95, 13.91, 16.21, 17.50, 22.72, 28.14, 31.26, 31.39, 32.43, 35.52, 36.36,
        41.33, 43.12, 45.00, 47.23, 48.62, 46.60, 45.28, 44.01, 45.17, 41.20, 43.41, 48.32, 45.65, 46.61, 53.34, 58.53];
    var point;
    var i;
    var j = 0;
    for (i = 1973; i <= 2013; i++) {
        point = { x: i, y: yValue[j] };
        data.push(point);
        j++;
    }
        args.chart.series[0].dataSource = data;
    }
</script>
public IActionResult Index()
        {
            return View();
        }