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/