Chaning the Slice color in PieChart widget

1
Hello guys,    Is there anyone that knows how to change slice color of PieChart without custom .scss file?  There is option within widget "Slice color" and it looks like, should be related to slice color of pie chart, however, nor I don't know how to use it properly, or it doesn't work as well.   Thanks. 
asked
1 answers
1

You could use the advanced tab to change the color scheme.

 

 

this is a demo for mx8, but it's nice to test things with https://mydemoversion8-sandbox.mxapps.io/p/charts

 

change the data tab to:

[
  {
    "hoverinfo": "none",
    "type": "pie",
    "sort": false,
    "values": [
      19,
      26,
      55
    ],
    "labels": [
      "Residential",
      "Non-Residential",
      "Utility"
    ],
    "marker": {
      "colors": [
        "red",
        "yellow",
        "green"
      ]
    }
  }
]

image.png

answered