ChiGao
ChiGao
- [x] I have searched the [issues](https://github.com/antvis/g2/issues) of this repository and believe that this is not a duplicate. ### Reproduction link [](https://codesandbox.io/s/flamboyant-poitras-n1qykn?file=/index.tsx) ### Steps to reproduce as the...
### 问题描述 如图,需要实现下图类似的效果。左边三个节点的边先聚合,然后再连接到目标节点。  我想到的方案是:利用折线边(polyline),增加controlPoint,可以看到,上述效果 相比普通的折线边,多了A、B两个转折点。 现在的问题是,新增转折点的x坐标很好计算,取起始点、终点之间 1/4,3/4位置即可。但是y坐标需要计算,理想的位置是上图三个聚合节点的中间位置,也就是 图中的y坐标位置。这个位置依赖于 聚合节点中 起始节点 和 最后节点的位置(x,y坐标),然后看了代码之后发现 节点 和 边 是**一起渲染**的,而不是 先渲染所有的点,最后渲染所有的边。这就导致 渲染聚合节点的边时 无法拿到 其他聚合节点的位置,因此y坐标无法计算。 求教是否有其他合适的方式计算y坐标 或者 可以达到类似效果的方法。🙏🙏 ### 重现链接 无 ### 重现步骤 如问题描述...
Should the project run with tf v1.x? So Will you update the project with newest version of tf?
 like the image shows, I will start a language client when the extension activated. But it shows error when I input some codes. Any one could help me with...
when I used this storage adapter, the image url always is `http` rather than `https`. when I check the OSS SDK documentation, it shows that we should add `secure: true`...
开发者您好,我在使用Circular布局时,发现如果是Circle类型的节点,可以完美适配,但对于矩形(Rect)等宽高不一致的场景时,经常会导致节点重叠,此时除了增加半径并无更多办法。 我想到一个比较好的适配是,针对矩形等场景,可以设置为椭圆形布局,这样可以增大横向间距,从而让布局更加自然。参考下方两个图:   简单的demo可以参考[链接](https://codesandbox.io/p/sandbox/intelligent-archimedes-q66s77?file=%2Findex.js%3A74%2C15)
开发者您好,我尝试使用Circular布局,我基于[Demo](https://observablehq.com/d/2db6b0cc5e97d8d6#cell-38)地址完成了布局,但是发现第一个节点位置始终从最右侧开始的, 如下图:  我同时查看了NPM包中的`CircularLayoutOptions` 声明,也未找到类似的参数。想请问下,能否指定开始节点的位置? 可能的参数是: ```ts { startNodePosition: 'top' | 'bottom' | 'left' | 'target'; } ``` 复现链接: https://codesandbox.io/p/sandbox/beautiful-rosalind-h4g647?file=%2Findex.js