在更新我的一些hightcharts图表时,我遇到了highcharts-ng指令的问题。当我使用这个语法时,图表更新像魅力,但似乎没有显示任何我的数据标签:
$scope.chartRonConfig = {
chart: {
plotBackgroundColor: null,
plotBorderWidth: 0,
plotShadow: false
},
title: {
text: 'Browser<br>skjdfhsjdkf<br>2019',
align: 'center',
verticalAlign: 'middle',
y: 40
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
dataLabels: {
enabled: true,
distance: -50,
style: {
fontWeight: 'bold',
color: 'white'
}
},
startAngle: -90,
endAngle: 90,
center: ['50%', '75%']
}
},
series: [{
type: 'pie',
name: 'Browser share',
innerSize: '50%',
data: [
['Firefox', 10.38],
['IE', 56.33],
['Chrome', 24.03],
['Safari', 4.77],
['Opera', 0.91],
{
name: 'Proprietary or Undetectable',
y: 0.2,
dataLabels: {
enabled: false
}
}
]
}]
};
但是当我使用这个语法时:
$scope.chartRonConfig = Highcharts.chart('RonContainer', { // same config }
什么都没有更新。
视图非常简单:
<highchart id="RonContainer" config="chartRonConfig"></highchart>
我不知道我在这里失踪了什么。任何帮助将不胜感激。
答案 0 :(得分:0)
谢谢你的关注,我确实用早期的highcharts版本解决了它,而不是使用5.0.12我使用5.0.11并且它确实解决了我的问题我认为这是由于highcharts-ng代码不支持最新版本的highcharts。
谢谢。
此致 Marouan