Youmyin
Results
1
issues of
Youmyin
在4.3.4版本中我遇到了和https://github.com/antvis/G6/issues/2901# 同样的问题,fitview无法适配,必须强制指定width和height ``` const container = document.getElementById('container') const width = container!.clientWidth // 没有任何内容渲染 const height = container!.clientHeight const graph = new G6.Graph({ container:ref.current, width:700, // 直接指定 height:400, linkCenter: true, .......