Palettes

AnyChart uses palettes for auto coloring. There are 4 types of palettes: Color palettes, Hatch palettes and Marker palettes, each palette is a list of predefined items: colors, hatch fills or markers.

You can create any number of your own palettes, give them the unique names and apply where needed, see distinctColors(), hatchFills(), markers() and rangeColors() for that.

Also, you can use predefined AnyChart distinct color palettes from anychart.palettes:

// set palette to a chart:
chart.palette(anychart.palettes.defaultPalette);

// Other available palettes:
// anychart.palettes.earth 
// anychart.palettes.monochrome 
// anychart.palettes.provence 
// anychart.palettes.morning 
// anychart.palettes.coffee 
// anychart.palettes.wines 
// anychart.palettes.pastel 
// anychart.palettes.blue 
// anychart.palettes.glamour 
// anychart.palettes.sea

Here is a sample of a Funnel chart. Click slices to change palettes:

Playground