Trend lines in Angular Stock chart component
27 Apr 20243 minutes to read
Trendlines are used to show the direction and speed of price.
StockChart supports 6 types of trendlines namely Linear
,Exponential
,Logarithmic
,Polynomial
,Power
,Moving Average
. By using trendline dropdown button you can add or remove the required trendline type.
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
and inject TrendLines
.
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
and inject TrendLines
.
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
and inject Trendlines
.
Polynomial
A polynomial trendline is a curved line that is used when data fluctuates.
To render a polynomial trendline, use trendline type
as Polynomial
and inject Trendlines
.
polynomialOrder
used to define the polynomial value.
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
and inject Trendlines
.
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
and inject Trendlines
.
period
property defines the period to find the moving average.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { ChartAllModule, RangeNavigatorAllModule, StockChartAllModule } from '@syncfusion/ej2-angular-charts'
import { ScatterSeriesService, LineSeriesService, DateTimeService, TrendlinesService} from '@syncfusion/ej2-angular-charts'
import { Component, OnInit } from '@angular/core';
import { chartData } from './datasource';
@Component({
imports: [
StockChartAllModule, RangeNavigatorAllModule, ChartAllModule,
],
providers: [ ScatterSeriesService, LineSeriesService, DateTimeService, TrendlinesService],
standalone: true,
selector: 'app-container',
template: `<ejs-stockchart id="chart-container" [title]='title'>
<e-stockchart-series-collection>
<e-stockchart-series [dataSource]='chartData' type='Candle' xName='date' yName='open' name='India' width=2 ><e-trendlines>
<e-trendline type='MovingAverage' width=3 name='Trends' fill='red'>
</e-trendline>
</e-trendlines></e-stockchart-series>
</e-stockchart-series-collection>
</ejs-stockchart>`
})
export class AppComponent implements OnInit {
public chartData?: Object[];
public title?: string;
ngOnInit(): void {
this.chartData = chartData;
this.title = 'Efficiency of oil-fired power production';
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));