Skip to content Skip to sidebar Skip to footer

How To Change Amcharts Pie Themes?

My HTML code is like this :
My Javascript code is like this : var chart; var legend; var chartData = [

Solution 1:

You need to specify the theme option while initializing as below and also make use of makeChart directly instead of Amcharts.AmPieChart(). Your updated code would be:

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

UPDATED FIDDLE

Post a Comment for "How To Change Amcharts Pie Themes?"