web-dev-qa-db-ja.com

ツールチップハイチャートで複数のシリーズデータを取得する方法は?

すべての列のツールチップに複数のシリーズデータを表示したい

tooltip: {
    formatter: function() {
        return '<span style="color:#D31B22;font-weight:bold;">' +this.series.name +': '+ this.y +'<br/>'+
               '<b style="color:#D31B22;font-weight:bold;">'+this.x +'</b><span>';
    }
},

およびデータ

series: [{
    showInLegend: false,
    name: 'Total Click',
    data: [3000,200,50,4000],
    color: '#9D9D9D'
}, {
    showInLegend: false,
    name: 'Total View',
    data: [100,2000,3000,4000],
    color: '#D8D8D8'
}]

私はこのように使用していますが、ツールヒントでは一度に1つのシリーズデータのみが表示されます。このようなデータを表示したい(合計ビュー:100および合計クリック:3000)

20
Mohit Gupta

このコードを使用してみてください

デモを更新

tooltip: {
        formatter: function() {
            var s = [];

            $.each(this.points, function(i, point) {
                s.Push('<span style="color:#D31B22;font-weight:bold;">'+ point.series.name +' : '+
                    point.y +'<span>');
            });

            return s.join(' and ');
        },
        shared: true
    },
30

共有パラメーター http://api.highcharts.com/highcharts#tooltip.shared を使用してから、フォーマッターで各ポイントを反復処理する必要があります。

13

散布図を探している人がいれば、共有ツールチップを表示する solution です。

formatter: function(args) {
    var this_point_index = this.series.data.indexOf( this.point );
    var this_series_index = this.series.index;
    var that_series_index = this.series.index == 0 ? 1 : 0; // assuming 2 series
    var that_series = args.chart.series[that_series_index];
    var that_point = that_series.data[this_point_index];
    return 'Client: ' + this.point.name +
           '<br/>Client Health: ' + this.x +
           '<br/>' + this.series.name + ' Bandwidth: ' + this.y + 'Kbps' +
           '<br/>' + that_series.name + ' Bandwidth: ' + that_point.y + 'Kbps';
}

ソリューションへのJsfiddleリンク

2
drj