自1个月以来,我对highcharts有疑问。我的代码在1个月内无效。这告诉我:
未捕获的TypeError:p不是函数 (匿名函数)@ highcharts-more.js:21 (匿名函数)@ highcharts-more.js:26 (匿名函数)@ highcharts-more.js:8 (匿名函数)@ highcharts-more.js:8
我使用hightCharts,我不明白为什么自1个月以来这不起作用
$('#' + idEspaceModule).highcharts({
series : donnees,
chart: {
polar: true,
type: 'column'
},
title: {
text: ''
},
pane: {
size: '70%'
},
legend: {
align: 'right',
verticalAlign: 'top',
y: 100,
layout: 'vertical'
},
xAxis: {
tickmarkPlacement: 'on',
categories: categories
},
yAxis: {
min: 0,
endOnTick: false,
showLastLabel: true,
title: {
text: 'Nombre'
},
labels: {
formatter: function () {
return this.value;
}
},
reversedStacks: false
},
tooltip: {
valueSuffix: ''
},
plotOptions: {
series: {
stacking: 'normal',
shadow: false,
groupPadding: 0,
pointPlacement: 'on'
}
}
});
感谢的