@visactor/vchart-types 2.0.5-alpha.4 → 2.0.5

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.
@@ -92,6 +92,7 @@ export type IMarkerSpec = IComponentSpec & {
92
92
  clip?: boolean;
93
93
  name?: string;
94
94
  coordinateType?: string;
95
+ includeFullBand?: boolean;
95
96
  };
96
97
  export type IMarkerSymbol = IMarkerRef & {
97
98
  visible: boolean;
@@ -5,7 +5,7 @@ import type { IDataPos, IMarkerAttributeContext, IMarkerLabelSpec, IMarkerState,
5
5
  import type { IRegion } from '../../region/interface';
6
6
  import type { OffsetPoint } from './interface';
7
7
  export declare function isAggrSpec(spec: IDataPos): boolean;
8
- export declare function xyLayout(data: DataView, startRelativeSeries: IMarkerSupportSeries, endRelativeSeries: IMarkerSupportSeries, relativeSeries: IMarkerSupportSeries, autoRange: boolean): IPoint[][];
8
+ export declare function xyLayout(data: DataView, startRelativeSeries: IMarkerSupportSeries, endRelativeSeries: IMarkerSupportSeries, relativeSeries: IMarkerSupportSeries, autoRange: boolean, includeFullBand?: boolean): IPoint[][];
9
9
  export declare function polarLayout(data: DataView, startRelativeSeries: IMarkerSupportSeries, endRelativeSeries: IMarkerSupportSeries, relativeSeries: IMarkerSupportSeries, autoRange: boolean): IPolarPoint[][];
10
10
  export declare function geoLayout(data: DataView, relativeSeries: IMarkerSupportSeries): IPoint[][];
11
11
  export declare function cartesianCoordinateLayout(data: DataView, relativeSeries: IMarkerSupportSeries, autoRange: boolean, coordinatesOffset: OffsetPoint[] | OffsetPoint): IPoint[];
package/types/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from './chart';
5
5
  export * from './chart/base';
6
6
  export * from './chart/cartesian';
7
7
  export * from './chart/common';
8
+ export * from './chart/stack';
8
9
  export * from './series';
9
10
  export * from './mark';
10
11
  export * from './component';
@@ -49,6 +49,8 @@ export interface IRegionSpec extends ILayoutItemSpec {
49
49
  export interface IGeoRegionSpec extends IRegionSpec {
50
50
  coordinate?: 'geo';
51
51
  roam?: boolean | {
52
+ zoom?: boolean;
53
+ drag?: boolean;
52
54
  blank?: boolean;
53
55
  };
54
56
  longitudeField?: string;