Multi-panel-like charts with amCharts 4

amCharts supported multiple value axes since the early versions. “Classic” multi-value-axis chart positions axes next to each other:

See the Pen Multiple value axes by amCharts team (@amcharts) on CodePen.0

With amCharts 4 you can take multi-axis charts to the next level by spreading axes vertically or horizontally:

See the Pen Stacked value axes by amCharts team (@amcharts) on CodePen.0

You achieve this by simply setting chart.leftAxesContainer.layout = "vertical" in the example above. Or chart.bottomAxesContainer.layout = "horizontal"; in the demo below:

See the Pen Horizontally stacked axes by amCharts team (@amcharts) on CodePen.0

This way you can display multiple series with a common category axis without subjecting your viewers to a bunch of overlapping series.