我有一个 highCharts 饼图,当使用小提琴时,它会在 mouseOver 上显示数据点的工具提示,以及单击 LegendItem 时的单击事件或饼图的弹出效果,但是当我插入我的代码时进入我的网站,它不适用于任何版本的 IE 或谷歌浏览器。我不知道交易是什么。这是工具提示以及点击事件,但它们在我的代码中都不起作用。
$("document").ready(
function(){
$('#container').highcharts({
chart:{
type:'pie',
height: 250,
width: 350
},
colors:[
'#5485BC', '#AA8C30', '#5C9384', '#981A37', '#FCB319', '#86A033', '#614931', '#00526F', '#594266', '#cb6828', '#aaaaab', '#a89375'
],
title:{text: null},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
showInLegend: true,
dataLabels: {
enabled: false,
formatter: function() {
return this.percentage.toFixed(2) + '%';
}
},
}
},
legend: {
enabled: true,
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
series: [{
type: 'pie',
dataLabels: {
},
data: [
['Domestic Equity', 38.5],
['International Equity', 26.85],
['Other', 15.70],
['Cash and Equivalents', 10.48],
['Fixed Income', 8.48]
]
}]
});
});
我遇到的第二个问题是我是否可以在数据中执行 switch 语句,基本上创建一个传入 1 个参数并根据参数值更改我的 data[] 值的函数?
谢谢你的帮助,尼克