小提琴:http://jsfiddle.net/jakelauer/ZENuS/Highcharts:只有动画饼大小与圆环图/防止innersize动画
Highcharts JS调用:
$(function() {
$('div').highcharts({
chart: {
backgroundColor: 'rgba(0,0,0,0)',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
width: 500,
height: 500,
margin: [0, 0, 0, 0]
},
title: {
text: null
},
plotOptions: {
pie: {
minSize: 0,
size: 500,
animation: {
duration: 5000,
easing: 'linear'
}
}
},
series: [{
type: 'pie',
innerSize: 486,
data: [1]
}]
});
});
正如你可以在小提琴看到,而图表增长,线条的粗细以及它占据的圆圈的百分比。我希望线条始终保持相同的厚度,并且只会改变它填充的圆的多少。这可能吗?