如何使节点具有较高的图表

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

我正在尝试对齐节点,但是我看不到任何选择方法,目前我的代码是

Highcharts.chart('container', {
chart: {
    type: 'networkgraph',
    plotBorderWidth: 1
},
title: {
    text: 'Trans-Siberian Railway'
},
subtitle: {
    text: 'Barnes-Hut approximation'
},
plotOptions: {
    networkgraph: {
        layoutAlgorithm: {
            enableSimulation: false,
            linkLength: 100,
            integration: 'verlet',
            approximation: 'barnes-hut',
            gravitationalConstant: 4,
                // Elastic like forces:
            attractiveForce: function (d, k) {
             return (k - d) / d; 
            },
         /*    repulsiveForce: function (d, k) {
                return Math.min((k * k) / (d), 100);
            } */

        }
    }
},
series: [{
    marker: {
        radius: 3,
        lineWidth: 1
    },
    dataLabels: {
        enabled: true,
        linkFormatter: function () {
            return '';
        }
    },
    nodes: [

       {
        id: 'test',
        marker: {
            radius: 10
        }
    },
    {
        id: 'Moscow',
        marker: {
            radius: 10
        }
    }, {
        id: 'Beijing',
        marker: {
            radius: 10
        }
    },
    {
        id: 'Brussels',
        marker: {
            radius: 10
        }
    },
    {
        id: 'Bangkok',
        marker: {
            radius: 10
        }
    }],
    data: [
        { from: 'Bangkok', to: 'Beijing', color: 'blue' },
        { from: 'Moscow', to: 'Beijing', color: 'blue' },
         { from: 'test', to: 'Moscow', color: 'blue' },
       { from: 'Beijing', to: 'Brussels', color: 'blue' },




    ]
}]

});

代码结果是:

w 并且仍然没有对齐所需的结果是

enter image description here

reactjs highcharts react-highcharts
1个回答
0
投票

您应该能够通过使用initialPositions回调在网络图图表中设置固定位置。要使其正常工作,还需要将maxIterations设置为一个较小的值,例如1。]

请参见demo

initialPositions: function() {
    var chart = this.series[0].chart,
      width = chart.plotWidth,
      height = chart.plotHeight;

    this.nodes.forEach(function(node, i) {
        if(i === 0){
        node.plotX = 600;
        node.plotY = 100;
      }

      if(i === 1) {
        node.plotX = 350;
        node.plotY = 100;
      }

      if(i === 2){
        node.plotX = 200;
        node.plotY = 0;
      }

      if(i === 3) {
        node.plotX = 0;
        node.plotY = 0;
      }

      if(i === 4) {
        node.plotX = 200;
        node.plotY = 200;
      }
    });
  }

API:https://api.highcharts.com/highcharts/series.networkgraph.layoutAlgorithm.maxIterations

API:https://api.highcharts.com/highcharts/series.networkgraph.layoutAlgorithm.initialPositions


如果您希望这些点不可拖动,也许更简单的解决方案是呈现常规折线图?

演示:https://jsfiddle.net/BlackLabel/06Lkgwbz/

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