realchart 1.1.1 → 1.1.2
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 +14 -14
- package/dist/index.esm.js +1 -1
- package/dist/index.ie.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* RealReport-Chart 라이브러리 클래스 모델의 최상위 base 클래스.
|
|
3
3
|
* <br>
|
|
4
4
|
*
|
|
5
|
-
* @see
|
|
6
|
-
* @see
|
|
5
|
+
* @see concepts.dev_guide 개발 가이드
|
|
6
|
+
* @see concepts.about RealTouch 개요
|
|
7
7
|
*/
|
|
8
8
|
declare abstract class RcObject {
|
|
9
9
|
static destroy(obj: RcObject): null;
|
|
@@ -23,7 +23,6 @@ declare abstract class RcObject {
|
|
|
23
23
|
destroy(): null;
|
|
24
24
|
protected _doDestroy(): void;
|
|
25
25
|
get destroying(): boolean;
|
|
26
|
-
get orphaned(): boolean;
|
|
27
26
|
get hash(): string;
|
|
28
27
|
isMe(hash: string): boolean;
|
|
29
28
|
toString(): string;
|
|
@@ -8780,8 +8779,8 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
|
|
|
8780
8779
|
getTooltipContext(scope: TooltipScope, series: ISeries, point: DataPoint): ITooltipContext;
|
|
8781
8780
|
get chart(): IChart;
|
|
8782
8781
|
anchorByName(name: string): ChartItem;
|
|
8783
|
-
get type(): "
|
|
8784
|
-
get gaugeType(): "
|
|
8782
|
+
get type(): "line" | "bar" | "barrange" | "bargroup" | "bellcurve" | "boxplot" | "bubble" | "bump" | "candlestick" | "circlebar" | "circlebargroup" | "dumbbell" | "equalizer" | "errorbar" | "funnel" | "heatmap" | "histogram" | "arearange" | "area" | "areagroup" | "linegroup" | "spline" | "lollipop" | "ohlc" | "pareto" | "pie" | "piegroup" | "scatter" | "treemap" | "vector" | "waterfall";
|
|
8783
|
+
get gaugeType(): "linear" | "circle" | "bullet" | "clock";
|
|
8785
8784
|
get polar(): boolean;
|
|
8786
8785
|
get inverted(): boolean;
|
|
8787
8786
|
get timeOffset(): number;
|
|
@@ -9240,10 +9239,10 @@ interface IRcLocale {
|
|
|
9240
9239
|
*/
|
|
9241
9240
|
declare class Globals {
|
|
9242
9241
|
/**
|
|
9243
|
-
* RealChart
|
|
9242
|
+
* RealChart 라이브러리 버전 정보를 리턴한다.
|
|
9244
9243
|
*
|
|
9245
9244
|
* ```js
|
|
9246
|
-
* console.log(RealChart.getVersion()); //
|
|
9245
|
+
* console.log(RealChart.getVersion()); // '1.1.2'
|
|
9247
9246
|
* ```
|
|
9248
9247
|
*
|
|
9249
9248
|
* @returns 버전 문자열
|
|
@@ -9252,7 +9251,7 @@ declare class Globals {
|
|
|
9252
9251
|
static setLocale(lang: string, config?: IRcLocale): void;
|
|
9253
9252
|
static registerLocale(lang: string, config: IRcLocale): void;
|
|
9254
9253
|
/**
|
|
9255
|
-
* true로 지정하면 차트 요소별 디버그 경계를
|
|
9254
|
+
* true로 지정하면 차트 요소별 디버그 경계를 표시한다.\
|
|
9256
9255
|
* 기본은 false 상태다.
|
|
9257
9256
|
*
|
|
9258
9257
|
* ```js
|
|
@@ -9263,16 +9262,15 @@ declare class Globals {
|
|
|
9263
9262
|
*/
|
|
9264
9263
|
static setDebugging(debug: boolean): void;
|
|
9265
9264
|
/**
|
|
9266
|
-
* true로 지정하면 라이브러리 내부 메시지를
|
|
9267
|
-
* 기본값을 false다.
|
|
9265
|
+
* true로 지정하면 라이브러리 내부 메시지를 출력한다.
|
|
9268
9266
|
*
|
|
9269
9267
|
* @param logging 로그 메시지 표시 여부
|
|
9270
9268
|
*/
|
|
9271
9269
|
static setLogging(logging: boolean): void;
|
|
9272
9270
|
/**
|
|
9273
9271
|
* false로 지정하면 시리즈 시작 애니메이션 등을 포함,
|
|
9274
|
-
* 모든 애니메이션을 실행하지
|
|
9275
|
-
*
|
|
9272
|
+
* 모든 애니메이션을 실행하지 않는다.\
|
|
9273
|
+
* 기본은 animation이 가능한 상태다.
|
|
9276
9274
|
*
|
|
9277
9275
|
* ```js
|
|
9278
9276
|
* RealChart.setAnimatable(false);
|
|
@@ -9282,7 +9280,7 @@ declare class Globals {
|
|
|
9282
9280
|
*/
|
|
9283
9281
|
static setAnimatable(value: boolean): void;
|
|
9284
9282
|
/**
|
|
9285
|
-
* 차트 설정 모델을
|
|
9283
|
+
* 차트 설정 모델을 기빈으로 svg를 생성한 후,
|
|
9286
9284
|
* 지정된 div 엘리먼트의 유일한 자식으로 포함시킨다.\
|
|
9287
9285
|
* div 전체 영역의 크기로 표시된다.
|
|
9288
9286
|
*
|
|
@@ -9296,7 +9294,6 @@ declare class Globals {
|
|
|
9296
9294
|
* @param animate 첫 로딩 animation을 실행한다.
|
|
9297
9295
|
* @param calllback 차트가 모두 로드되고 첫 렌더링이 완료된 후 호출되는 콜백 함수.
|
|
9298
9296
|
* @returns 생성된 차트 객체
|
|
9299
|
-
* @see {@link createData}
|
|
9300
9297
|
*/
|
|
9301
9298
|
static createChart(doc: Document, container: string | HTMLDivElement, config: ChartConfiguration, animate?: boolean, callback?: () => void): Chart;
|
|
9302
9299
|
/**
|
|
@@ -11295,6 +11292,9 @@ declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
|
11295
11292
|
protected _doSetSimple(src: any): boolean;
|
|
11296
11293
|
}
|
|
11297
11294
|
|
|
11295
|
+
/**
|
|
11296
|
+
* Globals
|
|
11297
|
+
*/
|
|
11298
11298
|
declare const getVersion: typeof Globals.getVersion;
|
|
11299
11299
|
declare const setDebugging: typeof Globals.setDebugging;
|
|
11300
11300
|
declare const setLogging: typeof Globals.setLogging;
|