mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 19:58:46 +08:00
fix: adding plugins by api results in missing afterrender and afterlayout timing events triggered
This commit is contained in:
parent
21a7ea1e39
commit
874755301b
@ -125,6 +125,7 @@ export default abstract class Item implements IItem {
|
|||||||
const {
|
const {
|
||||||
type = this.type === 'edge' ? 'line-edge' : `circle-${this.type}`,
|
type = this.type === 'edge' ? 'line-edge' : `circle-${this.type}`,
|
||||||
lodStrategy: modelLodStrategy,
|
lodStrategy: modelLodStrategy,
|
||||||
|
enableBalanceShape,
|
||||||
} = this.displayModel.data;
|
} = this.displayModel.data;
|
||||||
const RenderExtension = renderExtensions.find((ext) => ext.type === type);
|
const RenderExtension = renderExtensions.find((ext) => ext.type === type);
|
||||||
this.themeStyles = theme.styles;
|
this.themeStyles = theme.styles;
|
||||||
@ -149,6 +150,7 @@ export default abstract class Item implements IItem {
|
|||||||
this.renderExt = new RenderExtension({
|
this.renderExt = new RenderExtension({
|
||||||
themeStyles: this.themeStyles?.default,
|
themeStyles: this.themeStyles?.default,
|
||||||
lodStrategy,
|
lodStrategy,
|
||||||
|
enableBalanceShape,
|
||||||
device: this.device,
|
device: this.device,
|
||||||
zoom: this.zoom,
|
zoom: this.zoom,
|
||||||
});
|
});
|
||||||
|
@ -287,14 +287,16 @@ export class ItemController {
|
|||||||
theme.node,
|
theme.node,
|
||||||
tileOptimize,
|
tileOptimize,
|
||||||
);
|
);
|
||||||
|
let nodesInView;
|
||||||
if (renderNodesPromise) {
|
if (renderNodesPromise) {
|
||||||
await renderNodesPromise;
|
nodesInView = await renderNodesPromise;
|
||||||
}
|
}
|
||||||
this.renderCombos(combos, theme.combo, graphCore);
|
this.renderCombos(combos, theme.combo, graphCore);
|
||||||
const renderEdgesPromise = this.renderEdges(
|
const renderEdgesPromise = this.renderEdges(
|
||||||
edges,
|
edges,
|
||||||
theme.edge,
|
theme.edge,
|
||||||
tileOptimize,
|
tileOptimize,
|
||||||
|
nodesInView,
|
||||||
);
|
);
|
||||||
if (renderEdgesPromise) {
|
if (renderEdgesPromise) {
|
||||||
await renderEdgesPromise;
|
await renderEdgesPromise;
|
||||||
@ -1124,18 +1126,18 @@ export class ItemController {
|
|||||||
});
|
});
|
||||||
if (delayFirstDraw) {
|
if (delayFirstDraw) {
|
||||||
let requestId;
|
let requestId;
|
||||||
const items = itemsInView.concat(itemsOutView);
|
const sectionNum = Math.ceil(itemsOutView.length / tileFirstRenderSize);
|
||||||
const sectionNum = Math.ceil(items.length / tileFirstRenderSize);
|
|
||||||
const sections = Array.from({ length: sectionNum }, (v, i) =>
|
const sections = Array.from({ length: sectionNum }, (v, i) =>
|
||||||
items.slice(
|
itemsOutView.slice(
|
||||||
i * tileFirstRenderSize,
|
i * tileFirstRenderSize,
|
||||||
i * tileFirstRenderSize + tileFirstRenderSize,
|
i * tileFirstRenderSize + tileFirstRenderSize,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
sections.unshift(itemsInView);
|
||||||
const update = (resolve) => {
|
const update = (resolve) => {
|
||||||
if (!sections.length) {
|
if (!sections.length) {
|
||||||
cancelAnimationFrame(requestId);
|
cancelAnimationFrame(requestId);
|
||||||
return resolve();
|
return resolve(itemsInView);
|
||||||
}
|
}
|
||||||
sections
|
sections
|
||||||
.shift()
|
.shift()
|
||||||
@ -1230,6 +1232,7 @@ export class ItemController {
|
|||||||
tileFirstRender?: boolean | number;
|
tileFirstRender?: boolean | number;
|
||||||
tileFirstRenderSize?: number;
|
tileFirstRenderSize?: number;
|
||||||
},
|
},
|
||||||
|
nodesInView?: Node[],
|
||||||
): Promise<any> | undefined {
|
): Promise<any> | undefined {
|
||||||
const { edgeExtensions, edgeGroup, itemMap, edgeDataTypeSet, graph } = this;
|
const { edgeExtensions, edgeGroup, itemMap, edgeDataTypeSet, graph } = this;
|
||||||
const { dataTypeField = '' } = edgeTheme;
|
const { dataTypeField = '' } = edgeTheme;
|
||||||
@ -1239,7 +1242,10 @@ export class ItemController {
|
|||||||
const delayFirstDraw = isNumber(tileFirstRender)
|
const delayFirstDraw = isNumber(tileFirstRender)
|
||||||
? models.length > tileFirstRender
|
? models.length > tileFirstRender
|
||||||
: tileFirstRender;
|
: tileFirstRender;
|
||||||
const items = models.map((edge) => {
|
const nodesInViewIds = new Set(nodesInView?.map((node) => node.getID()));
|
||||||
|
const edgesInView = [];
|
||||||
|
const edgesOutView = [];
|
||||||
|
models.forEach((edge) => {
|
||||||
const { source, target, id } = edge;
|
const { source, target, id } = edge;
|
||||||
const sourceItem = itemMap.get(source) as Node;
|
const sourceItem = itemMap.get(source) as Node;
|
||||||
const targetItem = itemMap.get(target) as Node;
|
const targetItem = itemMap.get(target) as Node;
|
||||||
@ -1285,18 +1291,22 @@ export class ItemController {
|
|||||||
});
|
});
|
||||||
|
|
||||||
itemMap.set(id, edgeItem);
|
itemMap.set(id, edgeItem);
|
||||||
|
if (nodesInViewIds.has(source) || nodesInViewIds.has(target))
|
||||||
|
edgesInView.push(edgeItem);
|
||||||
|
else edgesOutView.push(edgeItem);
|
||||||
return edgeItem;
|
return edgeItem;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (delayFirstDraw) {
|
if (delayFirstDraw) {
|
||||||
let requestId;
|
let requestId;
|
||||||
const sectionNum = Math.ceil(items.length / tileFirstRenderSize);
|
const sectionNum = Math.ceil(edgesOutView.length / tileFirstRenderSize);
|
||||||
const sections = Array.from({ length: sectionNum }, (v, i) =>
|
const sections = Array.from({ length: sectionNum }, (v, i) =>
|
||||||
items.slice(
|
edgesOutView.slice(
|
||||||
i * tileFirstRenderSize,
|
i * tileFirstRenderSize,
|
||||||
i * tileFirstRenderSize + tileFirstRenderSize,
|
i * tileFirstRenderSize + tileFirstRenderSize,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
sections.unshift(edgesInView);
|
||||||
const update = (resolve) => {
|
const update = (resolve) => {
|
||||||
if (!sections.length) {
|
if (!sections.length) {
|
||||||
cancelAnimationFrame(requestId);
|
cancelAnimationFrame(requestId);
|
||||||
|
@ -116,7 +116,7 @@ export class PluginController {
|
|||||||
if (action === 'add') {
|
if (action === 'add') {
|
||||||
pluginCfgs.forEach((config) => {
|
pluginCfgs.forEach((config) => {
|
||||||
const { key, plugin } = this.initPlugin(config);
|
const { key, plugin } = this.initPlugin(config);
|
||||||
this.addListeners(key, plugin);
|
this.addListeners(key, plugin, false);
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -158,7 +158,7 @@ export class PluginController {
|
|||||||
const { plugin } = item;
|
const { plugin } = item;
|
||||||
plugin.updateCfgs(config);
|
plugin.updateCfgs(config);
|
||||||
this.removeListeners(key);
|
this.removeListeners(key);
|
||||||
this.addListeners(key, plugin);
|
this.addListeners(key, plugin, false);
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -184,7 +184,11 @@ export class PluginController {
|
|||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
private addListeners = (key: string, plugin: PluginBase) => {
|
private addListeners = (
|
||||||
|
key: string,
|
||||||
|
plugin: PluginBase,
|
||||||
|
initWithGraph: boolean = true,
|
||||||
|
) => {
|
||||||
const events = plugin.getEvents();
|
const events = plugin.getEvents();
|
||||||
this.listenersMap[key] = {};
|
this.listenersMap[key] = {};
|
||||||
Object.keys(events).forEach((eventName) => {
|
Object.keys(events).forEach((eventName) => {
|
||||||
@ -196,6 +200,13 @@ export class PluginController {
|
|||||||
);
|
);
|
||||||
this.graph.on(eventName, listener);
|
this.graph.on(eventName, listener);
|
||||||
this.listenersMap[key][eventName] = listener;
|
this.listenersMap[key][eventName] = listener;
|
||||||
|
// The plugin is not initiated with graph, some events are not listened, trigger them manually
|
||||||
|
if (
|
||||||
|
!initWithGraph &&
|
||||||
|
['afterrender', 'afterlayout'].includes(eventName)
|
||||||
|
) {
|
||||||
|
listener({} as any);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -75,6 +75,7 @@ export class DragCanvas extends Behavior {
|
|||||||
private hiddenEdgeIds: ID[];
|
private hiddenEdgeIds: ID[];
|
||||||
private hiddenNodeIds: ID[];
|
private hiddenNodeIds: ID[];
|
||||||
private tileRequestId?: number;
|
private tileRequestId?: number;
|
||||||
|
private lastDragTriggerTime?: number;
|
||||||
|
|
||||||
constructor(options: Partial<DragCanvasOptions>) {
|
constructor(options: Partial<DragCanvasOptions>) {
|
||||||
const finalOptions = Object.assign({}, DEFAULT_OPTIONS, options);
|
const finalOptions = Object.assign({}, DEFAULT_OPTIONS, options);
|
||||||
@ -236,6 +237,22 @@ export class DragCanvas extends Behavior {
|
|||||||
const { eventName, direction, secondaryKeyToDisable } = this.options;
|
const { eventName, direction, secondaryKeyToDisable } = this.options;
|
||||||
// disabled key is pressing
|
// disabled key is pressing
|
||||||
if (secondaryKeyToDisable && this.disableKeydown) return;
|
if (secondaryKeyToDisable && this.disableKeydown) return;
|
||||||
|
|
||||||
|
// begin dragging
|
||||||
|
if (!this.dragging) {
|
||||||
|
this.hideShapes();
|
||||||
|
this.dragging = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const now = Date.now();
|
||||||
|
const MOUSE_ZOOM_DURATION = 250;
|
||||||
|
if (
|
||||||
|
this.lastDragTriggerTime &&
|
||||||
|
now - this.lastDragTriggerTime < MOUSE_ZOOM_DURATION / 5
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const { graph } = this;
|
const { graph } = this;
|
||||||
const { client } = event;
|
const { client } = event;
|
||||||
const diffX = client.x - this.pointerDownAt.x;
|
const diffX = client.x - this.pointerDownAt.x;
|
||||||
@ -244,12 +261,6 @@ export class DragCanvas extends Behavior {
|
|||||||
if (direction === 'y' && !diffY) return;
|
if (direction === 'y' && !diffY) return;
|
||||||
if (direction === 'both' && !diffX && !diffY) return;
|
if (direction === 'both' && !diffX && !diffY) return;
|
||||||
|
|
||||||
// begin dragging
|
|
||||||
if (!this.dragging) {
|
|
||||||
this.hideShapes();
|
|
||||||
this.dragging = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { dx, dy } = this.formatDisplacement(diffX, diffY);
|
const { dx, dy } = this.formatDisplacement(diffX, diffY);
|
||||||
graph.translate({ dx, dy });
|
graph.translate({ dx, dy });
|
||||||
|
|
||||||
@ -259,6 +270,7 @@ export class DragCanvas extends Behavior {
|
|||||||
if (eventName) {
|
if (eventName) {
|
||||||
this.graph.emit(eventName, { translate: { dx, dy } });
|
this.graph.emit(eventName, { translate: { dx, dy } });
|
||||||
}
|
}
|
||||||
|
this.lastDragTriggerTime = now;
|
||||||
}
|
}
|
||||||
|
|
||||||
public onPointerUp() {
|
public onPointerUp() {
|
||||||
|
@ -59,7 +59,7 @@ export interface ZoomCanvasOptions {
|
|||||||
const DEFAULT_OPTIONS: Required<ZoomCanvasOptions> = {
|
const DEFAULT_OPTIONS: Required<ZoomCanvasOptions> = {
|
||||||
enableOptimize: undefined,
|
enableOptimize: undefined,
|
||||||
triggerOnItems: true,
|
triggerOnItems: true,
|
||||||
sensitivity: 2,
|
sensitivity: 10,
|
||||||
trigger: 'wheel',
|
trigger: 'wheel',
|
||||||
secondaryKey: '',
|
secondaryKey: '',
|
||||||
speedUpKey: 'shift',
|
speedUpKey: 'shift',
|
||||||
@ -77,6 +77,7 @@ export class ZoomCanvas extends Behavior {
|
|||||||
private hiddenNodeIds: ID[];
|
private hiddenNodeIds: ID[];
|
||||||
private zoomTimer: ReturnType<typeof setTimeout>;
|
private zoomTimer: ReturnType<typeof setTimeout>;
|
||||||
private tileRequestId?: number;
|
private tileRequestId?: number;
|
||||||
|
private lastWheelTriggerTime?: number;
|
||||||
|
|
||||||
constructor(options: Partial<ZoomCanvasOptions>) {
|
constructor(options: Partial<ZoomCanvasOptions>) {
|
||||||
const finalOptions = Object.assign({}, DEFAULT_OPTIONS, options);
|
const finalOptions = Object.assign({}, DEFAULT_OPTIONS, options);
|
||||||
@ -232,15 +233,27 @@ export class ZoomCanvas extends Behavior {
|
|||||||
this.hideShapes();
|
this.hideShapes();
|
||||||
this.zooming = true;
|
this.zooming = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const now = Date.now();
|
||||||
|
const MOUSE_ZOOM_DURATION = 250;
|
||||||
|
if (
|
||||||
|
this.lastWheelTriggerTime &&
|
||||||
|
now - this.lastWheelTriggerTime < MOUSE_ZOOM_DURATION / 5
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let zoomRatio = 1;
|
let zoomRatio = 1;
|
||||||
if (deltaY < 0) zoomRatio = (100 + sensitivity) / 100;
|
if (deltaY < 0) zoomRatio = (100 + sensitivity) / 100;
|
||||||
if (deltaY > 0) zoomRatio = 100 / (100 + sensitivity);
|
if (deltaY > 0) zoomRatio = 100 / (100 + sensitivity);
|
||||||
const zoomTo = zoomRatio * graph.getZoom();
|
const zoomTo = zoomRatio * graph.getZoom();
|
||||||
if (minZoom && zoomTo < minZoom) return;
|
if (minZoom && zoomTo < minZoom) return;
|
||||||
if (maxZoom && zoomTo > maxZoom) return;
|
if (maxZoom && zoomTo > maxZoom) return;
|
||||||
// TODO: the zoom center is wrong?
|
|
||||||
graph.zoom(zoomRatio, { x: client.x, y: client.y });
|
graph.zoom(zoomRatio, { x: client.x, y: client.y });
|
||||||
|
|
||||||
|
this.lastWheelTriggerTime = now;
|
||||||
|
|
||||||
clearTimeout(this.zoomTimer);
|
clearTimeout(this.zoomTimer);
|
||||||
this.zoomTimer = setTimeout(() => {
|
this.zoomTimer = setTimeout(() => {
|
||||||
this.endZoom();
|
this.endZoom();
|
||||||
|
@ -41,6 +41,7 @@ export abstract class BaseNode {
|
|||||||
themeStyles: NodeShapeStyles | ComboShapeStyles;
|
themeStyles: NodeShapeStyles | ComboShapeStyles;
|
||||||
mergedStyles: NodeShapeStyles | ComboShapeStyles;
|
mergedStyles: NodeShapeStyles | ComboShapeStyles;
|
||||||
lodStrategy?: LodStrategyObj;
|
lodStrategy?: LodStrategyObj;
|
||||||
|
enableBalanceShape?: boolean;
|
||||||
boundsCache: {
|
boundsCache: {
|
||||||
keyShapeLocal?: AABB;
|
keyShapeLocal?: AABB;
|
||||||
labelShapeGeometry?: AABB;
|
labelShapeGeometry?: AABB;
|
||||||
@ -84,9 +85,10 @@ export abstract class BaseNode {
|
|||||||
};
|
};
|
||||||
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
const { themeStyles, lodStrategy, zoom } = props;
|
const { themeStyles, lodStrategy, enableBalanceShape, zoom } = props;
|
||||||
if (themeStyles) this.themeStyles = themeStyles;
|
if (themeStyles) this.themeStyles = themeStyles;
|
||||||
this.lodStrategy = lodStrategy;
|
this.lodStrategy = lodStrategy;
|
||||||
|
this.enableBalanceShape = enableBalanceShape;
|
||||||
this.boundsCache = {};
|
this.boundsCache = {};
|
||||||
this.zoomCache.zoom = zoom;
|
this.zoomCache.zoom = zoom;
|
||||||
this.zoomCache.balanceRatio = 1 / zoom;
|
this.zoomCache.balanceRatio = 1 / zoom;
|
||||||
@ -306,6 +308,7 @@ export abstract class BaseNode {
|
|||||||
keyShapeBox as AABB,
|
keyShapeBox as AABB,
|
||||||
maxWidth,
|
maxWidth,
|
||||||
this.zoomCache.zoom,
|
this.zoomCache.zoom,
|
||||||
|
this.enableBalanceShape,
|
||||||
);
|
);
|
||||||
|
|
||||||
const positionPreset = {
|
const positionPreset = {
|
||||||
@ -873,6 +876,7 @@ export abstract class BaseNode {
|
|||||||
shapeMap: NodeShapeMap | ComboShapeMap,
|
shapeMap: NodeShapeMap | ComboShapeMap,
|
||||||
zoom: number,
|
zoom: number,
|
||||||
) {
|
) {
|
||||||
|
if (!this.enableBalanceShape) return;
|
||||||
// balance the size for label, badges
|
// balance the size for label, badges
|
||||||
const { keyShape, labelShape, labelBackgroundShape } = shapeMap;
|
const { keyShape, labelShape, labelBackgroundShape } = shapeMap;
|
||||||
const balanceRatio = 1 / zoom || 1;
|
const balanceRatio = 1 / zoom || 1;
|
||||||
|
@ -13,8 +13,10 @@ export const getWordWrapWidthByBox = (
|
|||||||
keyShapeBox: AABB,
|
keyShapeBox: AABB,
|
||||||
maxWidth: string | number,
|
maxWidth: string | number,
|
||||||
zoom = 1,
|
zoom = 1,
|
||||||
|
enableBalanceShape = false,
|
||||||
) => {
|
) => {
|
||||||
const keyShapeWidth = (keyShapeBox.max[0] - keyShapeBox.min[0]) * zoom;
|
const balanceZoom = enableBalanceShape ? zoom : 1;
|
||||||
|
const keyShapeWidth = (keyShapeBox.max[0] - keyShapeBox.min[0]) * balanceZoom;
|
||||||
return getWordWrapWidthWithBase(keyShapeWidth, maxWidth);
|
return getWordWrapWidthWithBase(keyShapeWidth, maxWidth);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -69,14 +69,13 @@ import watermarker from './plugins/watermarker';
|
|||||||
import cube from './item/node/cube';
|
import cube from './item/node/cube';
|
||||||
import graphCore from './data/graphCore';
|
import graphCore from './data/graphCore';
|
||||||
import dagreUpdate from './layouts/dagre-update';
|
import dagreUpdate from './layouts/dagre-update';
|
||||||
import map from './plugins/map';
|
import fps_test from './performance/fps';
|
||||||
|
|
||||||
export { default as timebar_time } from './plugins/timebar-time';
|
export { default as timebar_time } from './plugins/timebar-time';
|
||||||
export { default as timebar_chart } from './plugins/timebar-chart';
|
export { default as timebar_chart } from './plugins/timebar-chart';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
minimap,
|
minimap,
|
||||||
map,
|
|
||||||
mapper,
|
mapper,
|
||||||
anchor,
|
anchor,
|
||||||
animations_node_build_in,
|
animations_node_build_in,
|
||||||
@ -126,6 +125,7 @@ export {
|
|||||||
performance_layout_3d,
|
performance_layout_3d,
|
||||||
performance_layout,
|
performance_layout,
|
||||||
performance,
|
performance,
|
||||||
|
fps_test,
|
||||||
polyline,
|
polyline,
|
||||||
quadratic,
|
quadratic,
|
||||||
rect,
|
rect,
|
||||||
|
107
packages/g6/tests/demo/performance/fps.ts
Normal file
107
packages/g6/tests/demo/performance/fps.ts
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
import { Graph, Extensions, extend } from '../../../src/index';
|
||||||
|
import { container, width } from '../../datasets/const';
|
||||||
|
import data from '../../datasets/eva-3d-data.json';
|
||||||
|
import Stats from 'stats.js';
|
||||||
|
|
||||||
|
const createGraph = async () => {
|
||||||
|
const ExtGraph = extend(Graph, {
|
||||||
|
layouts: {},
|
||||||
|
behaviors: {
|
||||||
|
'brush-select': Extensions.BrushSelect,
|
||||||
|
'hover-activate': Extensions.HoverActivate,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const graph = new ExtGraph({
|
||||||
|
container: container as HTMLElement,
|
||||||
|
width,
|
||||||
|
height: 1200,
|
||||||
|
renderer: 'webgl',
|
||||||
|
transforms: ['transform-v4-data'],
|
||||||
|
modes: {
|
||||||
|
default: [
|
||||||
|
{ type: 'zoom-canvas', enableOptimize: false },
|
||||||
|
{ type: 'drag-canvas', enableOptimize: false },
|
||||||
|
'drag-node',
|
||||||
|
'brush-select',
|
||||||
|
'click-select',
|
||||||
|
'hover-activate',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
edge: (innerModel) => {
|
||||||
|
return {
|
||||||
|
...innerModel,
|
||||||
|
data: {
|
||||||
|
...innerModel.data,
|
||||||
|
keyShape: {
|
||||||
|
lineWidth: 0.5,
|
||||||
|
},
|
||||||
|
haloShape: {
|
||||||
|
fill: 'red',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
node: (innerModel) => {
|
||||||
|
return {
|
||||||
|
...innerModel,
|
||||||
|
data: {
|
||||||
|
...innerModel.data,
|
||||||
|
lodStrategy: {},
|
||||||
|
keyShape: {
|
||||||
|
r: 4,
|
||||||
|
},
|
||||||
|
haloShape: {},
|
||||||
|
labelShape: {
|
||||||
|
// text: innerModel.id,
|
||||||
|
opacity: 0.8,
|
||||||
|
maxWidth: '150%',
|
||||||
|
},
|
||||||
|
labelBackgroundShape: {},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return graph;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default async () => {
|
||||||
|
console.log(
|
||||||
|
'graphsize: #NODE:',
|
||||||
|
data.nodes.length,
|
||||||
|
', #EDGE:',
|
||||||
|
data.edges.length,
|
||||||
|
'#SHAPES',
|
||||||
|
data.nodes.length * 10 + data.edges.length * 4,
|
||||||
|
);
|
||||||
|
const graph = await createGraph();
|
||||||
|
// data.nodes.forEach((node) => delete node.data.z);
|
||||||
|
// graph.read(data);
|
||||||
|
|
||||||
|
fetch(
|
||||||
|
'https://gw.alipayobjects.com/os/bmw-prod/f1565312-d537-4231-adf5-81cb1cd3a0e8.json',
|
||||||
|
).then((res) =>
|
||||||
|
res.json().then((d) => {
|
||||||
|
graph.read(d);
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
const stats = new Stats();
|
||||||
|
stats.showPanel(0);
|
||||||
|
const $stats = stats.dom;
|
||||||
|
$stats.style.position = 'absolute';
|
||||||
|
$stats.style.left = '0px';
|
||||||
|
$stats.style.top = '0px';
|
||||||
|
document.body.appendChild($stats);
|
||||||
|
const update = () => {
|
||||||
|
if (stats) {
|
||||||
|
stats.update();
|
||||||
|
}
|
||||||
|
requestAnimationFrame(update);
|
||||||
|
};
|
||||||
|
update();
|
||||||
|
|
||||||
|
console.log('graph', graph);
|
||||||
|
|
||||||
|
return graph;
|
||||||
|
};
|
@ -2,7 +2,7 @@
|
|||||||
title: Graph
|
title: Graph
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [graph](../../modules/graph.en.md) / Graph
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [graph](../../modules/graph.en.md) / Graph
|
||||||
|
|
||||||
[graph](../../modules/graph.en.md).Graph
|
[graph](../../modules/graph.en.md).Graph
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: Graph
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [graph](../../modules/graph.zh.md) / Graph
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [graph](../../modules/graph.zh.md) / Graph
|
||||||
|
|
||||||
[graph](../../modules/graph.zh.md).Graph
|
[graph](../../modules/graph.zh.md).Graph
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CircleNode
|
title: CircleNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CircleNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CircleNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).CircleNode
|
[item](../../modules/item.en.md).CircleNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: CircleNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CircleNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CircleNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).CircleNode
|
[item](../../modules/item.zh.md).CircleNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CustomEdge
|
title: CustomEdge
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CustomEdge
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CustomEdge
|
||||||
|
|
||||||
[item](../../modules/item.en.md).CustomEdge
|
[item](../../modules/item.en.md).CustomEdge
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: CustomEdge
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CustomEdge
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CustomEdge
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).CustomEdge
|
[item](../../modules/item.zh.md).CustomEdge
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CustomNode
|
title: CustomNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CustomNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CustomNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).CustomNode
|
[item](../../modules/item.en.md).CustomNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: CustomNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CustomNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CustomNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).CustomNode
|
[item](../../modules/item.zh.md).CustomNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CustomNode3D
|
title: CustomNode3D
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CustomNode3D
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CustomNode3D
|
||||||
|
|
||||||
[item](../../modules/item.en.md).CustomNode3D
|
[item](../../modules/item.en.md).CustomNode3D
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: CustomNode3D
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CustomNode3D
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CustomNode3D
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).CustomNode3D
|
[item](../../modules/item.zh.md).CustomNode3D
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: DiamondNode
|
title: DiamondNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / DiamondNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / DiamondNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).DiamondNode
|
[item](../../modules/item.en.md).DiamondNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: DiamondNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / DiamondNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / DiamondNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).DiamondNode
|
[item](../../modules/item.zh.md).DiamondNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: DonutNode
|
title: DonutNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / DonutNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / DonutNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).DonutNode
|
[item](../../modules/item.en.md).DonutNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: DonutNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / DonutNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / DonutNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).DonutNode
|
[item](../../modules/item.zh.md).DonutNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: EllipseNode
|
title: EllipseNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / EllipseNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / EllipseNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).EllipseNode
|
[item](../../modules/item.en.md).EllipseNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: EllipseNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / EllipseNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / EllipseNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).EllipseNode
|
[item](../../modules/item.zh.md).EllipseNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: HexagonNode
|
title: HexagonNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / HexagonNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / HexagonNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).HexagonNode
|
[item](../../modules/item.en.md).HexagonNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: HexagonNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / HexagonNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / HexagonNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).HexagonNode
|
[item](../../modules/item.zh.md).HexagonNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ModelRectNode
|
title: ModelRectNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / ModelRectNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / ModelRectNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).ModelRectNode
|
[item](../../modules/item.en.md).ModelRectNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: ModelRectNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / ModelRectNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / ModelRectNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).ModelRectNode
|
[item](../../modules/item.zh.md).ModelRectNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: RectNode
|
title: RectNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / RectNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / RectNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).RectNode
|
[item](../../modules/item.en.md).RectNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: RectNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / RectNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / RectNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).RectNode
|
[item](../../modules/item.zh.md).RectNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: SphereNode
|
title: SphereNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / SphereNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / SphereNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).SphereNode
|
[item](../../modules/item.en.md).SphereNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: SphereNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / SphereNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / SphereNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).SphereNode
|
[item](../../modules/item.zh.md).SphereNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: StarNode
|
title: StarNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / StarNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / StarNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).StarNode
|
[item](../../modules/item.en.md).StarNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: StarNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / StarNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / StarNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).StarNode
|
[item](../../modules/item.zh.md).StarNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: TriangleNode
|
title: TriangleNode
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / TriangleNode
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / TriangleNode
|
||||||
|
|
||||||
[item](../../modules/item.en.md).TriangleNode
|
[item](../../modules/item.en.md).TriangleNode
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: TriangleNode
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / TriangleNode
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / TriangleNode
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).TriangleNode
|
[item](../../modules/item.zh.md).TriangleNode
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ActivateRelationsOptions
|
title: ActivateRelationsOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / ActivateRelationsOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / ActivateRelationsOptions
|
||||||
|
|
||||||
[behaviors](../../modules/behaviors.en.md).ActivateRelationsOptions
|
[behaviors](../../modules/behaviors.en.md).ActivateRelationsOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ActivateRelationsOptions
|
title: ActivateRelationsOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [behaviors](../../modules/behaviors.zh.md) / ActivateRelationsOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [behaviors](../../modules/behaviors.zh.md) / ActivateRelationsOptions
|
||||||
|
|
||||||
[behaviors](../../modules/behaviors.zh.md).ActivateRelationsOptions
|
[behaviors](../../modules/behaviors.zh.md).ActivateRelationsOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CollapseExpandComboOptions
|
title: CollapseExpandComboOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / CollapseExpandComboOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / CollapseExpandComboOptions
|
||||||
|
|
||||||
[behaviors](../../modules/behaviors.en.md).CollapseExpandComboOptions
|
[behaviors](../../modules/behaviors.en.md).CollapseExpandComboOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: HoverActivateOptions
|
title: HoverActivateOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / HoverActivateOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / HoverActivateOptions
|
||||||
|
|
||||||
[behaviors](../../modules/behaviors.en.md).HoverActivateOptions
|
[behaviors](../../modules/behaviors.en.md).HoverActivateOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ZoomCanvasOptions
|
title: ZoomCanvasOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / ZoomCanvasOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [behaviors](../../modules/behaviors.en.md) / ZoomCanvasOptions
|
||||||
|
|
||||||
[behaviors](../../modules/behaviors.en.md).ZoomCanvasOptions
|
[behaviors](../../modules/behaviors.en.md).ZoomCanvasOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CircleStyleProps
|
title: CircleStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CircleStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CircleStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).CircleStyleProps
|
[item](../../modules/item.en.md).CircleStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: CircleStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CircleStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CircleStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).CircleStyleProps
|
[item](../../modules/item.zh.md).CircleStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CubeGeometryProps
|
title: CubeGeometryProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CubeGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / CubeGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).CubeGeometryProps
|
[item](../../modules/item.en.md).CubeGeometryProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: CubeGeometryProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CubeGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / CubeGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).CubeGeometryProps
|
[item](../../modules/item.zh.md).CubeGeometryProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: EllipseStyleProps
|
title: EllipseStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / EllipseStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / EllipseStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).EllipseStyleProps
|
[item](../../modules/item.en.md).EllipseStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: EllipseStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / EllipseStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / EllipseStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).EllipseStyleProps
|
[item](../../modules/item.zh.md).EllipseStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: IAnchorPositionMap
|
title: IAnchorPositionMap
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / IAnchorPositionMap
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / IAnchorPositionMap
|
||||||
|
|
||||||
[item](../../modules/item.en.md).IAnchorPositionMap
|
[item](../../modules/item.en.md).IAnchorPositionMap
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: IAnchorPositionMap
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / IAnchorPositionMap
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / IAnchorPositionMap
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).IAnchorPositionMap
|
[item](../../modules/item.zh.md).IAnchorPositionMap
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ImageStyleProps
|
title: ImageStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / ImageStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / ImageStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).ImageStyleProps
|
[item](../../modules/item.en.md).ImageStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: ImageStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / ImageStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / ImageStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).ImageStyleProps
|
[item](../../modules/item.zh.md).ImageStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: LineStyleProps
|
title: LineStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / LineStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / LineStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).LineStyleProps
|
[item](../../modules/item.en.md).LineStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: LineStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / LineStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / LineStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).LineStyleProps
|
[item](../../modules/item.zh.md).LineStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: NodeShapeStyles
|
title: NodeShapeStyles
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / NodeShapeStyles
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / NodeShapeStyles
|
||||||
|
|
||||||
[item](../../modules/item.en.md).NodeShapeStyles
|
[item](../../modules/item.en.md).NodeShapeStyles
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: NodeShapeStyles
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / NodeShapeStyles
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / NodeShapeStyles
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).NodeShapeStyles
|
[item](../../modules/item.zh.md).NodeShapeStyles
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: NodeUserModelData
|
title: NodeUserModelData
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / NodeUserModelData
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / NodeUserModelData
|
||||||
|
|
||||||
[item](../../modules/item.en.md).NodeUserModelData
|
[item](../../modules/item.en.md).NodeUserModelData
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: NodeUserModelData
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / NodeUserModelData
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / NodeUserModelData
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).NodeUserModelData
|
[item](../../modules/item.zh.md).NodeUserModelData
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: PathStyleProps
|
title: PathStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PathStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PathStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).PathStyleProps
|
[item](../../modules/item.en.md).PathStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: PathStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PathStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PathStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).PathStyleProps
|
[item](../../modules/item.zh.md).PathStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: PlaneGeometryProps
|
title: PlaneGeometryProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PlaneGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PlaneGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).PlaneGeometryProps
|
[item](../../modules/item.en.md).PlaneGeometryProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: PlaneGeometryProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PlaneGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PlaneGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).PlaneGeometryProps
|
[item](../../modules/item.zh.md).PlaneGeometryProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: PolygonStyleProps
|
title: PolygonStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PolygonStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PolygonStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).PolygonStyleProps
|
[item](../../modules/item.en.md).PolygonStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: PolygonStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PolygonStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PolygonStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).PolygonStyleProps
|
[item](../../modules/item.zh.md).PolygonStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: PolylineStyleProps
|
title: PolylineStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PolylineStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / PolylineStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).PolylineStyleProps
|
[item](../../modules/item.en.md).PolylineStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: PolylineStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PolylineStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / PolylineStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).PolylineStyleProps
|
[item](../../modules/item.zh.md).PolylineStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: RectStyleProps
|
title: RectStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / RectStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / RectStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).RectStyleProps
|
[item](../../modules/item.en.md).RectStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: RectStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / RectStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / RectStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).RectStyleProps
|
[item](../../modules/item.zh.md).RectStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: SphereGeometryProps
|
title: SphereGeometryProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / SphereGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / SphereGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).SphereGeometryProps
|
[item](../../modules/item.en.md).SphereGeometryProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: SphereGeometryProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / SphereGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / SphereGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).SphereGeometryProps
|
[item](../../modules/item.zh.md).SphereGeometryProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: TextStyleProps
|
title: TextStyleProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / TextStyleProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / TextStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).TextStyleProps
|
[item](../../modules/item.en.md).TextStyleProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: TextStyleProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / TextStyleProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / TextStyleProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).TextStyleProps
|
[item](../../modules/item.zh.md).TextStyleProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: TorusGeometryProps
|
title: TorusGeometryProps
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / TorusGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [item](../../modules/item.en.md) / TorusGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.en.md).TorusGeometryProps
|
[item](../../modules/item.en.md).TorusGeometryProps
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: TorusGeometryProps
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / TorusGeometryProps
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [item](../../modules/item.zh.md) / TorusGeometryProps
|
||||||
|
|
||||||
[item](../../modules/item.zh.md).TorusGeometryProps
|
[item](../../modules/item.zh.md).TorusGeometryProps
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: CircularLayoutOptions
|
title: CircularLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / CircularLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / CircularLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).CircularLayoutOptions
|
[layout](../../modules/layout.en.md).CircularLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: CircularLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / CircularLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / CircularLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).CircularLayoutOptions
|
[layout](../../modules/layout.zh.md).CircularLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ComboCombinedLayoutOptions
|
title: ComboCombinedLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ComboCombinedLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ComboCombinedLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).ComboCombinedLayoutOptions
|
[layout](../../modules/layout.en.md).ComboCombinedLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: ComboCombinedLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ComboCombinedLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ComboCombinedLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).ComboCombinedLayoutOptions
|
[layout](../../modules/layout.zh.md).ComboCombinedLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ConcentricLayoutOptions
|
title: ConcentricLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ConcentricLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ConcentricLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).ConcentricLayoutOptions
|
[layout](../../modules/layout.en.md).ConcentricLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: ConcentricLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ConcentricLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ConcentricLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).ConcentricLayoutOptions
|
[layout](../../modules/layout.zh.md).ConcentricLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: D3ForceLayoutOptions
|
title: D3ForceLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / D3ForceLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / D3ForceLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).D3ForceLayoutOptions
|
[layout](../../modules/layout.en.md).D3ForceLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: D3ForceLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / D3ForceLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / D3ForceLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).D3ForceLayoutOptions
|
[layout](../../modules/layout.zh.md).D3ForceLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: DagreLayoutOptions
|
title: DagreLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / DagreLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / DagreLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).DagreLayoutOptions
|
[layout](../../modules/layout.en.md).DagreLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: DagreLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / DagreLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / DagreLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).DagreLayoutOptions
|
[layout](../../modules/layout.zh.md).DagreLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ForceAtlas2LayoutOptions
|
title: ForceAtlas2LayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ForceAtlas2LayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ForceAtlas2LayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).ForceAtlas2LayoutOptions
|
[layout](../../modules/layout.en.md).ForceAtlas2LayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: ForceAtlas2LayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ForceAtlas2LayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ForceAtlas2LayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).ForceAtlas2LayoutOptions
|
[layout](../../modules/layout.zh.md).ForceAtlas2LayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: ForceLayoutOptions
|
title: ForceLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ForceLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / ForceLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).ForceLayoutOptions
|
[layout](../../modules/layout.en.md).ForceLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: ForceLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ForceLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / ForceLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).ForceLayoutOptions
|
[layout](../../modules/layout.zh.md).ForceLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: FruchtermanLayoutOptions
|
title: FruchtermanLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / FruchtermanLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / FruchtermanLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).FruchtermanLayoutOptions
|
[layout](../../modules/layout.en.md).FruchtermanLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: FruchtermanLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / FruchtermanLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / FruchtermanLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).FruchtermanLayoutOptions
|
[layout](../../modules/layout.zh.md).FruchtermanLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: GridLayoutOptions
|
title: GridLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / GridLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / GridLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).GridLayoutOptions
|
[layout](../../modules/layout.en.md).GridLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: GridLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / GridLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / GridLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).GridLayoutOptions
|
[layout](../../modules/layout.zh.md).GridLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: MDSLayoutOptions
|
title: MDSLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / MDSLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / MDSLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).MDSLayoutOptions
|
[layout](../../modules/layout.en.md).MDSLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: MDSLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / MDSLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / MDSLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).MDSLayoutOptions
|
[layout](../../modules/layout.zh.md).MDSLayoutOptions
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: RadialLayoutOptions
|
title: RadialLayoutOptions
|
||||||
---
|
---
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / RadialLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.en.md) / [Modules](../../modules.en.md) / [layout](../../modules/layout.en.md) / RadialLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.en.md).RadialLayoutOptions
|
[layout](../../modules/layout.en.md).RadialLayoutOptions
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title: RadialLayoutOptions
|
|||||||
|
|
||||||
> 📋 中文文档还在翻译中... 欢迎 PR
|
> 📋 中文文档还在翻译中... 欢迎 PR
|
||||||
|
|
||||||
[Overview - v5.0.0-beta.12](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / RadialLayoutOptions
|
[Overview - v5.0.0-beta.13](../../README.zh.md) / [Modules](../../modules.zh.md) / [layout](../../modules/layout.zh.md) / RadialLayoutOptions
|
||||||
|
|
||||||
[layout](../../modules/layout.zh.md).RadialLayoutOptions
|
[layout](../../modules/layout.zh.md).RadialLayoutOptions
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user