系列名称为highcharts

时间:2015-01-24 18:36:35

标签: javascript

我有两个问题。

1)我正在尝试添加特定的系列名称,而不是当前的标题,“系列1”,“系列2”...如何编辑javascript以便我可以包含单个标题?

2)在同一图表中,如何添加X,Y和Z轴标题? Z轴是气泡的大小。

感谢您的帮助。

这是小提琴

http://jsfiddle.net/pnbnmew4/1/

$(function () {
$('#container').highcharts({

    chart: {
        type: 'bubble',
        zoomType: 'xy'
    },

    title: {
        text: 'Recovery foods'
    },

    series: [{

        data: [[930, 58, 100], [94, 74, 60], [68, 76, 58], [64, 87, 56], [68, 27, 73], [74, 99, 42], [7, 93, 87], [51, 69, 40], [38, 23, 33], [57, 86, 31]]
    }, {
        data: [[25, 10, 87], [2, 75, 59], [11, 54, 8], [86, 55, 93], [5, 3, 58], [90, 63, 44], [91, 33, 17], [97, 3, 56], [15, 67, 48], [54, 25, 81]]
    }, {
        data: [[25, 10, 87], [2, 75, 59], [11, 54, 8], [86, 55, 93], [5, 3, 58], [90, 63, 44], [91, 33, 17], [97, 3, 56], [15, 67, 48], [54, 25, 81]]
    },
             {
        data: [[47, 47, 21], [20, 12, 4], [6, 76, 91], [38, 30, 60], [57, 98, 64], [61, 17, 80], [83, 60, 13], [67, 78, 75], [64, 12, 10], [30, 77, 82]]
    }]
});

});

1 个答案:

答案 0 :(得分:0)

如果我了解您所要求的内容,则需要自定义xAxisyAxistooltipseries属性,如下所示:

        yAxis: {
            title: {
                text: "Y-Axis Label"
            }
        },
        xAxis: {
            title: {
                text: "X-Axis Label"
            }
        },
        tooltip: {
            formatter: function() {
                return "Size of bubble is " + this.y;
            }
        },
        series: [{
            name: "Specific Series 1",
            ...

请参阅here了解工作小提琴。