Встроенный параметр zingchat "thousands-separator":","
отображает значения валют в миллионах, таких как 1 236 024. Тем не менее, я пытаюсь выполнить этот вывод в индийской системе чисел, такой как 12,36,024. Вот мой текущий код:
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.zingchart.com/zingchart.min.js"></script>
</head>
<body>
<div id="myChart"></div>
<script>
var myConfig = {
"graphset":[
{
"type":"bar",
"plotarea":{
"margin-left":"8%"
},
"scale-y":{
"max-value":"8000000",
"format":"$%v",
"negation":"currency",
"thousands-separator":",",
"locale":"en-IN"
},
"plot":{
"value-box":{
"text":"?%v",
"negation":"currency",
"thousands-separator":","
}
},
"series": [
{
"values": [
3000000,
6426560,
7201440
],
"text": "apples"
},
{
"values": [
1236020,
4424580,
3659450
],
"text": "oranges"
}
]
}
]
};
zingchart.render({
id : 'myChart',
data : myConfig,
height : "100%",
width: "100%"
});
</script>
<script src="zingchart.min.js"></script>
</body>
</html>
javascript,jquery,charts,zingchart,
Встроенный параметр zingchat "thousands-separator":","
отображает значения валют в миллионах, таких как 1 236 024. Тем не менее, я пытаюсь выполнить этот вывод в индийской системе чисел, такой как 12,36,024. Вот мой текущий код:
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.zingchart.com/zingchart.min.js"></script>
</head>
<body>
<div id="myChart"></div>
<script>
var myConfig = {
"graphset":[
{
"type":"bar",
"plotarea":{
"margin-left":"8%"
},
"scale-y":{
"max-value":"8000000",
"format":"$%v",
"negation":"currency",
"thousands-separator":",",
"locale":"en-IN"
},
"plot":{
"value-box":{
"text":"?%v",
"negation":"currency",
"thousands-separator":","
}
},
"series": [
{
"values": [
3000000,
6426560,
7201440
],
"text": "apples"
},
{
"values": [
1236020,
4424580,
3659450
],
"text": "oranges"
}
]
}
]
};
zingchart.render({
id : 'myChart',
data : myConfig,
height : "100%",
width: "100%"
});
</script>
<script src="zingchart.min.js"></script>
</body>
</html>
00JavaScript, JQuery, графики, zingchart,