Ich verwende stacked column highchart. Ich bekomme wenig Wert in Spalte und Tooltip. Jetzt möchte ich diesen Wert im indischen Format mit Kommatrennzeichen anzeigen. Angenommen, ich habe einen Wert wie 123456789.So möchte ich diesen Wert im Format 12,34,56,789 anzeigen. Wie kann ich das machen? Bitte teilen Sie mit mir, wenn irgendein Körper eine Idee hat.Wie fügt man Komma in Stacked Column Highchart im indischen Format hinzu?
Ich versuchte dies unter dem Code.
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});
aber es gibt 123.456.789 Format, möchte ich so etwas wie 12,34,56,789. Das indische Format.
Meine Codes sind unten:
function draw_charts(amount, interest , year)
{
/*Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});*/
$('#chart_area').highcharts({
chart: {
type: 'column',
backgroundColor: 'transparent'
},
title: {
text: 'Year wise break-up'
},
xAxis: {
categories: year,
title: {
text: 'Year'
}
},
yAxis: {
min: 0,
title: {
text: 'Amount'
},
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
}
}
},
legend: {
align: 'right',
x: -30,
verticalAlign: 'top',
y: -5,
floating: true,
backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || 'white',
borderColor: '#CCC',
borderWidth: 1,
shadow: false
},
tooltip: {
headerFormat: '<b>{point.x}</b><br/>',
pointFormat: '{series.name}: {point.y}<br/>Total: {point.stackTotal}'
},
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white',
style: {
textShadow: '0 0 3px black'
}
}
}
},
series: [{
name: 'Interest',
data: interest, color: '#7fb801'
},{
name: 'Principal',
data: amount, color: '#4fc1e9'
}],
exporting: { enabled: false },
credits: { enabled: false },
});
}