无法在高图中隐藏x轴

时间:2014-01-09 02:34:30

标签: javascript

Demo jsfiddle

$(function () {
    $('#container').highcharts({
        chart: {
        },
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        yAxis: {
            gridLineColor: '#197F07',
            gridLineWidth: 0,
            lineWidth:1,
             plotLines: [{
                color: '#FF0000',
                width: 1,
                value: 0
            }]
        },

        series: [{
            data: [-2,1,2,3,-3,2,1]        
        }]
    });
});

嗨,我正在从事高图(线路)工作。我想隐藏x轴,只有水平线为0 在上图中,我想要一条水平线仅为0,而不是-4

有办法吗?

1 个答案:

答案 0 :(得分:1)

将此添加到您的x轴配置:

labels: {
    enabled: false
},
minorTickLength: 0,
tickLength: 0,
lineColor: 'transparent'

您可以在这里工作:http://jsfiddle.net/edgarinvillegas/ssQVJ/8/