JavaScript HiLo Chart is similar to OHLC, but shows the high and low values of the stock over the given period of time.
Allows you to plot multiple series in a single chart to compare different data sets. Enabling legend and tooltip gives more information about the individual series.
Data labels display information about data points. Add a template to display data labels with HTML elements such as images, DIV, and spans for more informative data labels. You can rotate a data label by its given angle.
Use multiple axes to plot different data sets that widely vary from one other.
Customize the color, thickness, and dash array of the stepline chart using built-in APIs.
import { Chart, HiloSeries, Category} from '@syncfusion/ej2-charts';
Chart.Inject(HiloSeries, Category);
let chartData: any[] = [
{ 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 }
];
let chart: Chart = new Chart({
primaryXAxis: {
valueType: 'Category',
},
series: [
{
dataSource: chartData,
xName: 'x', high: 'high', low: 'low',
type: 'Hilo',
}
],
}, '#Chart');
<!DOCTYPE html>
<html>
<head></head>
<body style = 'overflow: hidden'>
<div id="container">
<div id="Chart"></div>
</div>
<style>
#control-container {
padding: 0px !important;
}
</style>
</body>
</html>