如何使用highcharts在工具提示中显示一个系列的多个点?

时间:2016-07-28 16:23:20

标签: javascript angularjs highcharts

我正在使用高级图表,它使用的是HTML工具提示。该工具提示显示 - 当然 - x轴上可用的值。

chart: {
    tooltip: {
        shared: true,
        useHTML: true,
        formatter: function () {
            var html = '<table>';
            _.forEach(this.points, function (point) {
                html += '<tr>' +
                    '<td style="color: ' + point.series.color + '">' + point.series.name + ': </td>' +
                    '<td style="text-align: right; font-weight: bold">' + $currency(point.y, point.point.symbol, 2) + '</td>' +
                    '</tr><tr>' +
                    '<td colspan="3" style="text-align: right">' + point.point.articelno + '</td>' +
                    '</tr>';
            });
            html += '</table>';
            return html;
        },
        style: {
            padding: 10
        }
    }
}

问题是,该系列可以在同一个x行上有一个或多个点,我想在同一个工具提示中显示,但我发现没办法这样做。

对我有什么想法?

0 个答案:

没有答案