我在这里有这个小提琴http://jsfiddle.net/rg6wczo6/。我基本上格式化plotoptions以m和k格式显示我的数字,y轴为y轴。我也希望将图表作为饼图,但我得到一个错误,说不能读取未定义的属性'tickInterval',这表示yAxis。 有人可以告诉我如何为饼图制作格式化工作。
var options = {
chart: {
renderTo: 'drillDown'
},
title: {
text: 'Healthcare Operations'
},
subtitle: {
text: 'Facility Revenue'
},
plotOptions: {
series: {
dataLabels: {
enabled: true,
formatter:
function () {
var ret = '',
multi,
axis = this.series.yAxis,
numericSymbols = ['k', 'M', 'G', 'T', 'P', 'E'],
i = numericSymbols.length;
while (i-- && ret === '') {
multi = Math.pow(1000, i + 1);
if (axis.tickInterval >= multi && numericSymbols[i] !== null) {
ret = Highcharts.numberFormat(this.y / multi, -1) + numericSymbols[i];
}
}
return this.point.name + ":" + ret;
}
}
}
},
series: [{
name: 'Facility',
colorByPoint: true,
data: mainData
}],
drilldown: {
series: [ {
name: 'Jacobs Medical Park',
id: 'Jacobs Medical Park',
data: jacobsMedicalParkData
}, {
name: 'Blue Star',
id: 'Blue Star',
data: blueStarData
}, {
name: 'Cigna',
id: 'Cigna',
data: cignaData
},
{
name: 'Blue Cross',
id: 'Blue Cross',
data: blueCrossData
}
]
}
}
options.chart.renderTo = 'drillDown';
options.chart.type = 'column';
var chart1 = new Highcharts.Chart(options);
// Pie
options.chart.renderTo = 'drillDown1';
options.chart.type = 'pie';
var chart2 = new Highcharts.Chart(options);
由于
答案 0 :(得分:2)
使用找到的函数here将数字转换为公制表示法字符串:
function intToString (value) {
var suffixes = ["", "k", "m", "b","t"];
var suffixNum = Math.floor((""+value).length/3);
var shortValue = parseFloat((suffixNum != 0 ? (value / Math.pow(1000,suffixNum)) : value).toPrecision(2));
if (shortValue % 1 != 0) shortNum = shortValue.toFixed(1);
return shortValue+suffixes[suffixNum];
}
你可以这样做:
plotOptions: {
pie: {
dataLabels: {
enabled: true,
formatter: function() {
console.log(this);
return '<b>' + this.key + '</b>: ' + intToString(this.y);
}
}
},
您可以通过调用此函数以及代码重用/可读性来替换条形图的现有代码。
示例jsFiddle。
答案 1 :(得分:0)
如果我做对了,你想要删除切片的名称和值吗? 如果我是对的,请将以下内容添加到plotOptions中。
pie: {
enabled: true,
formatter: function(){
If(this.y >= 1000){
return this.name + ' : ' + this.y/1000 + 'k';
}
return this.name + ' : ' + this.y;
}
}
}