Highcharts:使工具提示的箭头(锚点)始终可见

问题描述 投票:1回答:1

我正在尝试使用Highcharts构建一个带有自定义工具提示位置的柱形图。我想在工具提示的底部始终显示工具提示的箭头(锚点)。现在只有在我删除自定义工具提示定位器功能时才能看到它。我试图覆盖move类的Tooltip方法,并将skipAnchor设置为false。但是,它没有用。

请参阅示例:https://jsfiddle.net/jezusro6/

javascript charts highcharts data-visualization angular2-highcharts
1个回答
0
投票

你应该覆盖callout符号方法:

H.SVGRenderer.prototype.symbols.callout = function(x, y, w, h, options) {
    var arrowLength = 6,
        halfDistance = 6,
        r = Math.min((options && options.r) || 0, w, h),
        safeDistance = r + halfDistance,
        anchorX = options && options.anchorX,
        anchorY = options && options.anchorY,
        path;

    path = [
        'M', x + r, y,
        'L', x + w - r, y, // top side
        'C', x + w, y, x + w, y, x + w, y + r, // top-right corner
        'L', x + w, y + h - r, // right side
        'C', x + w, y + h, x + w, y + h, x + w - r, y + h, // bottom-rgt
        'L', x + r, y + h, // bottom side
        'C', x, y + h, x, y + h, x, y + h - r, // bottom-left corner
        'L', x, y + r, // left side
        'C', x, y, x, y, x + r, y // top-left corner
    ];

    path.splice(
        23,
        3,
        'L', anchorX + halfDistance, y + h,
        anchorX, y + h + arrowLength,
        anchorX - halfDistance, y + h,
        x + r, y + h
    );

    return path;
}

现场演示:https://jsfiddle.net/BlackLabel/g5h27mfx/

文件:https://www.highcharts.com/docs/extending-highcharts

© www.soinside.com 2019 - 2024. All rights reserved.