Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://jsfiddle.net/3p6FC/
デモローソク足/棒グラフを使用し、マージンと間隔をすべて0に設定し、次のセットを使用しました。
chart.height = 325 yAxis[0].height = 200 yAxis[1].height = 50 yAxis[1].top = 250
高さを250に設定すると、x軸ラベルを下にレンダリングするための十分なスペースが得られると思いました。残念ながら、それらは表示されていません。私がここで間違っていることについて誰かが洞察を提供できますか?
xAxis のオフセットを設定できます。
xAxis: { offset: -25 /* 325 - 250 - 50*/ },
例: http://jsfiddle.net/3p6FC/1/