Linear gauge provide supports for internationalization for below gauge elements.
For more information about number and date formatter you can refer
internationalization
.
Globalization
Globalization is the process of designing and developing an component that works in different cultures/locales. Internationalization library is used to globalize number in LinearGauge component
using format
property in labelStyle
.
Numeric Format
In the below example axis labels are globalized
to EUR.
var gauge = new ej.lineargauge.LinearGauge({
format: 'c',
axes: [{
minimum: 0,
maximum: 120,
majorTicks: {
interval: 10,
height: 10
},
minorTicks: {
interval: 5,
height: 5
},
labelStyle: {
//Label format as currency
format: 'c'
}
}]
}, '#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">
<link href="//cdn.syncfusion.com/ej2/ej2-popups/styles/material.css" rel="stylesheet">
<script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="element"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>