演示和我的代码是这样的:https://jsfiddle.net/oscar11/4qdan7k7/6/
我用:
"legend": {
"useGraphSettings": true
}
解决我问题的任何解决方案?
答案 0 :(得分:1)
您应该删除useGraphSettings
,因为您的设置中没有graphs
:
AmCharts.makeChart("chartdiv", {
"type": "pie",
"theme": "light",
"dataProvider": chartData,
"valueField": "litres",
"titleField": "country",
"export": {
"enabled": true
},
"legend": {},
});