1

ツールチップに URL リンクがありますが、ツールチップがグラフ領域の外に出て、URL をクリックしようとすると、ツールチップが消えます。

これに対する回避策はありますか?

ありがとう!

4

1 に答える 1

2

このような場合、ツールチップを手動で配置するのが最善であることがわかりました。

http://api.highcharts.com/highcharts#tooltip.positioner

そうすれば、不要な非表示を制御できます。

編集:

ツールチップのプロトタイプを拡張すると、X と Y を操作できます。

Tooltip.prototype.move = function (x, y, anchorX, anchorY) {
    var tooltip = this,
        now = tooltip.now,
        animate = tooltip.options.animation !== false && !tooltip.isHidden;

            if(x > ?????)
            {
               x = x - 50; // or how ever many pixels you want to move it to
            }

    // get intermediate values for animation
    extend(now, {
        x: animate ? (2 * now.x + x) / 3 : x,
        y: animate ? (now.y + y) / 2 : y,
        anchorX: animate ? (2 * now.anchorX + anchorX) / 3 : anchorX,
        anchorY: animate ? (now.anchorY + anchorY) / 2 : anchorY
    });

    // move to the intermediate value
    tooltip.label.attr(now);


    // run on next tick of the mouse tracker
    if (animate && (mathAbs(x - now.x) > 1 || mathAbs(y - now.y) > 1)) {

        // never allow two timeouts
        clearTimeout(this.tooltipTimeout);

        // set the fixed interval ticking for the smooth tooltip
        this.tooltipTimeout = setTimeout(function () {
            // The interval function may still be running during destroy, so check that the chart is really there before calling.
            if (tooltip) {
                tooltip.move(x, y, anchorX, anchorY);
            }
        }, 32);

    }
}
于 2013-02-05T18:13:19.160 に答える