How to align value axis width? [closed]

余生长醉 提交于 2019-12-24 13:29:38

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!