@visactor/vchart-types 1.8.7 → 1.8.8-alpha.0

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.
@@ -6,7 +6,10 @@ export declare function setDefaultCrosshairForCartesianChart(spec: ICartesianCha
6
6
  export declare function calculateChartSize(spec: {
7
7
  width?: number;
8
8
  height?: number;
9
- }, option: Pick<IChartOption, 'canvas' | 'container' | 'mode' | 'modeParams'>): {
9
+ }, option: Pick<IChartOption, 'canvas' | 'container' | 'mode' | 'modeParams'>, defaultSize: {
10
+ width: number;
11
+ height: number;
12
+ }): {
10
13
  width: number;
11
14
  height: number;
12
15
  };
@@ -15,6 +15,7 @@ export declare const labelRuleMap: {
15
15
  arc3d: typeof pieLabel;
16
16
  treemap: typeof treemapLabel;
17
17
  };
18
+ export declare function defaultLabelConfig(rule: string, labelInfo: ILabelInfo): any;
18
19
  export declare function textAttribute(labelInfo: ILabelInfo, datum: Datum, formatMethod?: ILabelSpec['formatMethod'], formatter?: ILabelSpec['formatter']): any;
19
20
  export declare function symbolLabel(labelInfo: ILabelInfo): {
20
21
  position: string | ((datum: Datum) => any);
@@ -56,6 +56,8 @@ export declare class LineLikeSeriesMixin {
56
56
  protected _dimensionTrigger(params: DimensionEventParams): void;
57
57
  initSymbolMark(progressive?: IMarkProgressiveConfig, isSeriesMark?: boolean): ISymbolMark;
58
58
  initSymbolMarkStyle(): ISymbolMark;
59
+ private _initSymbolMark;
60
+ private _initSymbolActiveMarkAlone;
59
61
  initLabelMarkStyle(labelMark?: ILabelMark): void;
60
62
  initLineLabelMarkStyle(labelMark?: ILabelMark): void;
61
63
  encodeDefined(mark: IMark, attr: string): void;