Angular OHLC Chart is like a candle chart. The horizontal lines at the left and right are used to show open and close values of the stock, and the vertical line represents high and low values. They are easily customizable and supports interactive features such as trackball, tooltip, selection, and zooming to track information of the data.
Plot multiple series in a single chart to compare different data sets. Enabling legend and tooltip gives more information about the individual series.
Render the stock prices in different panes of a chart. Visualize the OHLC values in one pane and the volume in another pane.
You can use the range selector along with a financial chart to filter and navigate through a large number of data points.
Customize bull and bear colors.
Zoom and pan when dealing with large amounts of data to visualize data points in any region.
Easily get started with Angular OHLC Chart by using a few lines of HTML and TS code, as demonstrated below. Also explore our Angular OHLC Chart Example that shows how to render and configure the chart.
<ejs-chart style='display:block' id='chartcontainer' [primaryXAxis]='primaryXAxis'>
<e-series-collection>
<e-series [dataSource]='data' type='HilOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
//app.component.ts
import { Component } from '@angular/core';
export class AppComponent {
public data: Object[] = [
{ x: 'Jan', open: 120, high: 160, low: 100, close: 140 },
{ x: 'Feb', open: 150, high: 190, low: 130, close: 170 },
{ x: 'Mar', open: 130, high: 170, low: 110, close: 150 },
{ x: 'Apr', open: 160, high: 180, low: 120, close: 140 },
{ x: 'May', open: 150, high: 170, low: 110, close: 130 },
{ x: 'Jun', open: 120, high: 160, low: 100, close: 140 },
{ x: 'Jul', open: 150, high: 190, low: 130, close: 170 },
{ x: 'Aug', open: 130, high: 170, low: 110, close: 150 },
{ x: 'Sep', open: 160, high: 180, low: 120, close: 140 },
{ x: 'Oct', open: 150, high: 170, low: 110, close: 130 }
];
//Initializing Primary X Axis
public primaryXAxis: Object = {
valueType: 'Category',
};
}
//app.module.ts
import { ChartModule } from '@syncfusion/ej2-ng-charts';
import { HiloOpenCloseSeriesService, CategoryService} from '@syncfusion/ej2-ng-charts';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule, ChartModule
],
providers: [ CategoryService, HiloOpenCloseSeriesService],
bootstrap: [AppComponent]
})
export class AppModule { }
Learn the available options to customize Angular OHLC Chart.
Explore the Angular OHLC Chart APIs.