如何在馅饼amchart中制作相片?

时间:2016-07-15 08:56:51

标签: javascript jquery charts amcharts

演示和我的代码是这样的:https://jsfiddle.net/oscar11/4qdan7k7/6/

我用:

"legend": {
   "useGraphSettings": true
}

但它不起作用。结果如下:enter image description here

解决我问题的任何解决方案?

1 个答案:

答案 0 :(得分:1)

您应该删除useGraphSettings,因为您的设置中没有graphs

AmCharts.makeChart("chartdiv", {
  "type": "pie",
  "theme": "light",
  "dataProvider": chartData,
  "valueField": "litres",
  "titleField": "country",
  "export": {
    "enabled": true
  },
  "legend": {},
});

jsfiddle