toolTip: { shared: true, contentFormatter: function (e) { let a = “”; for (let b of e.chart.options.data) { for (let c of b.dataPoints) { a += b.name + “>” + c.x + “:” + c.y + “<br/>”; } } return a; } }