8

特定のシリーズの最後のポイントのツールチップをカスタマイズし、このシリーズの他のポイントと他のシリーズをデフォルトのツールチップ形式で残したい。基本的に、この構成に似たものを探しています。よろしくお願いします。

series: [{
            tooltip: {    // ?? tooltip does not work inside series
                formatter: function() {
                    if (lastPoint in the series) {  // ?? how to determine if lastPoint
                        return '<b>Final result is </b> ' + this.y;
                    }
                    // ?? return default format if it is not the last point in the series
                }
            },            
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6]        
        }, {
            data: [194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2]        
        }]
4

1 に答える 1