Je souhaite afficher plusieurs données de série dans une info-bulle sur chaque colonne
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>';
}
},
et données
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'
}]
J'utilise comme ceci, mais dans l'info-bulle, une seule série de données s'affiche à la fois. Je veux afficher des données comme celle-ci (Total View: 100 et Total Click: 3000)
veuillez essayer d'utiliser ce code
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
},
Vous devez utiliser le paramètre partagé http://api.highcharts.com/highcharts#tooltip.shared puis dans le formateur itérer sur chaque point.
Si quelqu'un recherche un nuage de points, voici solution pour afficher l'info-bulle partagée.
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';
}