mirror of
https://gitee.com/antv/g6.git
synced 2024-12-05 13:18:40 +08:00
956 B
956 B
title | order |
---|---|
高维数据降维 MDS | 8 |
MDS 布局是高维数据降维算法布局,该算法全称 Multidimensional Scaling 。
const graph = new G6.Graph({
container: 'mountNode',
width: 1000,
height: 600,
layout: {
type: 'mds',
workerEnabled: true, // 可选,开启 web-worker
},
});
layoutCfg.center
类型: Array
示例:[ 0, 0 ]
默认值:图的中心
是否必须:false
说明:布局的中心
layoutCfg.linkDistance
类型: Number
默认值:50
是否必须:false
说明:边长度
layoutCfg.workerEnabled
类型: Boolean
默认值: false
是否必须: false
说明: 是否启用 web-worker 以防布局计算时间过长阻塞页面交互