网络图符合Sankey图表

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

在Highcharts中,有没有办法创建一个网络图,其中连接的宽度与数据系列成比例(如Sankey图?)

该应用程序是一个“流量”可视化(但在逻辑点之间,而不是物理点,因此覆盖在网络图而不是地图上。)

highcharts
1个回答
1
投票

默认情况下不支持此功能,但您可以通过对getLinkAttribues方法进行少量修改来轻松获得所需结果:

H.seriesTypes.networkgraph.prototype.pointClass.prototype.getLinkAttribues = function() {
    var linkOptions = this.series.options.link,
        maxValue,
        pointOptions = this.options;

    if (!this.linkWidth) {
        this.series.points.forEach(function(p) {
            maxValue = maxValue ?
                Math.max(maxValue, p.options.value) :
                p.options.value;
        });

        this.series.points.forEach(function(p) {
            p.linkWidth = p.options.value * 10 / maxValue;
        });
    }

    return {
        'stroke-width': this.linkWidth || 1,
        stroke: pointOptions.color || linkOptions.color,
        dashstyle: pointOptions.dashStyle || linkOptions.dashStyle
    };
}

现场演示:https://jsfiddle.net/BlackLabel/13zt8qds/

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

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