0

所以我在时间轴上绘制了两个列系列。一个系列中的列比其他系列更宽(大约 3X)。

所以我想要的是两个系列的列应该完全重叠,但是那没有发生。较窄的列从较宽的列的中心开始。

4

1 回答 1

0

看起来您希望每 4 个季度列与年度列对齐。没有发生这种情况的原因是年度列以年份为中心,而不是从年份开始。您可以使用 pointPlacement 选项进行调整:

series: [
{
    name: 'Yearly Returns',
    color: 'rgba(167, 169, 172, 0.3)',
    data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
    pointWidth: 62,
          enableMouseTracking: false,
          pointPlacement:'between',
          pointInterval: 365 * 24 * 3600 * 1000  // yearly           
},

http://api.highcharts.com/highcharts#plotOptions.column.pointPlacement

http://jsfiddle.net/wMhJn/

于 2013-07-02T08:20:35.310 回答