ASP.NET Core Range Column chart is generally used to show the variation in the data value for a given time.
Marks data points with built-in shapes such as circles, rectangles, ellipses, vertical lines, horizontal lines, diamonds, triangles, and pentagons. In addition to these shapes, use images to make the point 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 its given angle.
The range column chart provides an option to customize the spacing between two columns and the width of the column.
Handle the missed data elegantly with empty points support.
The Range Column chart can be transposed vertically to view the data in a different perspective.
Customize the color and border of the Range Column chart using built-in APIs.
import { Chart,RangeColumnSeries, DateTime } from '@syncfusion/ej2-charts';
Chart.Inject(Chart, RangeColumnSeries, DateTime);
let series1: Object[] = [];
let value: number = 35;
let point1: Object;
for (let i: number = 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);
}
let chart: Chart = new Chart({
primaryXAxis: {
valueType: 'DateTime'
},
series:[{
type: 'RangeColumn',
dataSource: series1,
xName: 'x', high: 'high', low: 'low',
}
],
}, '#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>
Learn the available options to customize ASP.NET Core Range Column chart.