@visactor/vchart-types 1.11.12 → 1.11.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -72,7 +72,7 @@ export declare abstract class PolarAxis<T extends IPolarAxisCommonSpec = IPolarA
72
72
  positionToData(position: IPoint): number;
73
73
  coordToPoint(point: IPolarPoint): IPoint;
74
74
  pointToCoord(point: IPoint): IPolarPoint;
75
- getCenter(): IPoint;
75
+ getCenter: () => IPoint;
76
76
  getOuterRadius(): number;
77
77
  getInnerRadius(): number;
78
78
  updateLayoutAttribute(): void;
@@ -10,4 +10,7 @@ export declare const getPolarAxisInfo: (spec: IPolarAxisCommonSpec, chartSpec: a
10
10
  outerRadius: any;
11
11
  layoutRadius: any;
12
12
  };
13
- export declare const computeLayoutRadius: (layoutRadius: number | "auto" | ((layoutRect: ILayoutRect, center: IPoint) => number), getLayoutRect: () => ILayoutRect, getCenter: () => IPoint, startAngle?: number, endAngle?: number) => number;
13
+ export declare const computeLayoutRadius: (getLayoutRadius: () => number | "auto" | ((layoutRect: ILayoutRect, center: IPoint) => number), getLayoutRect: () => ILayoutRect, getCenter: () => IPoint, getAngles: () => {
14
+ startAngle: number;
15
+ endAngle: number;
16
+ }) => number;