G6
G6 copied to clipboard
♾ A Graph Visualization Framework in JavaScript.
### Describe the bug / 问题描述 demo如下 ``` import { Graph } from '@antv/g6'; import { Renderer as SVGRenderer } from '@antv/g-svg'; export default { mounted() { const graph =...
### Describe the bug / 问题描述 Incorrect processing of the FrontElement graph function, when capturing a combo, it does not take into account the fact that the nodes lying in...
### Describe the bug / 问题描述 在官网中使用webGL引擎 点击节点 节点应该渲染选中的状态 但是有时候渲染出来的效果是错的 https://g6.antv.antgroup.com/examples/behavior/select/#click 代码 import { Graph } from '@antv/g6'; import { Renderer as WebGLRenderer } from '@antv/g-webgl' const data = {...
### Describe the feature / 功能描述 I hope each icon in the toolbar has a title attribute, so that we can know the name of the current icon when hovering,...
### Describe the bug / 问题描述 在官网示例中尝试 WebWorker 加速 force 布局计算,效果不符合预期 开启前: 开启后 ### Reproduction link / 复现链接 https://g6.antv.antgroup.com/examples/layout/force-directed/#force ### Steps to Reproduce the Bug or Issue / 重现步骤 _No...
### Describe the bug / 问题描述 When using `antv-dagre` layout, if user setData to add a combo, and calls `graph.render` immediately would cause the wrong result you can check the...
### Describe the bug / 问题描述 https://github.com/user-attachments/assets/1791d7a7-b210-4746-9608-86284cf1c064 ### Reproduction link / 复现链接 https://codesandbox.io/p/sandbox/flhjkp ### Steps to Reproduce the Bug or Issue / 重现步骤 官网demo可复现,在mindmap布局下重复调用layout和fitView函数,会导致minimap渲染偏移 ### Version / 版本 🆕 5.x...
### Describe the bug / 问题描述 For example, methods in `BaseNode` like: `drawKeyShape()`, `getIconStyle()`, and `getKeyStyle()` don't exist on interface `Node`. --- In this branch, I added: ``` ts type...
### Describe the bug / 问题描述 The `Node`, `Edge` and `Combo` interfaces are missing the `type` property: https://github.com/Crystal-RainSlide/G6/blob/74c0497a2cc21ce655d419034d395db1234c22f4/packages/g6/src/types/element.ts#L10 Without the `type` property, one can't even distinguish between `Element`, or, `Node...
### Describe the bug / 问题描述  在v4版本包含combo的布局中,期望所有的边线均置于combo、node的底部,但实际上配置了goupByTypes: false,以及用了toFront、toBack等方法后也没有用。 但在v5中默认边线就在最底层,请问v4中有办法实现这个逻辑吗? ### Reproduction link / 复现链接 https://g6-v4.antv.vision/examples/interaction/combo/#rect ### Steps to Reproduce the Bug or Issue / 重现步骤  使用官方示例即可复现,在graph配置中添加goupByTypes: false,将所有combo、node用item.toFront(),将edge用item.toBack()改变层级后也没法实现 ...