How can I help you?
Internationalization in EJ2 TypeScript Chart control
3 Feb 20264 minutes to read
Chart provides support for internationalization for the following elements:
- Data label
- Axis label
- Tooltip
For more information about number and date formatting, see the internationalization guide: internationalization.
Globalization
Globalization is the process of designing and developing a component that works in different cultures/locales. Use the internationalization library to localize numbers, dates, and times in the Chart component, for example by using the axis labelFormat property.
Numeric Format
The example below globalizes axis, point, and tooltip labels to the EUR currency format.
import { Chart, ColumnSeries, DataLabel, Tooltip } from '@syncfusion/ej2-charts';
Chart.Inject(ColumnSeries, DataLabel, Tooltip);
import { loadCldr, L10n, setCulture, setCurrencyCode } from '@syncfusion/ej2-base';
setCulture('de');
setCurrencyCode('EUR');
let chartData: Object[] = [
{ x: 1900, y: 4, y1: 2.6 }, { x: 1920, y: 3.0, y1: 2.8 },
{ x: 1940, y: 3.8, y1: 2.6}, { x: 1960, y: 3.4, y1: 3 },
{ x: 1980, y: 3.2, y1: 3.6 }, { x: 2000, y: 3.9, y1: 3 }
]
let chart: Chart = new Chart({
primaryXAxis: {
title: 'Year',
edgeLabelPlacement: 'Shift'
},
primaryYAxis: {
title: 'Sales Amount in Millions',
//Label format as currency
labelFormat: 'c'
},
series:[{
dataSource: chartData,
xName: 'x', yName: 'y',
name: 'Product X', type: 'Column',
marker: { dataLabel: { visible: true }}
},{
dataSource: chartData,
xName: 'x', yName: 'y1',
name: 'Product Y', type: 'Column',
marker: { dataLabel: { visible: true }}
}],
title: 'Average Sales Comparison',
tooltip: { enable: true, format: '${series.name} <br>${point.x} : ${point.y}'}
}, '#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>