- High low open close
- Binding data with series
- Series customization
- Empty points
- Events
- See also
Contact Support
High low open close Chart in Vue Component
14 Oct 202424 minutes to read
High low open close
To render an hiloOpenClose
series in your chart, you need to follow a few steps to configure it correctly. Here’s a concise guide on how to do this:
-
Set the series type: Define the series
type
asHiloOpenClose
in your chart configuration. This indicates that the data should be represented as a hiloOpenClose chart, which displays the high, low, open, and close values for each data point, providing a comprehensive visualization of stock price movements. -
Inject the HiloOpenCloseSeries module: Use the
provide: { chart: [HiloOpenCloseSeries]}
method to inject theHiloOpenCloseSeries
module into your chart. This step is essential, as it ensures that the necessary functionalities for rendering hiloOpenClose series are available in your chart. -
Provide high, low, open, and close values: The
HiloOpenClose
series requires five fields (x, high, low, open, and close) to accurately display the stock’s high, low, open, and close prices. Ensure that your data source includes these fields to create a detailed representation of stock price movements over time.
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ 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 }
];
const primaryXAxis = {
title: 'Month',
valueType: 'Category'
};
const primaryYAxis = {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
};
const title = "Financial Analysis";
provide('chart', [HiloOpenCloseSeries, Category]);
</script>
<style>
#container {
height: 350px;
}
</style>
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
'ejs-chart': ChartComponent,
'e-series-collection': SeriesCollectionDirective,
'e-series': SeriesDirective
},
data() {
return {
seriesData: [
{ 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 }
],
primaryXAxis: {
title: 'Month',
valueType: 'Category'
},
primaryYAxis: {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
},
title: "Financial Analysis"
};
},
provide: {
chart: [HiloOpenCloseSeries, Category]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>
Binding data with series
You can bind data to the chart using the dataSource
property within the series configuration. This allows you to connect a JSON dataset or remote data to your chart. To display the data correctly, map the fields from the data to the chart series xName
, high
, low
, open
and close
properties.
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ 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 }
];
const primaryXAxis = {
title: 'Month',
valueType: 'Category'
};
const primaryYAxis = {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
};
const title = "Financial Analysis";
provide('chart', [HiloOpenCloseSeries, Category]);
</script>
<style>
#container {
height: 350px;
}
</style>
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
'ejs-chart': ChartComponent,
'e-series-collection': SeriesCollectionDirective,
'e-series': SeriesDirective
},
data() {
return {
seriesData: [
{ 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 }
],
primaryXAxis: {
title: 'Month',
valueType: 'Category'
},
primaryYAxis: {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
},
title: "Financial Analysis"
};
},
provide: {
chart: [HiloOpenCloseSeries, Category]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>
Series customization
In the hiloOpenClose
series, the bullFillColor
property is used to fill the segment when the open value is greater than the close value, while the bearFillColor
property is used to fill the segment when the open value is less than the close value. By default, bullFillColor
is set to #e74c3d and bearFillColor
is set to #2ecd71.
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close' bearFillColor='red' bullFillColor='green'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ 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 }
];
const primaryXAxis = {
title: 'Month',
valueType: 'Category'
};
const primaryYAxis = {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
};
const title = "Financial Analysis";
provide('chart', [HiloOpenCloseSeries, Category]);
</script>
<style>
#container {
height: 350px;
}
</style>
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close' bearFillColor='red' bullFillColor='green'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
'ejs-chart': ChartComponent,
'e-series-collection': SeriesCollectionDirective,
'e-series': SeriesDirective
},
data() {
return {
seriesData: [
{ 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 }
],
primaryXAxis: {
title: 'Month',
valueType: 'Category'
},
primaryYAxis: {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
},
title: "Financial Analysis"
};
},
provide: {
chart: [HiloOpenCloseSeries, Category]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>
Empty points
Data points with null
or undefined
values are considered empty. Empty data points are ignored and not plotted on the chart.
Mode
Use the mode
property to define how empty or missing data points are handled in the series. The default mode for empty points is Gap
.
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close' :emptyPointSettings='emptyPointSettings'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ 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: null, low: 110, close: 150 },
{ x: 'Apr', open: 160, high: 180, low: 120, close: 140 },
{ x: 'May', open: 150, high: 170, low: 110, close: 130 }
];
const primaryXAxis = {
title: 'Month',
valueType: 'Category'
};
const primaryYAxis = {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
};
const title = "Financial Analysis";
provide('chart', [HiloOpenCloseSeries, Category]);
const emptyPointSettings = {
mode: 'Average'
};
</script>
<style>
#container {
height: 350px;
}
</style>
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close' :emptyPointSettings='emptyPointSettings'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
'ejs-chart': ChartComponent,
'e-series-collection': SeriesCollectionDirective,
'e-series': SeriesDirective
},
data() {
return {
seriesData: [
{ 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: null, low: 110, close: 150 },
{ x: 'Apr', open: 160, high: 180, low: 120, close: 140 },
{ x: 'May', open: 150, high: 170, low: 110, close: 130 }
],
primaryXAxis: {
title: 'Month',
valueType: 'Category'
},
primaryYAxis: {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
},
title: "Financial Analysis",
emptyPointSettings: {
mode: 'Average'
}
};
},
provide: {
chart: [HiloOpenCloseSeries, Category]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>
Fill
Use the fill
property to customize the fill color of empty points in the series.
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close' :emptyPointSettings='emptyPointSettings'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ 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: null, low: 110, close: 150 },
{ x: 'Apr', open: 160, high: 180, low: 120, close: 140 },
{ x: 'May', open: 150, high: 170, low: 110, close: 130 }
];
const primaryXAxis = {
title: 'Month',
valueType: 'Category'
};
const primaryYAxis = {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
};
const title = "Financial Analysis";
provide('chart', [HiloOpenCloseSeries, Category]);
const emptyPointSettings = {
mode: 'Average',
fill: 'blue'
};
</script>
<style>
#container {
height: 350px;
}
</style>
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close' :emptyPointSettings='emptyPointSettings'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
'ejs-chart': ChartComponent,
'e-series-collection': SeriesCollectionDirective,
'e-series': SeriesDirective
},
data() {
return {
seriesData: [
{ 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: null, low: 110, close: 150 },
{ x: 'Apr', open: 160, high: 180, low: 120, close: 140 },
{ x: 'May', open: 150, high: 170, low: 110, close: 130 }
],
primaryXAxis: {
title: 'Month',
valueType: 'Category'
},
primaryYAxis: {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
},
title: "Financial Analysis",
emptyPointSettings: {
mode: 'Average',
fill: 'blue'
}
};
},
provide: {
chart: [HiloOpenCloseSeries, Category]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>
Events
Series render
The seriesRender
event allows you to customize series properties, such as data, fill, and name, before they are rendered on the chart.
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis' :seriesRender='seriesRender'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ 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 }
];
const primaryXAxis = {
title: 'Month',
valueType: 'Category'
};
const primaryYAxis = {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
};
const title = "Financial Analysis";
provide('chart', [HiloOpenCloseSeries, Category]);
const seriesRender = function (args) {
args.series.bearFillColor = '#ff6347';
args.series.bullFillColor = '#009cb8';
};
</script>
<style>
#container {
height: 350px;
}
</style>
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis' :seriesRender='seriesRender'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
'ejs-chart': ChartComponent,
'e-series-collection': SeriesCollectionDirective,
'e-series': SeriesDirective
},
data() {
return {
seriesData: [
{ 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 }
],
primaryXAxis: {
title: 'Month',
valueType: 'Category'
},
primaryYAxis: {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
},
title: "Financial Analysis"
};
},
provide: {
chart: [HiloOpenCloseSeries, Category]
},
methods: {
seriesRender: function (args) {
args.series.bearFillColor = '#ff6347';
args.series.bullFillColor = '#009cb8';
}
}
};
</script>
<style>
#container {
height: 350px;
}
</style>
Point render
The pointRender
event allows you to customize each data point before it is rendered on the chart.
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis' :pointRender='pointRender'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ 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 }
];
const primaryXAxis = {
title: 'Month',
valueType: 'Category'
};
const primaryYAxis = {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
};
const title = "Financial Analysis";
provide('chart', [HiloOpenCloseSeries, Category]);
const pointRender= function (args) {
if (args.point.index % 2 !== 0) {
args.fill = '#ff6347';
}
else {
args.fill = '#009cb8';
}
};
</script>
<style>
#container {
height: 350px;
}
</style>
<template>
<div id="app">
<ejs-chart id="container" :title='title' :primaryXAxis='primaryXAxis' :primaryYAxis='primaryYAxis' :pointRender='pointRender'>
<e-series-collection>
<e-series :dataSource='seriesData' type='HiloOpenClose' xName='x' high='high' low='low' open='open' close='close'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, HiloOpenCloseSeries, Category } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
'ejs-chart': ChartComponent,
'e-series-collection': SeriesCollectionDirective,
'e-series': SeriesDirective
},
data() {
return {
seriesData: [
{ 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 }
],
primaryXAxis: {
title: 'Month',
valueType: 'Category'
},
primaryYAxis: {
title: 'Price in Dollar',
minimum: 60,
maximum: 200,
interval: 20,
labelFormat: '${value}'
},
title: "Financial Analysis"
};
},
provide: {
chart: [HiloOpenCloseSeries, Category]
},
methods: {
pointRender: function (args) {
if (args.point.index % 2 !== 0) {
args.fill = '#ff6347';
}
else {
args.fill = '#009cb8';
}
}
}
};
</script>
<style>
#container {
height: 350px;
}
</style>