realchart 0.9.13 → 0.9.14
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 +4 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +20 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -125,6 +125,8 @@ declare abstract class RcControl extends RcWrappableObject {
|
|
|
125
125
|
height(): number;
|
|
126
126
|
setData(data: string, value: any, container?: boolean): void;
|
|
127
127
|
clearDefs(): void;
|
|
128
|
+
private $_clearDefs;
|
|
129
|
+
clearAssetDefs(): void;
|
|
128
130
|
clearTemporaryDefs(): void;
|
|
129
131
|
appendDom(elt: HTMLElement): void;
|
|
130
132
|
addElement(elt: RcElement): void;
|
|
@@ -182,6 +184,7 @@ declare abstract class RcControl extends RcWrappableObject {
|
|
|
182
184
|
declare class RcElement extends RcObject {
|
|
183
185
|
static TESTING: boolean;
|
|
184
186
|
static DEBUGGING: boolean;
|
|
187
|
+
static ASSET_KEY: string;
|
|
185
188
|
static TEMP_KEY: string;
|
|
186
189
|
private _visible;
|
|
187
190
|
private _x;
|
|
@@ -338,6 +341,7 @@ declare enum TextOverflow {
|
|
|
338
341
|
ELLIPSIS = "ellipsis"
|
|
339
342
|
}
|
|
340
343
|
declare class TextElement extends RcElement {
|
|
344
|
+
static createCenter(doc: Document): TextElement;
|
|
341
345
|
private _layout;
|
|
342
346
|
private _overflow;
|
|
343
347
|
private _dirty;
|
|
@@ -510,7 +514,6 @@ declare class DataPoint {
|
|
|
510
514
|
getValueOf: (traget: any, param: string) => any;
|
|
511
515
|
swap(): void;
|
|
512
516
|
protected _assignTo(proxy: any): any;
|
|
513
|
-
protected _colorIndex(): number;
|
|
514
517
|
protected _readArray(series: ISeries, v: any[]): void;
|
|
515
518
|
protected _readObject(series: ISeries, v: any): void;
|
|
516
519
|
protected _readSingle(v: any): void;
|