Axis Grid and Ranges over Series

The order of the universe is this: axis elements like grid and ranges go under series. This short tutorial will explain how to change that order.

Since there's no setting for that, the only way to do that is to move seriesContainer to back:

chart.seriesContainer.zIndex = -1;
chart.seriesContainer.zIndex = -1;
{
// ...
"seriesContainer": {
"zIndex": -1
}
}

See the Pen amCharts 4: Axis grid over series by amCharts (@amcharts) on CodePen.11061

Posted in Uncategorized