- Error bar
- Customizing error bar
- Error bar mode
- Error bar direction
- Customizing error bar cap
- Customizing error bar color
- Events
- See also
Contact Support
Error bar Chart in EJ2 TypeScript control
13 Dec 202424 minutes to read
Error bar
Error bars are graphical representations of the variability of data and are used on graphs to indicate the error or uncertainty in a reported measurement.
To render error bars for the 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 visibility: Set the
visible
property to true for the error bars to be displayed. -
Inject the ErrorBar module: Use the
Chart.Inject(ErrorBar)
method to inject theErrorBar
module into your chart. This step is essential, as it ensures that the necessary functionalities for rendering error bar series are available in your chart.
import { Chart, LineSeries, ErrorBar } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
errorBar: {
visible: true
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)'
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8 },
{ x: 2007, y: 7.2 },
{ x: 2008, y: 6.8 },
{ x: 2009, y: 10.7 },
{ x: 2010, y: 10.8 },
{ x: 2011, y: 9.8 }
];
Customizing error bar
To customize the error bar type, set the error bar type
to Custom
, and then change the horizontal or vertical positive and negative error values for the error bar.
import { Chart, LineSeries, ErrorBar } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
errorBar: {
visible: true,
type: 'Custom',
mode: 'Both',
verticalPositiveError: 2,
horizontalPositiveError: 1,
verticalNegativeError: 2,
horizontalNegativeError: 1
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)'
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8 },
{ x: 2007, y: 7.2 },
{ x: 2008, y: 6.8 },
{ x: 2009, y: 5.7 },
{ x: 2010, y: 8.8 },
{ x: 2011, y: 9.8 }
];
Error bar mode
The error bar mode is used to define whether the error bar line is drawn horizontally, vertically or on both sides. To change the error bar mode, use the mode
option.
import { Chart, LineSeries, ErrorBar } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
errorBar: {
visible: true,
mode: 'Horizontal'
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)'
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8 },
{ x: 2007, y: 7.2 },
{ x: 2008, y: 6.8 },
{ x: 2009, y: 5.7 },
{ x: 2010, y: 8.8 },
{ x: 2011, y: 9.8 }
];
Error bar direction
To change the direction of the error bars to plus, minus, or both sides, use the direction
property.
import { Chart, LineSeries, ErrorBar } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
errorBar: {
visible: true,
mode:'Vertical',
direction:'Minus'
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)'
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8 },
{ x: 2007, y: 7.2 },
{ x: 2008, y: 6.8 },
{ x: 2009, y: 10.7 },
{ x: 2010, y: 10.8 },
{ x: 2011, y: 9.8 }
];
Customizing error bar cap
To customize the length, width, opacity, and fill color of the error bar caps, you can use the errorBarCap
property.
import { Chart, LineSeries, ErrorBar } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
errorBar: {
visible: true,
errorBarCap:{
length:10,
width:10,
color:'#0000ff'
}
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)'
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8 },
{ x: 2007, y: 7.2 },
{ x: 2008, y: 6.8 },
{ x: 2009, y: 10.7 },
{ x: 2010, y: 10.8 },
{ x: 2011, y: 9.8 }
];
Customizing error bar color
To customise the error bar color for individual errors, use the errorBarColorMapping
property. You can also customize the vertical error, horizontal error, horizontal negative and positive error, and vertical negative and positive error for an individual point using the verticalError
, horizontalError
, horizontalNegativeError
, horizontalPositiveError
, verticalNegativeError
, and verticalPositiveError
properties.
import { Chart, LineSeries, ErrorBar } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
errorBar: {
visible: true,
errorBarColorMapping: 'color',
verticalError: 'error'
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)'
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8, color: 'red', error: 4 },
{ x: 2007, y: 7.2, color: 'blue', error: 3 },
{ x: 2008, y: 6.8, color: 'green', error: 2 },
{ x: 2009, y: 10.7, color: 'orange', error: 1 },
{ x: 2010, y: 8.8, color: 'yellow', error: 3 },
{ x: 2011, y: 9.8, color: 'grey', error: 2 }
];
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.
import { Chart, LineSeries, ErrorBar, ISeriesRenderEventArgs } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
width: 2,
errorBar: {
visible: true
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)',
seriesRender: (args: ISeriesRenderEventArgs) => {
args.fill = '#ff6347';
}
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8 },
{ x: 2007, y: 7.2 },
{ x: 2008, y: 6.8 },
{ x: 2009, y: 10.7 },
{ x: 2010, y: 10.8 },
{ x: 2011, y: 9.8 }
];
Point render
The pointRender
event allows you to customize each data point before it is rendered on the chart.
import { Chart, LineSeries, ErrorBar, IPointRenderEventArgs } from '@syncfusion/ej2-charts';
import { chartData } from './datasource.ts';
Chart.Inject(LineSeries, ErrorBar);
let chart: Chart = new Chart({
primaryXAxis: {
minimum: 2005,
maximum: 2012,
interval: 1,
title: 'Year'
},
primaryYAxis: {
minimum: 3, maximum: 12,
interval: 1, title: 'Percentage',
labelFormat: '{value}%'
},
series: [{
dataSource: chartData,
xName: 'x', yName: 'y',
width: 2,
errorBar: {
visible: true
},
marker: {
visible: true
},
animation: { enable: false },
type: 'Line'
}],
title: 'Unemployment rate (%)',
pointRender: (args: IPointRenderEventArgs) => {
if (args.point.index % 2 !== 0) {
args.fill = '#ff6347';
}
else {
args.fill = '#009cb8';
}
}
}, '#element');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element'></div>
</div>
</body>
</html>
export let chartData: Object[] = [
{ x: 2006, y: 7.8 },
{ x: 2007, y: 7.2 },
{ x: 2008, y: 6.8 },
{ x: 2009, y: 10.7 },
{ x: 2010, y: 10.8 },
{ x: 2011, y: 9.8 }
];