We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07223eb commit e5bfc2bCopy full SHA for e5bfc2b
packages/plots/src/core/plots/tiny-line/index.ts
@@ -17,9 +17,10 @@ export class TinyLine extends Plot<TinyLineOptions> {
17
return {
18
type: 'view',
19
children: [{ type: 'line', axis: false }],
20
- animate: {
21
- enter: { type: 'growInX', duration: 500 },
22
- },
+ // 使用该动画,会导致线形图-连接空值 一进入页面渲染不出来,必须要更改窗口尺寸触发重新渲染。建议动画暂时使用默认
+ // animate: {
+ // enter: { type: 'growInX', duration: 500 },
23
+ // },
24
padding: 0,
25
margin: 0,
26
tooltip: false,
0 commit comments