Merge pull request 'fix: handle added ctx' (#428) from fix_charts_build into @hera/dev

Reviewed-on: daoyoucloud/tachycode#428
This commit is contained in:
sealday 2024-03-19 17:05:56 +08:00
commit bd39b36d65

View File

@ -31,8 +31,8 @@ export class Pie extends G2PlotChart {
};
};
getProps({ data, general, advanced, fieldProps }: RenderProps) {
const props = super.getProps({ data, general, advanced, fieldProps });
getProps({ data, general, advanced, fieldProps, ctx }: RenderProps) {
const props = super.getProps({ data, general, advanced, fieldProps, ctx });
return {
...props,
tooltip: (d, index: number, data, column: any) => {