Highcharts列和面积图,如何使面积图走到边缘?

时间:2014-05-12 19:29:19

标签: javascript charts highcharts

我有一个图表,它是在面积图上面呈现的柱形图。这是一个例子:

http://jsfiddle.net/78p42/4/

有没有办法让面积图的外边缘与柱形图中第一列和最后一列的外边缘相匹配?如果你不确定我的意思,请看我创建的这张图片。

Example

我认为在区域图的plotOptions中可以有一种方法,但我找不到方法。

        plotOptions: {
            column: {
                borderWidth: 0,
                pointPadding: 0.1,
                groupPadding: 0,
                states: {
                    hover: {
                        enabled: false
                    }
                }
            },
            area: {
                lineWidth: 0,
                marker: {
                    enabled: false
                },
                states: {
                    hover: {
                        enabled: false
                    }
                },
                pointPlacement: 0 // I have noticed that this will shift the whole graph over, but then there is a huge gap on one side of the graph
            }
        },

感谢您的时间。

0 个答案:

没有答案