realchart 0.9.10 → 0.9.11
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 +3 -1
- 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
|
@@ -418,6 +418,7 @@ declare class ChartItem extends RcObject {
|
|
|
418
418
|
protected _doLoadProp(prop: string, value: any): boolean;
|
|
419
419
|
protected _doSave(target: object): void;
|
|
420
420
|
protected _doPrepareRender(chart: IChart): void;
|
|
421
|
+
protected _loadStroke(source: any): boolean;
|
|
421
422
|
}
|
|
422
423
|
declare enum ChartTextEffect {
|
|
423
424
|
NONE = "none",
|
|
@@ -1212,6 +1213,7 @@ declare abstract class AxisItem extends ChartItem {
|
|
|
1212
1213
|
}
|
|
1213
1214
|
declare class AxisLine extends AxisItem {
|
|
1214
1215
|
constructor(axis: Axis);
|
|
1216
|
+
protected _doLoadSimple(source: any): boolean;
|
|
1215
1217
|
}
|
|
1216
1218
|
declare enum AxisTitleAlign {
|
|
1217
1219
|
START = "start",
|
|
@@ -1232,7 +1234,6 @@ declare class AxisTitle extends AxisItem {
|
|
|
1232
1234
|
protected _doLoadSimple(source: any): boolean;
|
|
1233
1235
|
}
|
|
1234
1236
|
declare class AxisGrid extends AxisItem {
|
|
1235
|
-
circular: boolean;
|
|
1236
1237
|
startVisible: boolean;
|
|
1237
1238
|
endVisible: boolean;
|
|
1238
1239
|
constructor(axis: Axis);
|
|
@@ -1318,6 +1319,7 @@ declare class AxisZoom {
|
|
|
1318
1319
|
resize(start: number, end: number): boolean;
|
|
1319
1320
|
}
|
|
1320
1321
|
declare abstract class Axis extends ChartItem implements IAxis {
|
|
1322
|
+
_isPolar: boolean;
|
|
1321
1323
|
_isX: boolean;
|
|
1322
1324
|
_isHorz: boolean;
|
|
1323
1325
|
_isOpposite: boolean;
|