在highchart(z-index)

时间:2016-04-14 17:14:00

标签: highcharts

我的图表上有2个系列:

  • 列(直方图)
  • 线

我的问题是我的系列的某些值被列系列隐藏(只要两个图形合并,直方图就会切断线图)。

我怎么能确定折线图是最重要的?

1 个答案:

答案 0 :(得分:1)

使用z-index属性:

示例



$(function () {
    $('#container').highcharts({
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },

        plotOptions: {
            series: {
                lineWidth: 5
            }
        },

        series: [{
            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],
            type: 'column',
            color: 'blue',
            zIndex: 1
        }, {
            data: [216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5],
            color: 'yellow',
            zIndex: 2
        }]
    });
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<script src="http://code.highcharts.com/highcharts.js"></script>

<div id="container" style="height: 400px"></div>
&#13;
&#13;
&#13;