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.
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.
You achieve this by simply chart.leftAxesContainer.layout = "vertical"
chart.bottomAxesContainer.layout = "horizontal";
in the demo below:
See the Pen Horizontally stacked axes by amCharts team (@amcharts) on CodePen.
This way you can display multiple series with a common category axis without subjecting your viewers to a bunch of overlapping series.