Highcharts JS v3.0.10的allowOverlap属性

时间:2019-05-27 07:14:48

标签: highcharts

在我的项目中,我们使用的是highchart版本:Highcharts JS v3.0.10。

根据新版本,适合allowOverlap = false的等效代码或属性应该是什么?

如何在旧版本中实现alloOverlap= false

链接:https://api.highcharts.com/highcharts/series.timeline.dataLabels.allowOverlap

1 个答案:

答案 0 :(得分:2)

负责隐藏重叠数据标签的代码当前位于Highcharts核心:https://code.highcharts.com/highcharts.src.js中,但以前它是一个单独的模块:https://code.highcharts.com/5/modules/overlapping-datalabels.src.js

但是,要使其正常工作,您必须在代码中进行许多更改。我认为使用以下插件将是您的最佳解决方案:

(function(H) {

    var each = H.each,
        extend = H.extend;

    /**
     * Hide overlapping labels. Labels are moved and faded in and out on zoom to provide a smooth 
     * visual imression.
     */
    H.Series.prototype.hideOverlappingDataLabels = function() {

        var points = this.points,
            len = points.length,
            i,
            j,
            label1,
            label2,
            intersectRect = function(pos1, pos2, size1, size2) {
                return !(
                    pos2.x > pos1.x + size1.width ||
                    pos2.x + size2.width < pos1.x ||
                    pos2.y > pos1.y + size1.height ||
                    pos2.y + size2.height < pos1.y
                );
            };

        // Mark with initial opacity
        each(points, function(point, label) {
            label = point.dataLabel;
            if (label) {
                label.oldOpacity = label.opacity;
                label.newOpacity = 1;
            }
        });

        // Detect overlapping labels
        for (i = 0; i < len - 1; ++i) {
            label1 = points[i].dataLabel;

            for (j = i + 1; j < len; ++j) {
                label2 = points[j].dataLabel;
                if (label1 && label2 && label1.newOpacity !== 0 && label2.newOpacity !== 0 &&
                    intersectRect(label1.alignAttr, label2.alignAttr, label1, label2)) {
                    (points[i].labelrank < points[j].labelrank ? label1 : label2).newOpacity = 0;
                }
            }
        }

        // Hide or show
        each(points, function(point, label) {
            label = point.dataLabel;
            if (label) {
                if (label.oldOpacity !== label.newOpacity) {
                    label[label.isOld ? 'animate' : 'attr'](extend({
                        opacity: label.newOpacity
                    }, label.alignAttr));
                }
                label.isOld = true;
            }
        });
    };

    H.wrap(H.Series.prototype, 'drawDataLabels', function(proceed) {
        proceed.call(this);
        this.hideOverlappingDataLabels();
    });
}(Highcharts));

实时演示: http://jsfiddle.net/BlackLabel/6s5ycrwa/