Highcharts:如何确保两个柱系列从X轴上的相同点开始(可视)?

时间:2013-07-02 06:06:38

标签: highcharts

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

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

1 个答案:

答案 0 :(得分: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/