The Vue Range Column Chart is used to show variation in the data values for a given time. These charts support UI customization.
Mark data points with built-in shapes: circles, rectangles, ellipses, vertical lines, horizontal lines, diamonds, triangles, pentagons, crosses, and pluses. In addition to these shapes, use images to make the points more attractive.
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 a given angle.
The Vue Range Column Chart provides an option to customize the spacing between two columns and the width of the column.
Handle missing data elegantly with empty points support.
The Vue Range Column Chart chart can be transposed vertically to view the data from a different perspective.
Customize the color and border of the Vue Range Column Chart using built-in APIs.
Easily get started with Vue Range Column using a few simple lines of Vue code, as demonstrated below. Also explore our Vue Range Column Chart Example that shows you how to render and configure the range column chart component.
<template>
<div id="app">
<ejs-chart id="container" :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='RangeColumn' xName='x' high='high' low='low'>
</e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartPlugin, RangeColumnSeries, DateTime} from "@syncfusion/ej2-charts";
Vue.use(ChartPlugin);
let series1 = [];
let value = 35;
let point1;
for (let i = 1; i < 360; i++) {
if (Math.random() > .5) {
value += Math.random();
} else {
value -= Math.random();
}
point1 = {
x: new Date(2015, 0, i),
high: value, low: value - 10
};
series1.push(point1);
}
export default {
data() {
return {
seriesData: series1,
primaryXAxis: {
valueType: 'DateTime'
},
};
},
provide: {
chart: [RangeColumnSeries, DateTime]
}
};
</script>
<!DOCTYPE html>
<html>
<body>
<div id="app"></div>
</body>
</html>
Learn the available options to customize JavaScript Range Column chart.
Range Column Chart API Reference
Explore the JavaScript Range Column chart APIs.