1

我正在使用 Highcharts,我想关闭所有标签。我制作了自己的图表,它有自己的标题和数据轴。如何使 Highcharts 提供的那些不可见?

目前,我只需要摆脱 y 轴标记,但我不确定如何。

这是我到目前为止所拥有的:

    $('#container').highcharts({
    chart: {
        type: 'area',
        backgroundColor: 'transparent'
    },

    title: {
        text: ' '
    },
    credits: {
        enabled: false
    },
    xAxis: {
        categories: [' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']
    },
    series: [{
        name: 'Rich',
        color: '#FF0000',
        data: []
    }, {
        name: 'Poor',
        data: []
    }]
});
}
4

1 回答 1

6

Highcharts 有很棒的文档,其中包含大多数东西的小提琴示例:http: //api.highcharts.com/highcharts

http://jsfiddle.net/fnHzg/

$('#container').highcharts({
    chart: {
    },
    title : {
        text: null
    },
    xAxis: {

        title: {
            enabled: false
        }
    },
    yAxis: {

        title: {
            enabled: false
        }
    },
    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]        
    }]
});

要同时关闭 yAxis 和 xAxis 标签和刻度线:

xAxis: {

    title: {
        enabled: false
    },
    labels: {
        enabled: false
    },
    tickLength: 0
},
yAxis: {

    title: {
        enabled: false
    },
    labels: {
        enabled: false
    },
    tickLength: 0
},
于 2013-09-05T15:16:47.110 回答