问题
chart
I want to align value axis above chart and below chart. How to set axis width?
回答1:
The simplest way to go about it is to set minMarginLeft to the same number on both charts.
I.e.:
AmCharts.makeChart( "chart1", {
"type": "serial",
"minMarginLeft": 80,
// ...
} );
AmCharts.makeChart( "chart2", {
"type": "serial",
"minMarginLeft": 80,
// ...
} );
来源:https://stackoverflow.com/questions/36339718/how-to-align-value-axis-width