Feifei
Feifei
supported richtext in label, see demo: https://visactor.io/vchart/demo/pie-chart/richtext-autowrap 
@Crayon-ShinChan Exactly as what you said in Question2, in a utility library, exceptions should not be overused. I think it would be better to consider optimizing the chart display in...
recommend this page https://cloudcenter.tianditu.gov.cn/administrativeDivision
> [@xiaoluoHe](https://github.com/xiaoluoHe) resize 触发的动画可以关掉吗?同步一下配置吧 gif 看上去重复执行的是 appear 动画。 目测是代码里 updateSpec 第四个参数`{ reAnimate: true }`设置问题,可以去掉试一下
@yibird 感谢你的反馈,如果需要进一步针对 issue 反馈进行交流,欢迎扫码加入飞书群交流群:
> [#3687](https://github.com/VisActor/VChart/pull/3687) [@xiaoluoHe](https://github.com/xiaoluoHe) 这个之前的修复貌似有问题,没生效 需要开启 label 交互 ```js label: { visible: true, interactive: true, showRelatedMarkTooltip: true, } ```
检查一下 VChart 引入方式 ```js // 默认的引入方式,可以直接使用,图表无需注册 import VChart from '@visactor/vchart'; // 引入VChart 核心模块,图表需要手动注册 import { VChart } from '@visactor/vchart'; ``` ps. 按需加载[文档](https://visactor.com/vchart/guide/tutorial_docs/Load_on_Demand)
@tangzijun 默认引入会报错的话是不太合理。请提供一个可以复现的 demo 吧
> +1, 最新版本我们也遇到了一样的问题,默认引入方式会报错“init fail”,必须通过第二种方式手动引入 @LiuN1an 请提供一下版本号信息、以及如何图表的使用方式,最好有复现 demo 好定位。 我在 v1.13.6 没有复现问题,demo: [codesandbox](https://codesandbox.io/p/sandbox/line-style-s2ns8s) 
> > 我遇到同样的报错,vite, react. 在本地机器开发的好好的, 放到远程机器上就报错 > >  > > 改成import VChart from '@visactor/vchart'; 报错就解决了 @MingSeng-W 你这个是因为之前用的按需方式引入的,本地开发环境 treeshaking 没生效; 改后是全量引入的,所以正常。 和 issue 原本问题不一样。