Skip to content

Commit b22f74d

Browse files
authored
Merge pull request #4171 from VisActor/fix/refactor-caused-bugs
Fix/refactor caused bugs
2 parents da8c68b + 0c4a3b3 commit b22f74d

File tree

7 files changed

+331
-107
lines changed

7 files changed

+331
-107
lines changed

packages/vchart-extension/src/charts/image-cloud/series/image-cloud.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,12 @@ export class ImageCloudSeries<T extends IImageCloudSeriesSpec> extends BaseSerie
192192
if (maskImage && (this._spec.layoutConfig as GridLayoutConfig)?.placement === 'masked') {
193193
this._rootMark.getProduct().setAttribute('background', maskImage);
194194
}
195-
}).bind(this)
195+
}).bind(this),
196+
onLayoutFinished: () =>
197+
this._option.globalInstance
198+
.getChart()
199+
.getOption()
200+
.performanceHook?.afterWordcloudShapeDraw?.(this._option.globalInstance)
196201
};
197202
}
198203

0 commit comments

Comments
 (0)