Highcharts - 堆积条形图 - 移除轴

时间:2014-01-18 12:38:34

标签: jquery highcharts

如何从堆积条形图中删除轴。

我已经尝试exporting: { enabled: false },,但它不起作用?

这是jsfiddle

2 个答案:

答案 0 :(得分:1)

我得到了答案。这是

xAxis: {
            tickWidth: 0,
            lineWidth:0,
            gridLineWidth: 0,
            labels:{
                enabled:false
            }
        },
        yAxis: {
            title: {
              text: ''
            },
            tickWidth: 0,
            lineWidth:0,
            gridLineWidth: 0,
            labels:{
                enabled:false
            }
        },

答案 1 :(得分:0)

试试这个

    xAxis: {
        gridLineWidth: 0,
        labels: {
           enabled: false
        }
    },
    yAxis: {
        gridLineWidth: 0,
        labels: {
           enabled: false
        }
    },