realchart 0.9.38 → 0.9.39
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.
- package/dist/index.d.ts +6 -4
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -897,7 +897,7 @@ interface IPlottingItem {
|
|
|
897
897
|
isEmpty(visibleOnly: any): boolean;
|
|
898
898
|
canCategorized(): boolean;
|
|
899
899
|
defaultYAxisType(): string;
|
|
900
|
-
|
|
900
|
+
isClusterable(): boolean;
|
|
901
901
|
getBaseValue(axis: IAxis): number;
|
|
902
902
|
isBased(axis: IAxis): boolean;
|
|
903
903
|
canMinPadding(axis: IAxis, min: number): boolean;
|
|
@@ -1075,7 +1075,7 @@ declare abstract class Series extends ChartItem implements ISeries, IChartDataLi
|
|
|
1075
1075
|
canCategorized(): boolean;
|
|
1076
1076
|
hasZ(): boolean;
|
|
1077
1077
|
defaultYAxisType(): string;
|
|
1078
|
-
|
|
1078
|
+
isClusterable(): boolean;
|
|
1079
1079
|
displayName(): string;
|
|
1080
1080
|
legendMarker(doc: Document, size: number): RcElement;
|
|
1081
1081
|
legendColor(): string;
|
|
@@ -1089,13 +1089,14 @@ declare abstract class Series extends ChartItem implements ISeries, IChartDataLi
|
|
|
1089
1089
|
hasMarker(): boolean;
|
|
1090
1090
|
setShape(shape: Shape): void;
|
|
1091
1091
|
seriesChanged(): boolean;
|
|
1092
|
+
getMinPointWidth(): number;
|
|
1092
1093
|
getVisibleSeries(): ISeries[];
|
|
1093
1094
|
needClip(polar: boolean): boolean;
|
|
1094
1095
|
setCol(col: number): void;
|
|
1095
1096
|
setRow(row: number): void;
|
|
1096
1097
|
initPoints(source: any[]): DataPoint[];
|
|
1097
1098
|
private $_getXStart;
|
|
1098
|
-
|
|
1099
|
+
private $_getXStep;
|
|
1099
1100
|
prepareRender(): void;
|
|
1100
1101
|
prepareAfter(): void;
|
|
1101
1102
|
collectCategories(axis: IAxis): string[];
|
|
@@ -1229,7 +1230,7 @@ declare abstract class SeriesGroup<T extends Series> extends ChartItem implement
|
|
|
1229
1230
|
isEmpty(): boolean;
|
|
1230
1231
|
canCategorized(): boolean;
|
|
1231
1232
|
defaultYAxisType(): string;
|
|
1232
|
-
|
|
1233
|
+
isClusterable(): boolean;
|
|
1233
1234
|
getBaseValue(axis: IAxis): number;
|
|
1234
1235
|
getVisibleSeries(): ISeries[];
|
|
1235
1236
|
layoutMax: number;
|
|
@@ -1864,6 +1865,7 @@ declare abstract class Axis extends ChartItem implements IAxis {
|
|
|
1864
1865
|
_prevSeries: IPlottingItem[];
|
|
1865
1866
|
_seriesChanged: boolean;
|
|
1866
1867
|
_prevRate: number;
|
|
1868
|
+
_zooming: boolean;
|
|
1867
1869
|
_animating(): boolean;
|
|
1868
1870
|
constructor(chart: IChart, isX: boolean, name?: string);
|
|
1869
1871
|
abstract _type(): string;
|