我高圖表值等1000000我怎樣才能把它顯示在適當位置的適當的逗號狀「10,000,000」高圖表 - 數字定位
我寫的正則表達式等 /(\ d +)(\ d {3})/
它工作正常,正常function..but當我使用這個高圖表則返回undefined
我高圖表值等1000000我怎樣才能把它顯示在適當位置的適當的逗號狀「10,000,000」高圖表 - 數字定位
我寫的正則表達式等 /(\ d +)(\ d {3})/
它工作正常,正常function..but當我使用這個高圖表則返回undefined
你可以像軸標籤或工具提示格式化使用http://api.highcharts.com/highcharts#Highcharts.numberFormat。此外,您可以使用lang參數http://api.highcharts.com/highcharts#lang.thousandsSep
您可以使用formatter對標籤,xAxis.labels,yAxis,標籤,工具提示進行自定義格式化。
yAxis:{
labels:{
formatter: function(){
}
}
}
您也可以在該格式化函數中使用正則表達式概念。
這裏是我已經應用在y軸我格式化一個例子標籤http://jsfiddle.net/2Jwsn/
我希望這將有助於你
您還可以使用「Format String」
工具提示:
tooltip: {
pointFormat: "Value: {point.y:,.0f}"
}
對於x/y標籤:個
yAxis: {
labels: {
format: '{value:,.0f}'
}
}
標籤:
plotOptions: {
bar: {
dataLabels: {
enabled: true,
format : '{y:,.0f}'
}
}
}
其中圖?一些代碼請。 –