realchart 1.4.30 → 1.4.32
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/gauge.js +2 -2
- package/gauge.mjs +2 -2
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +2 -2
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +2 -2
- package/ie/split.ie.js +2 -2
- package/ie/treemap.ie.js +2 -2
- package/ie/vector.ie.js +2 -2
- package/ie/wordcloud.ie.js +2 -2
- package/index.d.ts +302 -464
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +2 -2
- package/pictogram.mjs +2 -2
- package/split.d.ts +1 -1
- package/split.js +2 -2
- package/split.mjs +2 -2
- package/treemap.js +2 -2
- package/treemap.mjs +2 -2
- package/vector.js +2 -2
- package/vector.mjs +2 -2
- package/wordcloud.js +2 -2
- package/wordcloud.mjs +2 -2
package/index.d.ts
CHANGED
|
@@ -1,44 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
* @see [개발 가이드](/guide/dev-guide)
|
|
6
|
-
* @see [RealChart 개요](/guide)
|
|
7
|
-
*/
|
|
8
|
-
declare abstract class RcObject {
|
|
9
|
-
static destroy(obj: RcObject): null;
|
|
10
|
-
private $_hash;
|
|
11
|
-
private $_destroyed;
|
|
12
|
-
private $_destroying;
|
|
13
|
-
constructor(noHash?: boolean);
|
|
14
|
-
/**
|
|
15
|
-
* 객체가 소유한 참조 등을 해제하고 null을 리턴한다.
|
|
16
|
-
*
|
|
17
|
-
* ```
|
|
18
|
-
* model = model.destroy();
|
|
19
|
-
* ```
|
|
20
|
-
*
|
|
21
|
-
* @returns null
|
|
22
|
-
*/
|
|
23
|
-
destroy(): null;
|
|
24
|
-
protected _doDestroy(): void;
|
|
25
|
-
get destroying(): boolean;
|
|
26
|
-
get orphaned(): boolean;
|
|
27
|
-
get hash(): string;
|
|
28
|
-
isMe(hash: string): boolean;
|
|
29
|
-
toString(): string;
|
|
30
|
-
/**
|
|
31
|
-
* @private
|
|
32
|
-
*
|
|
33
|
-
* template param으로부터 생성되는 값은 문자열일 수 있다.
|
|
34
|
-
*/
|
|
35
|
-
toBool(v: any): boolean;
|
|
36
|
-
toNum(v: any, def?: number): number;
|
|
37
|
-
}
|
|
1
|
+
import * as _realgrid_common from '@realgrid/common';
|
|
2
|
+
import { RObject, Align, PercentSize, IPercentSize, ISides, IRect, VerticalAlign, TextFormatter, ROptionable, TextOrientation, ROptions } from '@realgrid/common';
|
|
3
|
+
export { Align, IPercentSize, IRect, ORG_ANGLE, PI_2, PercentSize, RAD_DEG, RObject, RObject as RcObject, absv, assignObj, calcPercent, copyObj, cos, createRect, incv, isArray, isEmptyRect, isNumber, isObject, isString, maxv, minv, pickNum, pickProp, pickProp3, pixel, rectToSize, sin } from '@realgrid/common';
|
|
4
|
+
|
|
38
5
|
/**
|
|
39
6
|
* @private
|
|
40
7
|
*/
|
|
41
|
-
declare abstract class EventProvider<T> extends
|
|
8
|
+
declare abstract class EventProvider<T> extends RObject {
|
|
42
9
|
private _listeners;
|
|
43
10
|
_addListener(listener: T): void;
|
|
44
11
|
_removeListener(listener: T): void;
|
|
@@ -176,76 +143,8 @@ declare class Size {
|
|
|
176
143
|
constructor(width?: number, height?: number);
|
|
177
144
|
}
|
|
178
145
|
|
|
179
|
-
/**
|
|
180
|
-
* @private
|
|
181
|
-
*/
|
|
182
|
-
declare const PI_2: number;
|
|
183
|
-
declare const ORG_ANGLE: number;
|
|
184
|
-
/**
|
|
185
|
-
* @private
|
|
186
|
-
*/
|
|
187
|
-
declare const RAD_DEG: number;
|
|
188
|
-
/**
|
|
189
|
-
* @private
|
|
190
|
-
*/
|
|
191
|
-
declare function fixnum(value: number): number;
|
|
192
|
-
declare function toStr(value: any): string;
|
|
193
|
-
/**
|
|
194
|
-
* @private
|
|
195
|
-
*/
|
|
196
|
-
declare function pixel(v: number): string;
|
|
197
146
|
type PathValue = string | number;
|
|
198
147
|
type Path = string | any[];
|
|
199
|
-
/**
|
|
200
|
-
* 123, '10%' 형식으로 크기를 지정한다.
|
|
201
|
-
*/
|
|
202
|
-
type PercentSize = string | number;
|
|
203
|
-
interface IPercentSize {
|
|
204
|
-
size: number;
|
|
205
|
-
fixed: boolean;
|
|
206
|
-
}
|
|
207
|
-
/**
|
|
208
|
-
* @private
|
|
209
|
-
*/
|
|
210
|
-
declare function parsePercentSize(sv: PercentSize, enableNull: boolean, def?: number): IPercentSize;
|
|
211
|
-
/**
|
|
212
|
-
* @private
|
|
213
|
-
*/
|
|
214
|
-
declare function calcPercent(size: IPercentSize, domain: number, def?: number): number;
|
|
215
|
-
/**
|
|
216
|
-
* 수평 정렬.
|
|
217
|
-
* @enum
|
|
218
|
-
*/
|
|
219
|
-
declare const _Align: {
|
|
220
|
-
/**
|
|
221
|
-
* 왼쪽으로 정렬한다.
|
|
222
|
-
*/
|
|
223
|
-
readonly LEFT: "left";
|
|
224
|
-
/**
|
|
225
|
-
* 영역 가운데로 정렬한다.
|
|
226
|
-
*/
|
|
227
|
-
readonly CENTER: "center";
|
|
228
|
-
/**
|
|
229
|
-
* 오른쪽으로 정렬한다.
|
|
230
|
-
*/
|
|
231
|
-
readonly RIGHT: "right";
|
|
232
|
-
};
|
|
233
|
-
/** @dummy */
|
|
234
|
-
type Align = typeof _Align[keyof typeof _Align];
|
|
235
|
-
/**
|
|
236
|
-
* 수직 정렬.
|
|
237
|
-
* @enum
|
|
238
|
-
*/
|
|
239
|
-
declare const _VerticalAlign: {
|
|
240
|
-
/** */
|
|
241
|
-
readonly TOP: "top";
|
|
242
|
-
/** */
|
|
243
|
-
readonly MIDDLE: "middle";
|
|
244
|
-
/** */
|
|
245
|
-
readonly BOTTOM: "bottom";
|
|
246
|
-
};
|
|
247
|
-
/** @dummy */
|
|
248
|
-
type VerticalAlign = typeof _VerticalAlign[keyof typeof _VerticalAlign];
|
|
249
148
|
/**
|
|
250
149
|
* SVG 스타일 속성.<br/>
|
|
251
150
|
* {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute SVG 속성}을 참조한다.<br/>
|
|
@@ -317,85 +216,11 @@ interface SVGStyles {
|
|
|
317
216
|
}
|
|
318
217
|
/** @dummy */
|
|
319
218
|
type SVGStyleOrClass = SVGStyles | string;
|
|
219
|
+
declare function fixnum(value: number): number;
|
|
320
220
|
/**
|
|
321
|
-
*
|
|
322
|
-
* @enum
|
|
323
|
-
*/
|
|
324
|
-
declare const _ChartTextEffect: {
|
|
325
|
-
/**
|
|
326
|
-
* 효과 없음.
|
|
327
|
-
*/
|
|
328
|
-
readonly NONE: "none";
|
|
329
|
-
/**
|
|
330
|
-
* 텍스트 색상과 대조되는 색상으로 텍스트 외곽을 구분 표시한다.
|
|
331
|
-
*/
|
|
332
|
-
readonly OUTLINE: "outline";
|
|
333
|
-
/**
|
|
334
|
-
* 텍스트 배경 상자를 표시한다.<br/>
|
|
335
|
-
* 배경 상자에 {@link backgroundStyle}이 적용된다.
|
|
336
|
-
* 스타일이 적용되지 않으면 기본 'rct-text-background'가 적용된다.
|
|
337
|
-
*/
|
|
338
|
-
readonly BACKGROUND: "background";
|
|
339
|
-
};
|
|
340
|
-
/** @dummy */
|
|
341
|
-
type ChartTextEffect = typeof _ChartTextEffect[keyof typeof _ChartTextEffect];
|
|
342
|
-
/**
|
|
343
|
-
* @enum
|
|
344
|
-
*/
|
|
345
|
-
declare const _ChartTextOverflow: {
|
|
346
|
-
readonly CLIP: "clip";
|
|
347
|
-
readonly ELLIPSIS: "ellipsis";
|
|
348
|
-
readonly WRAP: "wrap";
|
|
349
|
-
};
|
|
350
|
-
/** @dummy */
|
|
351
|
-
type ChartTextOverflow = typeof _ChartTextOverflow[keyof typeof _ChartTextOverflow];
|
|
352
|
-
interface IMinMax {
|
|
353
|
-
min: number;
|
|
354
|
-
max: number;
|
|
355
|
-
}
|
|
356
|
-
interface ISides {
|
|
357
|
-
left: number;
|
|
358
|
-
right: number;
|
|
359
|
-
top: number;
|
|
360
|
-
bottom: number;
|
|
361
|
-
horz?: number;
|
|
362
|
-
vert?: number;
|
|
363
|
-
}
|
|
364
|
-
interface ISides {
|
|
365
|
-
left: number;
|
|
366
|
-
right: number;
|
|
367
|
-
top: number;
|
|
368
|
-
bottom: number;
|
|
369
|
-
horz?: number;
|
|
370
|
-
vert?: number;
|
|
371
|
-
}
|
|
372
|
-
/**
|
|
373
|
-
* @enum
|
|
374
|
-
*/
|
|
375
|
-
declare const _AlignBase: {
|
|
376
|
-
/**
|
|
377
|
-
*
|
|
378
|
-
*/
|
|
379
|
-
readonly CHART: "chart";
|
|
380
|
-
/**
|
|
381
|
-
*
|
|
382
|
-
*/
|
|
383
|
-
readonly BODY: "body";
|
|
384
|
-
/**
|
|
385
|
-
* 상위 모델이 존재하는 경우 상위 모델 영역 기준.\
|
|
386
|
-
* 상위가 없으면 기본값(대부분 'body')과 동일.
|
|
387
|
-
* ex) subtitle인 경우 title 기준.
|
|
388
|
-
*
|
|
389
|
-
*
|
|
390
|
-
*/
|
|
391
|
-
readonly PARENT: "parent";
|
|
392
|
-
};
|
|
393
|
-
/** @dummy */
|
|
394
|
-
type AlignBase = typeof _AlignBase[keyof typeof _AlignBase];
|
|
395
|
-
/**
|
|
396
|
-
* {@link https://realchart.co.kr/config/config/base/series#viewranges viewRanges} 등에 설정할 수 있는 값 범위 정보.<br/>
|
|
221
|
+
* {@link https://realchart.co.kr/config/config/base/series#viewRanges viewRanges} 등에 설정할 수 있는 값 범위 정보.<br/>
|
|
397
222
|
* 시작, 끝 값과 영역에 표시할 색상 및 label을 지정한다.
|
|
398
|
-
* {@link https://realchart.co.kr/config/config/base/series#
|
|
223
|
+
* {@link https://realchart.co.kr/config/config/base/series#viewRanges viewRanges}에는 이 설정 객체 배열로 지정한다.
|
|
399
224
|
*/
|
|
400
225
|
interface ValueRange {
|
|
401
226
|
/**
|
|
@@ -418,7 +243,7 @@ interface ValueRange {
|
|
|
418
243
|
areaStyle?: SVGStyleOrClass;
|
|
419
244
|
}
|
|
420
245
|
/**
|
|
421
|
-
* {@link https://realchart.co.kr/config/config/base/series#
|
|
246
|
+
* {@link https://realchart.co.kr/config/config/base/series#viewRanges viewRanges}에 설정할 수 있는 값 범위 목록.<br/>
|
|
422
247
|
*/
|
|
423
248
|
interface ValueRangeList {
|
|
424
249
|
/**
|
|
@@ -453,6 +278,10 @@ interface ValueRangeList {
|
|
|
453
278
|
* fromValue를 기준으로 정렬한다.
|
|
454
279
|
*/
|
|
455
280
|
declare const buildValueRanges: (source: ValueRange[] | ValueRangeList, min: number, max: number, inclusive?: boolean, strict?: boolean, fill?: boolean, color?: string) => ValueRange[];
|
|
281
|
+
interface IMinMax {
|
|
282
|
+
min: number;
|
|
283
|
+
max: number;
|
|
284
|
+
}
|
|
456
285
|
/**
|
|
457
286
|
* 색상 목록에서 색을 가져오는 방식.
|
|
458
287
|
* @enum
|
|
@@ -492,6 +321,38 @@ declare const _SeriesLoadAnimation: {
|
|
|
492
321
|
};
|
|
493
322
|
/** @dummy */
|
|
494
323
|
type SeriesLoadAnimation = typeof _SeriesLoadAnimation[keyof typeof _SeriesLoadAnimation];
|
|
324
|
+
/**
|
|
325
|
+
* 텍스트 표시 효과.
|
|
326
|
+
* @enum
|
|
327
|
+
*/
|
|
328
|
+
declare const _ChartTextEffect: {
|
|
329
|
+
/**
|
|
330
|
+
* 효과 없음.
|
|
331
|
+
*/
|
|
332
|
+
readonly NONE: "none";
|
|
333
|
+
/**
|
|
334
|
+
* 텍스트 색상과 대조되는 색상으로 텍스트 외곽을 구분 표시한다.
|
|
335
|
+
*/
|
|
336
|
+
readonly OUTLINE: "outline";
|
|
337
|
+
/**
|
|
338
|
+
* 텍스트 배경 상자를 표시한다.<br/>
|
|
339
|
+
* 배경 상자에 {@link backgroundStyle}이 적용된다.
|
|
340
|
+
* 스타일이 적용되지 않으면 기본 'rct-text-background'가 적용된다.
|
|
341
|
+
*/
|
|
342
|
+
readonly BACKGROUND: "background";
|
|
343
|
+
};
|
|
344
|
+
/** @dummy */
|
|
345
|
+
type ChartTextEffect = typeof _ChartTextEffect[keyof typeof _ChartTextEffect];
|
|
346
|
+
/**
|
|
347
|
+
* @enum
|
|
348
|
+
*/
|
|
349
|
+
declare const _ChartTextOverflow: {
|
|
350
|
+
readonly CLIP: "clip";
|
|
351
|
+
readonly ELLIPSIS: "ellipsis";
|
|
352
|
+
readonly WRAP: "wrap";
|
|
353
|
+
};
|
|
354
|
+
/** @dummy */
|
|
355
|
+
type ChartTextOverflow = typeof _ChartTextOverflow[keyof typeof _ChartTextOverflow];
|
|
495
356
|
/**
|
|
496
357
|
* @enum
|
|
497
358
|
*/
|
|
@@ -510,24 +371,31 @@ type WritingMode = typeof _WritingMode[keyof typeof _WritingMode];
|
|
|
510
371
|
/**
|
|
511
372
|
* @enum
|
|
512
373
|
*/
|
|
513
|
-
declare const
|
|
514
|
-
/**
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
readonly
|
|
374
|
+
declare const _AlignBase: {
|
|
375
|
+
/**
|
|
376
|
+
*
|
|
377
|
+
*/
|
|
378
|
+
readonly CHART: "chart";
|
|
379
|
+
/**
|
|
380
|
+
*
|
|
381
|
+
*/
|
|
382
|
+
readonly BODY: "body";
|
|
383
|
+
/**
|
|
384
|
+
* 상위 모델이 존재하는 경우 상위 모델 영역 기준.\
|
|
385
|
+
* 상위가 없으면 기본값(대부분 'body')과 동일.
|
|
386
|
+
* ex) subtitle인 경우 title 기준.
|
|
387
|
+
*
|
|
388
|
+
*
|
|
389
|
+
*/
|
|
390
|
+
readonly PARENT: "parent";
|
|
518
391
|
};
|
|
519
392
|
/** @dummy */
|
|
520
|
-
type
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
height: number;
|
|
527
|
-
}
|
|
528
|
-
declare const createRect: (x: number, y: number, width: number, height: number) => IRect;
|
|
529
|
-
declare function rectToSize(r: IRect): Size;
|
|
530
|
-
declare function isEmptyRect(r: IRect): boolean;
|
|
393
|
+
type AlignBase = typeof _AlignBase[keyof typeof _AlignBase];
|
|
394
|
+
declare function toStr(value: any): string;
|
|
395
|
+
/**
|
|
396
|
+
* @private
|
|
397
|
+
*/
|
|
398
|
+
declare function parsePercentSize(sv: PercentSize, enableNull: boolean, def?: number): IPercentSize;
|
|
531
399
|
|
|
532
400
|
/**
|
|
533
401
|
* @enum
|
|
@@ -757,7 +625,7 @@ interface IPointerHandler {
|
|
|
757
625
|
*
|
|
758
626
|
* Control base.
|
|
759
627
|
*/
|
|
760
|
-
declare abstract class RcControl extends
|
|
628
|
+
declare abstract class RcControl extends RObject implements IAssetOwner {
|
|
761
629
|
static readonly CLASS_NAME = "rct-control";
|
|
762
630
|
static readonly SHADOW_FILTER = "rr-chart-shadow-filter";
|
|
763
631
|
static _animatable: boolean;
|
|
@@ -787,7 +655,7 @@ declare abstract class RcControl extends RcObject implements IAssetOwner {
|
|
|
787
655
|
_padding: ISides;
|
|
788
656
|
private _bounds;
|
|
789
657
|
constructor(doc: Document, container: string | HTMLDivElement, className?: string);
|
|
790
|
-
protected
|
|
658
|
+
protected _doDispose(): void;
|
|
791
659
|
isInited(): boolean;
|
|
792
660
|
isTesting(): boolean;
|
|
793
661
|
doc(): Document;
|
|
@@ -879,7 +747,7 @@ declare abstract class RcControl extends RcObject implements IAssetOwner {
|
|
|
879
747
|
* RcContainer 구성 요소.
|
|
880
748
|
* SVGElement들로 구현된다.
|
|
881
749
|
*/
|
|
882
|
-
declare class RcElement extends
|
|
750
|
+
declare class RcElement extends RObject {
|
|
883
751
|
static DEBUGGING: boolean;
|
|
884
752
|
static TESTING: boolean;
|
|
885
753
|
static ASSET_KEY: string;
|
|
@@ -908,7 +776,7 @@ declare class RcElement extends RcObject {
|
|
|
908
776
|
private _parent;
|
|
909
777
|
removing: boolean;
|
|
910
778
|
constructor(doc: Document, styleName: string, tag?: string);
|
|
911
|
-
protected
|
|
779
|
+
protected _doDispose(): void;
|
|
912
780
|
get doc(): Document;
|
|
913
781
|
get win(): Window & typeof globalThis;
|
|
914
782
|
get dom(): SVGElement;
|
|
@@ -1046,13 +914,13 @@ declare class RcElement extends RcObject {
|
|
|
1046
914
|
protected _updateTransform(): void;
|
|
1047
915
|
getTransform(): string;
|
|
1048
916
|
}
|
|
1049
|
-
declare class RcHtmlElement extends
|
|
917
|
+
declare class RcHtmlElement extends RObject {
|
|
1050
918
|
private _control;
|
|
1051
919
|
protected _dom: HTMLElement;
|
|
1052
920
|
protected _svg: SVGSVGElement;
|
|
1053
921
|
constructor(doc: Document, control: RcControl, svg?: boolean);
|
|
1054
922
|
protected _doInitDom(dom: HTMLElement): void;
|
|
1055
|
-
protected
|
|
923
|
+
protected _doDispose(): void;
|
|
1056
924
|
get control(): RcControl;
|
|
1057
925
|
get dom(): HTMLElement;
|
|
1058
926
|
addSvg<T extends RcElement>(child: T): T;
|
|
@@ -1211,7 +1079,7 @@ declare class SvgShapes {
|
|
|
1211
1079
|
}
|
|
1212
1080
|
|
|
1213
1081
|
/**
|
|
1214
|
-
* 시리즈 데이터포인트 {@link https://realchart.co.kr/config/config/base/series#
|
|
1082
|
+
* 시리즈 데이터포인트 {@link https://realchart.co.kr/config/config/base/series#pointLabel 라벨} 표시 위치.<br/>
|
|
1215
1083
|
* {@link https://realchart.co.kr/config/config/base/series/pointLabel#position position} 속성 값으로 사용된다.
|
|
1216
1084
|
*
|
|
1217
1085
|
* @enum
|
|
@@ -1780,7 +1648,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1780
1648
|
/**
|
|
1781
1649
|
* 연결된 x축이 연속 축(카테고리축이 아닌)일 때, x축 값이 설정되지 않은 첫번째 데이터 point에 설정되는 x값.<br/>
|
|
1782
1650
|
* 이 후에는 {@link xStep}씩 증가시키면서 설정한다.
|
|
1783
|
-
* 이 속성이 지정되지 않은 경우 {@link https://realchart.co.kr/config/config/
|
|
1651
|
+
* 이 속성이 지정되지 않은 경우 {@link https://realchart.co.kr/config/config/general#xStart xStart}가 적용되는데
|
|
1784
1652
|
* {@link LogAxis log}축이면 1, 아니면 0이다.
|
|
1785
1653
|
*/
|
|
1786
1654
|
xStart?: number | string;
|
|
@@ -1788,7 +1656,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1788
1656
|
* 연결된 x축이 연속 축(카테고리축이 아닌)일 때, x축 값이 설정되지 않은 데이터 point에 지정되는 x값의 간격.<br/>
|
|
1789
1657
|
* 첫번째 값은 {@link xStart}로 설정한다.
|
|
1790
1658
|
* time 축일 때, 정수 값 대신 시간 단위('y', 'm', 'w', 'd', 'h', 'n', 's')로 지정할 수 있다.
|
|
1791
|
-
* 이 속성이 지정되지 않으면 {@link https://realchart.co.kr/config/config/
|
|
1659
|
+
* 이 속성이 지정되지 않으면 {@link https://realchart.co.kr/config/config/general#xStep xStep}이 적용된다.
|
|
1792
1660
|
*/
|
|
1793
1661
|
xStep?: number | string;
|
|
1794
1662
|
/**
|
|
@@ -1903,7 +1771,8 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1903
1771
|
*/
|
|
1904
1772
|
pointStyleCallback?: (args: DataPointCallbackArgs) => SVGStyleOrClass;
|
|
1905
1773
|
/**
|
|
1906
|
-
* 시리즈의 hover, focus, tooltip 상호작용 여부를
|
|
1774
|
+
* 시리즈의 hover, focus, tooltip 상호작용 여부를 지정한다.<br/>
|
|
1775
|
+
* 차트 {@link https://realchart.co.kr/config/config/general/interactive interactive}가 false이면 hover·focus·tooltip은 비활성화된다.
|
|
1907
1776
|
*
|
|
1908
1777
|
* @default true
|
|
1909
1778
|
*/
|
|
@@ -2025,7 +1894,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
2025
1894
|
/**
|
|
2026
1895
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2027
1896
|
* 그룹에 포함된 경우 먼저 그룹의 baseValue를 따른다.
|
|
2028
|
-
* 또, 이 값을 지정하지 않은 경우 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
1897
|
+
* 또, 이 값을 지정하지 않은 경우 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2029
1898
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2030
1899
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2031
1900
|
*
|
|
@@ -2039,7 +1908,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
2039
1908
|
*/
|
|
2040
1909
|
nullAsBase?: boolean;
|
|
2041
1910
|
/**
|
|
2042
|
-
* {@link baseValue} 또는 y축의 {@link https://realchart.co.kr/config/config/yAxis#
|
|
1911
|
+
* {@link baseValue} 또는 y축의 {@link https://realchart.co.kr/config/config/yAxis#baseValue baseValue}로 지정되는
|
|
2043
1912
|
* 기준값 보다 작은 쪽의 point들에 적용되는 스타일.<br/>
|
|
2044
1913
|
*/
|
|
2045
1914
|
belowStyle?: SVGStyleOrClass;
|
|
@@ -2182,7 +2051,7 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2182
2051
|
tooltipHeader?: string;
|
|
2183
2052
|
/**
|
|
2184
2053
|
* 그룹 툴팁에 각 시리즈별 표시되는 포인트 툴팁 텍스트.<br/>
|
|
2185
|
-
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#
|
|
2054
|
+
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다.<br/>
|
|
2186
2055
|
*
|
|
2187
2056
|
* @default '${series}: ${detail}'
|
|
2188
2057
|
*/
|
|
@@ -2191,7 +2060,7 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2191
2060
|
* 축에 포함된 시리즈가 둘 이상일 때,
|
|
2192
2061
|
* 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
2193
2062
|
* 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
|
|
2194
|
-
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#
|
|
2063
|
+
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다.<br/>
|
|
2195
2064
|
*
|
|
2196
2065
|
* @default `['${series}', '${detail}']`
|
|
2197
2066
|
*/
|
|
@@ -2226,7 +2095,7 @@ interface LineSeriesGroupOptions extends SeriesGroupOptions<LineSeriesOptions> {
|
|
|
2226
2095
|
/**
|
|
2227
2096
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2228
2097
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2229
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2098
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2230
2099
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2231
2100
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2232
2101
|
*
|
|
@@ -2253,7 +2122,7 @@ interface AreaSeriesGroupOptions extends SeriesGroupOptions<AreaSeriesOptions> {
|
|
|
2253
2122
|
/**
|
|
2254
2123
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2255
2124
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2256
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2125
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2257
2126
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2258
2127
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2259
2128
|
*
|
|
@@ -2289,7 +2158,7 @@ interface BarSeriesGroupBaseOptions<T extends BarSeriesBaseOptions> extends Clus
|
|
|
2289
2158
|
/**
|
|
2290
2159
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2291
2160
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2292
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2161
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2293
2162
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2294
2163
|
*
|
|
2295
2164
|
* @default undefined
|
|
@@ -2350,7 +2219,7 @@ interface MarkerSeriesOptions extends ConnectableSeriesOptions {
|
|
|
2350
2219
|
colorByPoint?: boolean;
|
|
2351
2220
|
/**
|
|
2352
2221
|
* marker가 마우스 아래 있는 지 판단할 때 외부로 추가되는 가상의 두께.<br/>
|
|
2353
|
-
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/
|
|
2222
|
+
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/general/pointHovering#hintDistance hintDistance} 설정을 따른다.
|
|
2354
2223
|
*/
|
|
2355
2224
|
hintDistance?: number;
|
|
2356
2225
|
}
|
|
@@ -2405,14 +2274,14 @@ interface LineSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
|
2405
2274
|
/**
|
|
2406
2275
|
* 데이터포인트 위에 마우스가 있을 때 적용되는
|
|
2407
2276
|
* {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
2408
|
-
* {@link https://realchart.co.kr/config/config/base/series#
|
|
2277
|
+
* {@link https://realchart.co.kr/config/config/base/series#hoverStyle hoverStyle} 보다 우선 적용된다.
|
|
2409
2278
|
*
|
|
2410
2279
|
*
|
|
2411
2280
|
*/
|
|
2412
2281
|
hoverStyle?: SVGStyleOrClass;
|
|
2413
2282
|
/**
|
|
2414
2283
|
* marker가 마우스 아래 있는 지 판단할 때 외부로 추가되는 가상의 두께.<br/>
|
|
2415
|
-
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/
|
|
2284
|
+
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/general/pointHovering#hintDistance hintDistance} 설정을 따른다.
|
|
2416
2285
|
*/
|
|
2417
2286
|
hintDistance?: number;
|
|
2418
2287
|
}
|
|
@@ -2958,7 +2827,7 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
2958
2827
|
/**
|
|
2959
2828
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2960
2829
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2961
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2830
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2962
2831
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2963
2832
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.<br/>
|
|
2964
2833
|
* {@link https://realchart.co.kr/config/config/series/area area} 시리즈와 다르게,
|
|
@@ -3071,7 +2940,7 @@ interface AreaSeriesOptions extends LineSeriesOptions {
|
|
|
3071
2940
|
/**
|
|
3072
2941
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
3073
2942
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
3074
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2943
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
3075
2944
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
3076
2945
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
3077
2946
|
*
|
|
@@ -5125,30 +4994,6 @@ declare class DatetimeFormatter {
|
|
|
5125
4994
|
private parse;
|
|
5126
4995
|
}
|
|
5127
4996
|
|
|
5128
|
-
/**
|
|
5129
|
-
* @private
|
|
5130
|
-
*
|
|
5131
|
-
* 'as,0.0#'
|
|
5132
|
-
* NOTE: 'a'는 bigint에 사용할 수 없다.
|
|
5133
|
-
*
|
|
5134
|
-
* //TODO: ',' 자리에 다른 문자(ex. space)를 표시할 수 있도록 한다.
|
|
5135
|
-
* //TODO: Intl.NumberFormat 사용할 것. toLocaleString()할 때마다 이 객체가 생성되는 듯.
|
|
5136
|
-
*/
|
|
5137
|
-
declare class NumberFormatter {
|
|
5138
|
-
static readonly DEFAULT_FORMAT = "";
|
|
5139
|
-
private static readonly Formatters;
|
|
5140
|
-
static getFormatter(format: string): NumberFormatter;
|
|
5141
|
-
static get Default(): NumberFormatter;
|
|
5142
|
-
private _format;
|
|
5143
|
-
private _options;
|
|
5144
|
-
private _options2;
|
|
5145
|
-
constructor(format: string);
|
|
5146
|
-
get format(): string;
|
|
5147
|
-
toStr(value: number | bigint): string;
|
|
5148
|
-
toNum(value: number): number;
|
|
5149
|
-
private $_parse;
|
|
5150
|
-
}
|
|
5151
|
-
|
|
5152
4997
|
/** @private */
|
|
5153
4998
|
declare class Sides {
|
|
5154
4999
|
top: number;
|
|
@@ -5169,20 +5014,25 @@ declare class Sides {
|
|
|
5169
5014
|
/**
|
|
5170
5015
|
* @private
|
|
5171
5016
|
*
|
|
5172
|
-
*
|
|
5173
|
-
*
|
|
5174
|
-
*
|
|
5017
|
+
* 'as,0.0#'
|
|
5018
|
+
* NOTE: 'a'는 bigint에 사용할 수 없다.
|
|
5019
|
+
*
|
|
5020
|
+
* //TODO: ',' 자리에 다른 문자(ex. space)를 표시할 수 있도록 한다.
|
|
5021
|
+
* //TODO: Intl.NumberFormat 사용할 것. toLocaleString()할 때마다 이 객체가 생성되는 듯.
|
|
5175
5022
|
*/
|
|
5176
|
-
declare class
|
|
5023
|
+
declare class NumberFormatter {
|
|
5024
|
+
static readonly DEFAULT_FORMAT = "";
|
|
5177
5025
|
private static readonly Formatters;
|
|
5178
|
-
static getFormatter(format: string):
|
|
5026
|
+
static getFormatter(format: string): NumberFormatter;
|
|
5027
|
+
static get Default(): NumberFormatter;
|
|
5179
5028
|
private _format;
|
|
5180
|
-
private
|
|
5181
|
-
private
|
|
5029
|
+
private _options;
|
|
5030
|
+
private _options2;
|
|
5182
5031
|
constructor(format: string);
|
|
5183
5032
|
get format(): string;
|
|
5184
|
-
toStr(
|
|
5185
|
-
|
|
5033
|
+
toStr(value: number | bigint): string;
|
|
5034
|
+
toNum(value: number): number;
|
|
5035
|
+
private $_parse;
|
|
5186
5036
|
}
|
|
5187
5037
|
|
|
5188
5038
|
/**
|
|
@@ -5481,14 +5331,14 @@ interface SubtitleOptions extends TitleOptions {
|
|
|
5481
5331
|
*
|
|
5482
5332
|
* ```js
|
|
5483
5333
|
* const config = {
|
|
5484
|
-
*
|
|
5334
|
+
* general: {
|
|
5485
5335
|
* theme: 'dark',
|
|
5486
5336
|
* },
|
|
5487
5337
|
* };
|
|
5488
5338
|
* ```
|
|
5489
5339
|
*
|
|
5490
5340
|
*/
|
|
5491
|
-
interface
|
|
5341
|
+
interface ChartGeneralOptions extends ChartItemOptions {
|
|
5492
5342
|
/**
|
|
5493
5343
|
* @ignore
|
|
5494
5344
|
*/
|
|
@@ -5513,8 +5363,17 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
5513
5363
|
* 시리즈 옵션 colors가 지정되면 이 속성은 무시된다.
|
|
5514
5364
|
*/
|
|
5515
5365
|
colors?: string[];
|
|
5366
|
+
/**
|
|
5367
|
+
* 차트 전체 수준의 상호작용 여부를 지정한다.<br/>
|
|
5368
|
+
* false이면 `animatable`, `hoverable`, `clickable`을 모두 false로 지정한 것과 동일하게 동작한다.<br/>
|
|
5369
|
+
* true이면 위 세 옵션 각각에서 false로 지정한 기능만 비활성화된다.<br/>
|
|
5370
|
+
*
|
|
5371
|
+
* @default true
|
|
5372
|
+
*/
|
|
5373
|
+
interactive?: boolean;
|
|
5516
5374
|
/**
|
|
5517
5375
|
* false로 지정하면 차트 전체척으로 animation 효과를 실행하지 않는다.<br/>
|
|
5376
|
+
* {@link https://realchart.co.kr/config/config/general/interactive interactive}가 false이면 이 옵션과 관계없이 animation은 실행되지 않는다.<br/>
|
|
5518
5377
|
*
|
|
5519
5378
|
* @default true
|
|
5520
5379
|
*/
|
|
@@ -5522,6 +5381,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
5522
5381
|
/**
|
|
5523
5382
|
* false로 지정하면 차트 전체에서 마우스 hover 상호작용을 비활성화한다.<br/>
|
|
5524
5383
|
* tooltip, pointHovering, seriesHovering, crosshair 등 hover 기반 기능이 모두 작동하지 않는다.<br/>
|
|
5384
|
+
* {@link https://realchart.co.kr/config/config/general/interactive interactive}가 false이면 이 옵션과 관계없이 hover 상호작용은 비활성화된다.<br/>
|
|
5525
5385
|
*
|
|
5526
5386
|
* @default true
|
|
5527
5387
|
*/
|
|
@@ -5529,6 +5389,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
5529
5389
|
/**
|
|
5530
5390
|
* false로 지정하면 차트 전체에서 마우스 click 상호작용을 비활성화한다.<br/>
|
|
5531
5391
|
* onPointClick, 범례 클릭, annotation 클릭 등 클릭 기반 기능이 모두 작동하지 않는다.<br/>
|
|
5392
|
+
* {@link https://realchart.co.kr/config/config/general/interactive interactive}가 false이면 이 옵션과 관계없이 click 상호작용은 비활성화된다.<br/>
|
|
5532
5393
|
*
|
|
5533
5394
|
* @default true
|
|
5534
5395
|
*/
|
|
@@ -5601,6 +5462,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
5601
5462
|
*/
|
|
5602
5463
|
resizeDelay?: number;
|
|
5603
5464
|
}
|
|
5465
|
+
type ChartOptionsOptions = ChartGeneralOptions;
|
|
5604
5466
|
/**
|
|
5605
5467
|
* @css 'rct-body-image'
|
|
5606
5468
|
*/
|
|
@@ -5721,7 +5583,7 @@ interface ZoomCallbackArgs {
|
|
|
5721
5583
|
}
|
|
5722
5584
|
/**
|
|
5723
5585
|
* {@link BodyDepth.depth depth}가 지정된 body 영역의 양 축 방향에 표시되는
|
|
5724
|
-
* {@link https://realchart.co.kr/config/config/body#
|
|
5586
|
+
* {@link https://realchart.co.kr/config/config/body#xSide side} panel의 경계선 설정 옵션.<br/>
|
|
5725
5587
|
*/
|
|
5726
5588
|
interface BodyDepthLineOptions extends ChartItemOptions {
|
|
5727
5589
|
/**
|
|
@@ -5978,7 +5840,7 @@ interface SeriesNavigatorOptions extends ChartItemOptions {
|
|
|
5978
5840
|
*
|
|
5979
5841
|
* ```js
|
|
5980
5842
|
* const config = {
|
|
5981
|
-
*
|
|
5843
|
+
* general: {
|
|
5982
5844
|
* credits: {
|
|
5983
5845
|
* text: 'UN Data',
|
|
5984
5846
|
* url: 'https://data.un.org'
|
|
@@ -6105,7 +5967,7 @@ interface PointHoveringOptions extends ChartItemOptions {
|
|
|
6105
5967
|
* 상당히 큰 크기로 지정하면 마우스가 어느 위치에 있든 마우스에 가장 가까운 marker가 찾아진다.<br/>
|
|
6106
5968
|
* 물론 마우스가 실제 표시되는 marker 위에 있다면 그 것으로 결정된다.
|
|
6107
5969
|
* 찾아진 데이터포인트가 마우스 아래 있는 것으로 여겨져서 hover 효과가 표시되거나 관련 이벤트가 발생한다.<br/>
|
|
6108
|
-
* 기본값은 차트에 tooltip이 표시되고 tooltip.{@link https://realchart.co.kr/config/config/tooltip#
|
|
5970
|
+
* 기본값은 차트에 tooltip이 표시되고 tooltip.{@link https://realchart.co.kr/config/config/tooltip#followPointer followPointer}가 true이면 차트 크기보다 큰 값이 되고,
|
|
6109
5971
|
* 아니면 **30** 픽셀이다.
|
|
6110
5972
|
*
|
|
6111
5973
|
*/
|
|
@@ -6118,14 +5980,14 @@ interface PointHoveringOptions extends ChartItemOptions {
|
|
|
6118
5980
|
*/
|
|
6119
5981
|
declare const _TooltipScope: {
|
|
6120
5982
|
/**
|
|
6121
|
-
* {@link https://realchart.co.kr/config/config/
|
|
5983
|
+
* {@link https://realchart.co.kr/config/config/general/pointHovering#scope scope}와 동일한 규칙으로 툴팁에 포함할 데이터포인트 범위를 결정한다.<br/>
|
|
6122
5984
|
* 기본값이며, pointHovering이 `'auto'`이면 crosshair·시리즈 그룹·seriesHovering 설정에 따라
|
|
6123
5985
|
* `'point'`, `'group'`, `'axis'` 중 하나로 해석된다.
|
|
6124
5986
|
*/
|
|
6125
5987
|
readonly HOVER: "hover";
|
|
6126
5988
|
/**
|
|
6127
5989
|
* hover된 시리즈 하나의 데이터포인트만 툴팁에 표시한다.<br/>
|
|
6128
|
-
* 해당 시리즈의 {@link https://realchart.co.kr/config/config/base/series#
|
|
5990
|
+
* 해당 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipText tooltipText} 등이 사용된다.
|
|
6129
5991
|
*/
|
|
6130
5992
|
readonly POINT: "point";
|
|
6131
5993
|
/**
|
|
@@ -6137,7 +5999,7 @@ declare const _TooltipScope: {
|
|
|
6137
5999
|
/**
|
|
6138
6000
|
* hover된 시리즈가 연결된 x축의 모든 visible 시리즈 중, 동일 x(카테고리) 값을 갖는
|
|
6139
6001
|
* 데이터포인트를 한 툴팁에 표시한다.<br/>
|
|
6140
|
-
* x축의 {@link https://realchart.co.kr/config/config/base/axis#
|
|
6002
|
+
* x축의 {@link https://realchart.co.kr/config/config/base/axis#tooltipHeader tooltipHeader}, {@link https://realchart.co.kr/config/config/base/axis#tooltipRow tooltipRow} 등이 사용된다.
|
|
6141
6003
|
*/
|
|
6142
6004
|
readonly AXIS: "axis";
|
|
6143
6005
|
};
|
|
@@ -6165,7 +6027,7 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
6165
6027
|
scope?: TooltipScope;
|
|
6166
6028
|
/**
|
|
6167
6029
|
* 툴팁에 표시할 텍스트 형식.<br/>
|
|
6168
|
-
* 시리즈에 {@link https://realchart.co.kr/config/config/base/series#
|
|
6030
|
+
* 시리즈에 {@link https://realchart.co.kr/config/config/base/series#tooltipText tooltipText}가 시리즈 별 tooltip을 제공하지만,
|
|
6169
6031
|
* 이 속성이 지정된 경우 우선 사용된다.<br/>
|
|
6170
6032
|
*
|
|
6171
6033
|
* `${param;default;format}` 형식으로 아래과 같은 변수로 데이터 포인트 및 시리즈 값을 지정할 수 있다.
|
|
@@ -6577,7 +6439,7 @@ interface PaneBodyOptions extends BodyOptions {
|
|
|
6577
6439
|
* 분할(split) 모드 설정 옵션.<br/>
|
|
6578
6440
|
* 각 pane에 해당하는 x, y축이 반드시 존재해야 한다.
|
|
6579
6441
|
* axis는 {@link https://realchart.co.kr/config/config/base/axis#row row}, {@link https://realchart.co.kr/config/config/base/axis#col col} 속성으로 위치를 지정한다.
|
|
6580
|
-
* 시리즈는 {@link https://realchart.co.kr/config/config/base/series#
|
|
6442
|
+
* 시리즈는 {@link https://realchart.co.kr/config/config/base/series#xAxis xAxis}, {@link https://realchart.co.kr/config/config/base/series#yAxis yAxis} 설정에 따라 연결된 axis 위치에 따라 자동으로 결정된다.
|
|
6581
6443
|
*
|
|
6582
6444
|
* @modules split
|
|
6583
6445
|
* @css 'rct-panes'
|
|
@@ -8173,11 +8035,17 @@ interface ChartConfiguration {
|
|
|
8173
8035
|
*/
|
|
8174
8036
|
templates?: ConfigObject;
|
|
8175
8037
|
/**
|
|
8038
|
+
* 차트 전체에 영향을 미치는 옵션들.<br/>
|
|
8039
|
+
* #1651
|
|
8040
|
+
*/
|
|
8041
|
+
general?: ChartGeneralOptions;
|
|
8042
|
+
/**
|
|
8043
|
+
* @deprecated {@link https://realchart.co.kr/config/config/general general}로 대신 설정한다.
|
|
8176
8044
|
* 차트 전체에 영향을 미치는 옵션들.<br/>
|
|
8177
8045
|
*/
|
|
8178
8046
|
chart?: ChartOptionsOptions;
|
|
8179
8047
|
/**
|
|
8180
|
-
* @deprecated
|
|
8048
|
+
* @deprecated {@link https://realchart.co.kr/config/config/general general}로 대신 설정한다.
|
|
8181
8049
|
*
|
|
8182
8050
|
* 차트 전체에 영향을 미치는 옵션들.<br/>
|
|
8183
8051
|
*/
|
|
@@ -8275,22 +8143,17 @@ declare const extend: <O extends ChartItemOptions>(base: any, source: O) => O;
|
|
|
8275
8143
|
/**
|
|
8276
8144
|
* {@link Series 시리즈}, {@link rc.Axis 축}, {@link rc.Legend legend} 등, 차트 구성 요소 모델들의 기반 클래스.<br/>
|
|
8277
8145
|
* {@link updateOptions}등의 공통 메소드들이 구현되어 있다.
|
|
8146
|
+
*
|
|
8147
|
+
* {@link ROptionable} 상속(realmap과 동일 규약):
|
|
8148
|
+
* - `_op` = **delta**(명시 설정만). defaults/자식은 포함하지 않는다.
|
|
8149
|
+
* - 효과 값 읽기: `prop()` / `num()` / `bool()`
|
|
8150
|
+
* - 자식은 `_addChild`로 `_children`에만 등록(부모 `_op` 비마운트)
|
|
8278
8151
|
*/
|
|
8279
|
-
declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
8152
|
+
declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends ROptionable<OP> {
|
|
8280
8153
|
static readonly REFRESHED = "refreshed";
|
|
8281
8154
|
static defaults: ChartItemOptions;
|
|
8282
8155
|
readonly chart: IChart;
|
|
8283
8156
|
private _config;
|
|
8284
|
-
private _children;
|
|
8285
|
-
/**
|
|
8286
|
-
* @readonly
|
|
8287
|
-
*
|
|
8288
|
-
* 이 모델에 설정하는 속성들을 포함하는 객체로서 차트 생성시 혹은 {@link load} 메소드를 통해 초기 값들이 지정된다.<br/>
|
|
8289
|
-
* 또, 각 모델별로 기본적으로 적용되는 기본값들이 있다.<br/>
|
|
8290
|
-
* 내부에서 관리하는 속성이므로, 이 속성을 다른 객체 등으로 직접 변경해서는 안된다.<br/>
|
|
8291
|
-
* 또, 이 옵션의 속성들을 직접 변경하지 않고 {@link updateOption} 등의 메소드를 호출해야 한다.
|
|
8292
|
-
*/
|
|
8293
|
-
protected _op: OP;
|
|
8294
8157
|
/**
|
|
8295
8158
|
* @private
|
|
8296
8159
|
*
|
|
@@ -8303,21 +8166,21 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8303
8166
|
* @param chart 차트 객체
|
|
8304
8167
|
*/
|
|
8305
8168
|
constructor(chart: IChart);
|
|
8306
|
-
|
|
8307
|
-
* @private
|
|
8308
|
-
*/
|
|
8309
|
-
init(): OP;
|
|
8310
|
-
protected _doInit(op: OP): void;
|
|
8169
|
+
protected _addChild<T extends ROptionable>(name: string & keyof OP, child: T): T;
|
|
8311
8170
|
/**
|
|
8312
8171
|
* @private
|
|
8313
8172
|
*/
|
|
8314
8173
|
_initObject(): this;
|
|
8315
8174
|
/**
|
|
8316
|
-
* 차트를 생성할 때나 {@link updateOptions} 등을 통해 이 모델 객체에 설정된 옵션
|
|
8317
|
-
* 기본 설정값들이 포함된 원본 설정 객체(복사본이 아니다).<br/>
|
|
8175
|
+
* 차트를 생성할 때나 {@link updateOptions} 등을 통해 이 모델 객체에 설정된 옵션 값들(delta).<br/>
|
|
8318
8176
|
* 리턴된 객체의 속성값들을 가져올 수 있지만,
|
|
8319
8177
|
* 속성들을 직접 수정하는 것은 권장되는 방법이 아니다.
|
|
8320
8178
|
* {@link updateOptions}나 {@link updateOption} 등을 사용해서 옵션들을 변경해야 한다.
|
|
8179
|
+
*
|
|
8180
|
+
* @remarks
|
|
8181
|
+
* - `options`/`_op`는 **delta**(명시 설정만). 기본값·등록 자식 키는 포함되지 않는다.
|
|
8182
|
+
* - 효과 값(기본값 fallback) 읽기는 `prop` / `num` / `bool`을 사용한다.
|
|
8183
|
+
* - View는 `model.options.xxx` 대신 `model.prop('xxx')` 또는 모델 getter를 사용한다.
|
|
8321
8184
|
*/
|
|
8322
8185
|
get options(): OP;
|
|
8323
8186
|
/**
|
|
@@ -8340,7 +8203,13 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8340
8203
|
get visible(): boolean;
|
|
8341
8204
|
set visible(value: boolean);
|
|
8342
8205
|
protected _isVisible(): boolean;
|
|
8343
|
-
/**
|
|
8206
|
+
/** 숫자 옵션 효과 값. 문자열(`'30px'`)은 parseFloat 결과를 반환한다. */
|
|
8207
|
+
num<K extends keyof OP>(prop: K, def?: number): number;
|
|
8208
|
+
/**
|
|
8209
|
+
* @private
|
|
8210
|
+
* 차트 내부 load 진입점. ROptionable `$_load`와 동일하되,
|
|
8211
|
+
* 자식은 `_load`(오버라이드 가능)로 위임하고 visible 변경을 통지한다.
|
|
8212
|
+
*/
|
|
8344
8213
|
_load(source: any): OP;
|
|
8345
8214
|
/**
|
|
8346
8215
|
* 기존 옵션 값들을 모두 제거하고 source에 지정한 값들로 새로 구성한다.<br/>
|
|
@@ -8353,100 +8222,48 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8353
8222
|
* ```
|
|
8354
8223
|
*
|
|
8355
8224
|
* @param source 설정 정보 객체 혹은 단일값.
|
|
8225
|
+
* @param clear true면 기존 delta를 비운 뒤 로드. 기본 true.
|
|
8356
8226
|
* @returns 이 객체 자신.
|
|
8357
8227
|
*/
|
|
8358
|
-
loadOptions(source:
|
|
8228
|
+
loadOptions(source: any, clear?: boolean): this;
|
|
8359
8229
|
/**
|
|
8360
8230
|
* 이 모델 객체에 설정된 전역 기본값과 다른 옵션 값들이 포함된 사본 객체로 리턴한다.<br/>
|
|
8361
|
-
* {@link options}
|
|
8231
|
+
* {@link options}는 delta(명시 설정)만 담는다. 효과 값은 `prop`으로 읽는다.
|
|
8362
8232
|
*
|
|
8363
|
-
*
|
|
8364
|
-
* const options = chart.legend.saveOptions();
|
|
8365
|
-
* console.log(options);
|
|
8366
|
-
* ```
|
|
8367
|
-
*
|
|
8368
|
-
* @param recursive 기본값 true이면 하위 모델의 옵션들도 포함된다.
|
|
8233
|
+
* @param props 생략 또는 boolean이면 기존 ChartItem API(`recursive`)로 해석한다. 기본 recursive=true.
|
|
8369
8234
|
* @returns 옵션 사본 객체.
|
|
8370
8235
|
*/
|
|
8371
|
-
saveOptions(recursive?: boolean):
|
|
8372
|
-
/**
|
|
8373
|
-
* 하나 이상의 option 설정을 하고,
|
|
8374
|
-
* 차트가 다시 그려지도록 한다.<br/>
|
|
8375
|
-
*
|
|
8376
|
-
* ```js
|
|
8377
|
-
* chart.legend.updateOptions({
|
|
8378
|
-
* gap: 10,
|
|
8379
|
-
* lineGap: 20
|
|
8380
|
-
* });
|
|
8381
|
-
* ```
|
|
8382
|
-
*
|
|
8383
|
-
* 권장하는 방식은 아니지만, {@link options}의 값들을 직접 수정한 후에도 이 메소드를 호출해서
|
|
8384
|
-
* 내부의 값들이 다시 계산되도록 해야 한다.
|
|
8385
|
-
*
|
|
8386
|
-
* ```js
|
|
8387
|
-
* chart.legend.options.gap = 10,
|
|
8388
|
-
* chart.legend.options.lineGap = 20,
|
|
8389
|
-
* chart.legend.updateOptions();
|
|
8390
|
-
* ```
|
|
8391
|
-
*
|
|
8392
|
-
* @param source 설정 정보 객체 혹은 단일값.
|
|
8393
|
-
* @param render true로 지정하면 설정 후 차트를 다시 그린다.
|
|
8394
|
-
* @returns 객체 자신.
|
|
8395
|
-
*/
|
|
8396
|
-
private $_updateChildren;
|
|
8397
|
-
private $_mergeOptions;
|
|
8398
|
-
updateOptions(source?: OP, render?: boolean): this;
|
|
8236
|
+
saveOptions(props?: any, recursive?: boolean, includeDefs?: boolean, force?: boolean): Partial<OP>;
|
|
8399
8237
|
/**
|
|
8400
|
-
*
|
|
8401
|
-
*
|
|
8402
|
-
* 기본적으로 이전 값과 다른 경우에만 적용된다.
|
|
8403
|
-
* 특히, 속성값이 객체인 경우 객체 속성만 바뀐 경우 적용되지 않는다.
|
|
8404
|
-
* 바꾸고 싶다면 force 매개변수를 true로 지정해서 호출한다.<br/>
|
|
8405
|
-
* 또, prop 매개변수가 하위 모델 이름인 경우 하위 모델의 {@link updateOptions}를 호출한 것과 동일하다.
|
|
8406
|
-
*
|
|
8407
|
-
* @param render true로 지정하면 설정 후 차트를 다시 그린다.
|
|
8408
|
-
* @param force 지정한 값이 이전 값과 동일한 경우에도 적용한다.
|
|
8409
|
-
* @returns 객체 자신.
|
|
8410
|
-
*/
|
|
8411
|
-
updateOption(prop: keyof OP, value: any, render?: boolean, force?: boolean): this;
|
|
8412
|
-
/**
|
|
8413
|
-
* Boolean 타입의 설정값을 변경한다.<br/>
|
|
8414
|
-
* 지정 가능한 설정 값 목록은 {@link https://realchart.co.kr/config Configuration API 페이지}에서 확인할 수 있다.
|
|
8415
|
-
*
|
|
8416
|
-
* ```js
|
|
8417
|
-
* chart.getSeries('ser02').toggleOption('visible');
|
|
8418
|
-
* ```
|
|
8419
|
-
*
|
|
8420
|
-
* @param prop 설정 속성 이름.
|
|
8421
|
-
* @param render true로 지정하면 chart를 다시 그린다.
|
|
8422
|
-
* false로 지정하고 여러 설정 후에 {@link Chart.render render}를 호출해서 다시 그리게 할 수도 있다.
|
|
8423
|
-
* 기본값은 true.
|
|
8424
|
-
* @returns 객체 자신.
|
|
8238
|
+
* 하나 이상의 option 설정을 하고, 차트가 다시 그려지도록 한다.<br/>
|
|
8239
|
+
* ROptionable stock 구현을 사용하되, visible 변경 시 `_visibleChanged`를 통지한다.
|
|
8425
8240
|
*/
|
|
8241
|
+
updateOptions(source?: Partial<OP>, render?: boolean): this;
|
|
8242
|
+
updateOption(prop: string, value: any, render?: boolean, force?: boolean): this;
|
|
8426
8243
|
toggleOption(prop: keyof OP, render?: boolean): this;
|
|
8427
|
-
/**
|
|
8428
|
-
* 지정한 속성에 설정한 값이 있으면 제거하고, 기본값으로(있다면) 되돌린다.
|
|
8429
|
-
*
|
|
8430
|
-
* @param prop 속성 이름.
|
|
8431
|
-
* @param render true(기본값)으로 지정하면 차트를 다시 그린다.
|
|
8432
|
-
* @returns 객체 자신.
|
|
8433
|
-
*/
|
|
8434
8244
|
removeOption(prop: keyof OP, render?: boolean): this;
|
|
8435
8245
|
/**
|
|
8436
8246
|
* {@link updateOptions}나 {@link updateOption} 등을 통해 설정된 모든 옵션 값들을 제거하거나,
|
|
8437
8247
|
* 전역 기본값이 존재하는 경우 그 값으로 되돌린다.<br/>
|
|
8438
8248
|
*
|
|
8249
|
+
* @param recursive 자식까지 재귀 제거 여부. 기본 true(기존 ChartItem / realmap load 경로).
|
|
8439
8250
|
* @param render true(기본값)으로 지정하면 차트를 다시 그린다.
|
|
8440
8251
|
* @returns 객체 자신.
|
|
8441
8252
|
*/
|
|
8442
|
-
clearOptions(render?: boolean): this;
|
|
8253
|
+
clearOptions(recursive?: boolean, render?: boolean): this;
|
|
8254
|
+
/**
|
|
8255
|
+
* 명시적으로 모델에 설정된 모든 style 값들을 제거한다.<br/>
|
|
8256
|
+
*
|
|
8257
|
+
* @param render true로 지정하면 옵션 변경 시 차트를 다시 그린다. 기본값 false
|
|
8258
|
+
*/
|
|
8259
|
+
clearStyle(render?: boolean): this;
|
|
8443
8260
|
/**
|
|
8444
8261
|
* 모델 css style 값을 변경한다.<br/>
|
|
8445
8262
|
* value에 undefined나 null, ''을 지정하면 기존에 설정됐던 스타일 항목이 제거된다.<br/>
|
|
8446
8263
|
*
|
|
8447
8264
|
* @param prop css 스타일 항목 이름.
|
|
8448
8265
|
* @param value 적용할 스타일 값.
|
|
8449
|
-
* @param render true로 지정하면 옵션 변경 시
|
|
8266
|
+
* @param render true로 지정하면 옵션 변경 시 차트를 다시 그린다. 기본값 true
|
|
8450
8267
|
* @returns
|
|
8451
8268
|
*/
|
|
8452
8269
|
setStyle(prop: string, value: any, render?: boolean): this;
|
|
@@ -8456,31 +8273,36 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8456
8273
|
*
|
|
8457
8274
|
* @param props 스타일 항목들과 값들이 설정된 json 객체
|
|
8458
8275
|
* @param clear true로 지정하면 기존 스타일 값을 모두 제거한다. 기본값 false
|
|
8459
|
-
* @param render true로 지정하면 옵션 변경 시
|
|
8276
|
+
* @param render true로 지정하면 옵션 변경 시 차트를 다시 그린다. 기본값 true
|
|
8460
8277
|
*/
|
|
8461
8278
|
setStyles(props: object, clear?: boolean, render?: boolean): this;
|
|
8462
8279
|
/** @private */
|
|
8463
8280
|
_prepareRender(): void;
|
|
8464
8281
|
/** @private */
|
|
8465
8282
|
protected _changed(tag?: any): void;
|
|
8466
|
-
/**
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
|
|
8470
|
-
/**
|
|
8471
|
-
|
|
8472
|
-
|
|
8473
|
-
|
|
8283
|
+
/**
|
|
8284
|
+
* ROptionable 변경 알림 hook — 기존 `_changed`로 위임한다.
|
|
8285
|
+
*/
|
|
8286
|
+
_optionChanged(tag?: string | string[]): void;
|
|
8287
|
+
/**
|
|
8288
|
+
* template 전처리 + DataObject 처리 + 자식 `_load` 위임.
|
|
8289
|
+
* (stock `_doLoad`는 자식을 `$_load`로 호출하므로 Annotation/Series `_load` 오버라이드가 필요하다.)
|
|
8290
|
+
*/
|
|
8291
|
+
protected _doLoad(op: OP, source: any): void;
|
|
8292
|
+
/**
|
|
8293
|
+
* ROptionable `(op, src)` 시그니처. (realmap과 동일)
|
|
8294
|
+
*/
|
|
8295
|
+
protected _doSetSimple(op: OP, src: any): boolean;
|
|
8474
8296
|
/** @private */
|
|
8475
8297
|
protected _doLoadProp(prop: string, value: any): boolean;
|
|
8476
|
-
/** @private */
|
|
8298
|
+
/** @private style 등에서 _doApply + visible 통지 */
|
|
8477
8299
|
private $_applyOptions;
|
|
8478
8300
|
/** @private */
|
|
8479
|
-
protected _setDim(
|
|
8301
|
+
protected _setDim(_op: OP, prop: string): void;
|
|
8480
8302
|
/** @private */
|
|
8481
|
-
protected _setDims(
|
|
8303
|
+
protected _setDims(op: OP, ...props: string[]): void;
|
|
8482
8304
|
/** @private */
|
|
8483
|
-
protected _doApply(op:
|
|
8305
|
+
protected _doApply(op: OP): void;
|
|
8484
8306
|
/** @private */
|
|
8485
8307
|
protected _doPrepareRender(chart: IChart): void;
|
|
8486
8308
|
}
|
|
@@ -8520,7 +8342,7 @@ declare abstract class ChartText<OP extends ChartTextOptions = ChartTextOptions>
|
|
|
8520
8342
|
buildSvg(view: TextElement, outline: TextElement, maxWidth: number, maxHeight: number, target: any, domain: IRichTextDomain): void;
|
|
8521
8343
|
/** @private */
|
|
8522
8344
|
prepareRich(text: string): void;
|
|
8523
|
-
protected _doSetSimple(src: any): boolean;
|
|
8345
|
+
protected _doSetSimple(op: OP, src: any): boolean;
|
|
8524
8346
|
protected _doApply(options: OP): void;
|
|
8525
8347
|
protected _getNumberText(value: any, useSymbols: boolean, forceSymbols: boolean): string;
|
|
8526
8348
|
protected _getText(text: string, value: any, useSymbols: boolean, forceSymbols: boolean): string;
|
|
@@ -8878,7 +8700,8 @@ declare abstract class CircularGauge<OP extends CircularGaugeOptions = CircularG
|
|
|
8878
8700
|
declare abstract class CircularGaugeGroup<T extends CircularGauge = CircularGauge, OP extends CircularGaugeGroupOptions = CircularGaugeGroupOptions> extends GaugeGroup<T, OP> {
|
|
8879
8701
|
static defaults: CircularGaugeGroupOptions;
|
|
8880
8702
|
private _label;
|
|
8881
|
-
props
|
|
8703
|
+
/** @private circular layout props (ROptionable.props()와 이름 충돌 방지) */
|
|
8704
|
+
_props: CircularProps;
|
|
8882
8705
|
protected _doInit(op: OP): void;
|
|
8883
8706
|
/**
|
|
8884
8707
|
* 게이지 중앙에 표시되는 label 설정 모델
|
|
@@ -8886,6 +8709,7 @@ declare abstract class CircularGaugeGroup<T extends CircularGauge = CircularGaug
|
|
|
8886
8709
|
*
|
|
8887
8710
|
*/
|
|
8888
8711
|
get label(): CircularGaugeLabel;
|
|
8712
|
+
getProps(): CircularProps;
|
|
8889
8713
|
setChildExtents(exts: ICircularGaugeExtents): void;
|
|
8890
8714
|
protected _doApply(options: OP): void;
|
|
8891
8715
|
}
|
|
@@ -9214,7 +9038,7 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
|
|
|
9214
9038
|
hasListMarker(): boolean;
|
|
9215
9039
|
getMarkerSize(): number;
|
|
9216
9040
|
getMarkerGap(): number;
|
|
9217
|
-
protected _doSetSimple(src: any): boolean;
|
|
9041
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
9218
9042
|
protected _doApply(options: TooltipOptions): void;
|
|
9219
9043
|
}
|
|
9220
9044
|
|
|
@@ -9432,6 +9256,9 @@ declare class TrendlineArea extends ChartItem<TrendlineAreaOptions> {
|
|
|
9432
9256
|
declare class TrendlineLabel extends IconedText<TrendlineLabelOptions> {
|
|
9433
9257
|
private static readonly OFFSET;
|
|
9434
9258
|
static defaults: TrendlineLabelOptions;
|
|
9259
|
+
private _position;
|
|
9260
|
+
private _align;
|
|
9261
|
+
private _verticalAlign;
|
|
9435
9262
|
getAlign(inverted: boolean, xReversed: boolean, yReversed: boolean, pos: number): Align;
|
|
9436
9263
|
getVerticalAlign(inverted: boolean, xReversed: boolean, yReversed: boolean): VerticalAlign;
|
|
9437
9264
|
getAlignPolar(angle: number): Align;
|
|
@@ -9441,6 +9268,7 @@ declare class TrendlineLabel extends IconedText<TrendlineLabelOptions> {
|
|
|
9441
9268
|
getText(): string;
|
|
9442
9269
|
getDefaultIconPos(): IconPosition;
|
|
9443
9270
|
protected _doApply(op: TrendlineLabelOptions): void;
|
|
9271
|
+
prop<K extends keyof TrendlineLabelOptions>(prop: K, def?: any): TrendlineLabelOptions[K];
|
|
9444
9272
|
}
|
|
9445
9273
|
declare class TrendlineMarker extends ChartItem<TrendlineMarkerOptions> {
|
|
9446
9274
|
static defaults: TrendlineMarkerOptions;
|
|
@@ -9488,6 +9316,8 @@ declare class Trendline extends ChartItem<TrendlineOptions> {
|
|
|
9488
9316
|
private _minY;
|
|
9489
9317
|
private _maxY;
|
|
9490
9318
|
private _formatter;
|
|
9319
|
+
private _forward;
|
|
9320
|
+
private _backward;
|
|
9491
9321
|
private _labelDomain;
|
|
9492
9322
|
constructor(owner: ITrendlineOwner);
|
|
9493
9323
|
protected _doInit(op: TrendlineOptions): void;
|
|
@@ -9538,7 +9368,7 @@ declare class DataPointLabel<OP extends DataPointLabelOptions = DataPointLabelOp
|
|
|
9538
9368
|
getDefaultIconPos(): IconPosition;
|
|
9539
9369
|
getRotation(): number;
|
|
9540
9370
|
protected _isVisible(): boolean;
|
|
9541
|
-
protected _doSetSimple(src: any): boolean;
|
|
9371
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
9542
9372
|
protected _doApply(op: OP): void;
|
|
9543
9373
|
protected _doPrepareRender(chart: IChart): void;
|
|
9544
9374
|
}
|
|
@@ -10031,7 +9861,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
10031
9861
|
removePoints(pts: (DataPoint | string | number | [number, number])[], animate?: boolean): number;
|
|
10032
9862
|
getDropPoints(): DataPoint[];
|
|
10033
9863
|
followPointer(): boolean;
|
|
10034
|
-
protected _doApply(op:
|
|
9864
|
+
protected _doApply(op: OP): void;
|
|
10035
9865
|
_setIndex(index: number, seriesIndex?: number): void;
|
|
10036
9866
|
protected _createLabel(chart: IChart): DataPointLabel;
|
|
10037
9867
|
protected _createPoint(source: any): DataPoint;
|
|
@@ -10122,7 +9952,7 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
|
|
|
10122
9952
|
private _args;
|
|
10123
9953
|
constructor(series: Series);
|
|
10124
9954
|
getMarkerStyle(p: DataPoint): any;
|
|
10125
|
-
protected _doSetSimple(src: any): boolean;
|
|
9955
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10126
9956
|
}
|
|
10127
9957
|
declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
|
|
10128
9958
|
_percent: number;
|
|
@@ -10143,7 +9973,7 @@ declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
|
|
|
10143
9973
|
}
|
|
10144
9974
|
declare class WidgetSeriesConnector extends ChartItem<WidgetSeriesConnectorOptions> {
|
|
10145
9975
|
static defaults: WidgetSeriesConnectorOptions;
|
|
10146
|
-
protected _doSetSimple(src: any): boolean;
|
|
9976
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10147
9977
|
}
|
|
10148
9978
|
declare abstract class WidgetSeriesLabel<OP extends WidgetSeriesLabelOptions = WidgetSeriesLabelOptions> extends DataPointLabel<OP> {
|
|
10149
9979
|
isSub: boolean;
|
|
@@ -10437,6 +10267,7 @@ declare class BodyDepth extends ChartItem<BodyDepthOptions> {
|
|
|
10437
10267
|
private _xSide;
|
|
10438
10268
|
private _ySide;
|
|
10439
10269
|
private _orgLine;
|
|
10270
|
+
private _angle;
|
|
10440
10271
|
protected _doInit(op: BodyDepthOptions): void;
|
|
10441
10272
|
/**
|
|
10442
10273
|
* x축 쪽 depth side 모델.<br/>
|
|
@@ -10451,8 +10282,9 @@ declare class BodyDepth extends ChartItem<BodyDepthOptions> {
|
|
|
10451
10282
|
*/
|
|
10452
10283
|
get orgLine(): BodyDepthLine;
|
|
10453
10284
|
protected _isVisible(): boolean;
|
|
10454
|
-
protected _doSetSimple(src: any): boolean;
|
|
10285
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10455
10286
|
protected _doApply(op: BodyDepthOptions): void;
|
|
10287
|
+
prop<K extends keyof BodyDepthOptions>(prop: K, def?: any): BodyDepthOptions[K];
|
|
10456
10288
|
}
|
|
10457
10289
|
/**
|
|
10458
10290
|
* @private
|
|
@@ -10640,13 +10472,17 @@ declare class SeriesNavigator extends ChartItem<SeriesNavigatorOptions> {
|
|
|
10640
10472
|
* const title = chart.title;
|
|
10641
10473
|
* legend.text = 'Chart Title';
|
|
10642
10474
|
* ```
|
|
10643
|
-
* 기본적으로 차트 중앙 상단에 표시되지만 {@link https://realchart.co.kr/config/config/title#align align}, {@link https://realchart.co.kr/config/config/title#
|
|
10475
|
+
* 기본적으로 차트 중앙 상단에 표시되지만 {@link https://realchart.co.kr/config/config/title#align align}, {@link https://realchart.co.kr/config/config/title#verticalAlign verticalAlign} 등으로 위치를 변경할 수 있다.<br/>
|
|
10644
10476
|
* {@link https://realchart.co.kr/guide/title 타이틀 개요} 페이지를 참조한다.
|
|
10645
10477
|
*/
|
|
10646
10478
|
declare class Title<OP extends TitleOptions = TitleOptions> extends ChartItem<OP> {
|
|
10647
10479
|
static defaults: TitleOptions;
|
|
10480
|
+
private _gap;
|
|
10481
|
+
/** title/subtitle 아래(또는 옆) 여백. '30px' 등 문자열도 숫자로 해석한다. */
|
|
10482
|
+
getGap(): number;
|
|
10483
|
+
protected _doApply(op: OP): void;
|
|
10648
10484
|
protected _isVisible(): boolean;
|
|
10649
|
-
protected _doSetSimple(src: any): boolean;
|
|
10485
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10650
10486
|
}
|
|
10651
10487
|
/**
|
|
10652
10488
|
* 차트 부제목(subtitle) 설정 모델.<br/>
|
|
@@ -10702,7 +10538,7 @@ interface IChart {
|
|
|
10702
10538
|
startOfWeek?: number;
|
|
10703
10539
|
timeOffset?: number;
|
|
10704
10540
|
_assets: AssetCollection;
|
|
10705
|
-
|
|
10541
|
+
general: ChartGeneral;
|
|
10706
10542
|
first: IPlottingItem;
|
|
10707
10543
|
firstSeries: Series;
|
|
10708
10544
|
xAxis: IAxis;
|
|
@@ -10770,7 +10606,7 @@ interface IChart {
|
|
|
10770
10606
|
declare class Credits extends ChartItem<CreditsOptions> {
|
|
10771
10607
|
static defaults: CreditsOptions;
|
|
10772
10608
|
isFloating(): boolean;
|
|
10773
|
-
protected _doSetSimple(src: any): boolean;
|
|
10609
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10774
10610
|
}
|
|
10775
10611
|
/**
|
|
10776
10612
|
* 데이터포인트에 마우수가 올라갈 때 처리하는 방식 설정 모델.<br/>
|
|
@@ -10783,9 +10619,9 @@ declare class PointHovering extends ChartItem<PointHoveringOptions> {
|
|
|
10783
10619
|
/**
|
|
10784
10620
|
* 차트 전역 설정 모델.
|
|
10785
10621
|
*/
|
|
10786
|
-
declare class
|
|
10622
|
+
declare class ChartGeneral extends ChartItem<ChartOptionsOptions> {
|
|
10787
10623
|
private _pointHovering;
|
|
10788
|
-
static defaults:
|
|
10624
|
+
static defaults: ChartGeneralOptions;
|
|
10789
10625
|
protected _doInit(op: {
|
|
10790
10626
|
[child: string]: ChartItemOptions;
|
|
10791
10627
|
}): void;
|
|
@@ -10795,6 +10631,7 @@ declare class ChartOptions extends ChartItem<ChartOptionsOptions> {
|
|
|
10795
10631
|
get pointHovering(): PointHovering;
|
|
10796
10632
|
getXStart(axis: IAxis): number | string;
|
|
10797
10633
|
}
|
|
10634
|
+
type ChartOptions = ChartGeneral;
|
|
10798
10635
|
interface IChartEventListener {
|
|
10799
10636
|
onModelChanged?(chart: ChartObject, item: ChartItem, tag?: any): void;
|
|
10800
10637
|
onVisibleChanged?(chart: ChartObject, item: ChartItem): void;
|
|
@@ -10827,7 +10664,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
|
|
|
10827
10664
|
[key: string]: any;
|
|
10828
10665
|
};
|
|
10829
10666
|
_assets: AssetCollection;
|
|
10830
|
-
|
|
10667
|
+
_general: ChartGeneral;
|
|
10831
10668
|
_title: Title<TitleOptions>;
|
|
10832
10669
|
_subtitle: Subtitle;
|
|
10833
10670
|
_legend: Legend;
|
|
@@ -10859,18 +10696,24 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
|
|
|
10859
10696
|
private _initOptions;
|
|
10860
10697
|
get win(): Window & typeof globalThis;
|
|
10861
10698
|
/**
|
|
10862
|
-
* @deprecated
|
|
10699
|
+
* @deprecated use {@link general} instead.
|
|
10863
10700
|
*/
|
|
10864
10701
|
get options(): ChartConfiguration;
|
|
10865
10702
|
/**
|
|
10866
|
-
*
|
|
10703
|
+
* 내보내기(exporter) 모델.
|
|
10867
10704
|
*/
|
|
10868
|
-
get
|
|
10705
|
+
get exporter(): Exporter;
|
|
10706
|
+
/**
|
|
10707
|
+
* @deprecated use {@link general} instead.
|
|
10708
|
+
*/
|
|
10709
|
+
get chartOptions(): ChartGeneral;
|
|
10710
|
+
get general(): ChartGeneral;
|
|
10869
10711
|
/**
|
|
10870
10712
|
* 크레딧 모델.
|
|
10871
10713
|
*/
|
|
10872
10714
|
get credits(): Credits;
|
|
10873
10715
|
_createChart(config: any): IChart;
|
|
10716
|
+
private _generalInteractive;
|
|
10874
10717
|
animatable(): boolean;
|
|
10875
10718
|
loadAnimatable(): boolean;
|
|
10876
10719
|
hoverable(): boolean;
|
|
@@ -11013,7 +10856,7 @@ declare class Crosshair extends ChartItem<NumberCrosshairOptions & TimeCrosshair
|
|
|
11013
10856
|
getFlag(length: number, pos: number): string;
|
|
11014
10857
|
moved(pos: number, flag: string, points: DataPoint[]): void;
|
|
11015
10858
|
_setAxis(axis: any): void;
|
|
11016
|
-
protected _doSetSimple(
|
|
10859
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11017
10860
|
}
|
|
11018
10861
|
/**
|
|
11019
10862
|
* @private
|
|
@@ -11024,6 +10867,8 @@ interface IAxis {
|
|
|
11024
10867
|
_type(): string;
|
|
11025
10868
|
chart: IChart;
|
|
11026
10869
|
options: AxisOptions;
|
|
10870
|
+
/** 효과 옵션 값(기본값 fallback). */
|
|
10871
|
+
prop<K extends keyof AxisOptions>(prop: K, def?: any): AxisOptions[K];
|
|
11027
10872
|
crosshair: Crosshair;
|
|
11028
10873
|
_isX: boolean;
|
|
11029
10874
|
_isHorz: boolean;
|
|
@@ -11094,7 +10939,7 @@ declare abstract class AxisItem<OP extends AxisItemOptions> extends ChartItem<OP
|
|
|
11094
10939
|
declare class AxisLine<OP extends AxisLineOptions = AxisLineOptions> extends AxisItem<OP> {
|
|
11095
10940
|
static defaults: AxisLineOptions;
|
|
11096
10941
|
protected _isVisible(): boolean;
|
|
11097
|
-
protected _doSetSimple(src: any): boolean;
|
|
10942
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11098
10943
|
}
|
|
11099
10944
|
/**
|
|
11100
10945
|
* 축 타이틀 모델.<br/>
|
|
@@ -11120,15 +10965,15 @@ declare class AxisTitle extends AxisItem<AxisTitleOptions> {
|
|
|
11120
10965
|
private _gap;
|
|
11121
10966
|
getGap(): number;
|
|
11122
10967
|
getRotation(): number;
|
|
11123
|
-
getTextOrientation(): TextOrientation;
|
|
10968
|
+
getTextOrientation(): _realgrid_common.TextOrientation;
|
|
11124
10969
|
protected _isVisible(): boolean;
|
|
11125
|
-
protected _doSetSimple(src: any): boolean;
|
|
10970
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11126
10971
|
protected _doApply(op: AxisTitleOptions): void;
|
|
11127
10972
|
}
|
|
11128
10973
|
/**
|
|
11129
10974
|
* 축 단위 label 모델.<br/>
|
|
11130
10975
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisUnitLabelOptions AxisUnitLabelOptions}이고,
|
|
11131
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
10976
|
+
* {@link https://realchart.co.kr/config/config/base/axis#unitLabel unitLabel} 항목으로 설정한다.
|
|
11132
10977
|
*
|
|
11133
10978
|
* ```js
|
|
11134
10979
|
* const config = {
|
|
@@ -11146,7 +10991,7 @@ declare class AxisTitle extends AxisItem<AxisTitleOptions> {
|
|
|
11146
10991
|
declare class AxisUnitLabel extends AxisItem<AxisUnitLabelOptions> {
|
|
11147
10992
|
static defaults: AxisUnitLabelOptions;
|
|
11148
10993
|
protected _isVisible(): boolean;
|
|
11149
|
-
protected _doSetSimple(src: any): boolean;
|
|
10994
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11150
10995
|
}
|
|
11151
10996
|
interface IAxisGridRow {
|
|
11152
10997
|
axis: Axis;
|
|
@@ -11161,7 +11006,7 @@ interface IAxisGridRow {
|
|
|
11161
11006
|
*/
|
|
11162
11007
|
declare class AxisGridRows extends AxisItem<AxisGridRowsOptions> {
|
|
11163
11008
|
getRows(): IAxisGridRow[];
|
|
11164
|
-
protected _doSetSimple(
|
|
11009
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11165
11010
|
}
|
|
11166
11011
|
/**
|
|
11167
11012
|
* Axis tick의 위치에 수평 혹은 수직선으로 plot 영역을 구분 표시한다.<br/>
|
|
@@ -11244,13 +11089,13 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
|
|
|
11244
11089
|
_getGap(): number;
|
|
11245
11090
|
isShowLast(): boolean;
|
|
11246
11091
|
isShowFirst(): boolean;
|
|
11247
|
-
protected _doSetSimple(src: any): boolean;
|
|
11092
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11248
11093
|
protected _doPrepareRender(chart: IChart): void;
|
|
11249
11094
|
}
|
|
11250
11095
|
/**
|
|
11251
11096
|
* major tick 사이 보조 눈금(minor tick) 모델.<br/>
|
|
11252
11097
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorTickOptions AxisMinorTickOptions}이고,
|
|
11253
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
11098
|
+
* {@link https://realchart.co.kr/config/config/base/axis#minorTick minorTick} 항목으로 설정한다.
|
|
11254
11099
|
*/
|
|
11255
11100
|
declare class AxisMinorTick extends AxisItem<AxisMinorTickOptions> {
|
|
11256
11101
|
static defaults: AxisMinorTickOptions;
|
|
@@ -11258,13 +11103,13 @@ declare class AxisMinorTick extends AxisItem<AxisMinorTickOptions> {
|
|
|
11258
11103
|
private _count;
|
|
11259
11104
|
_getLength(): number;
|
|
11260
11105
|
_getCount(): number;
|
|
11261
|
-
protected _doSetSimple(src: any): boolean;
|
|
11106
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11262
11107
|
protected _doPrepareRender(chart: IChart): void;
|
|
11263
11108
|
}
|
|
11264
11109
|
/**
|
|
11265
11110
|
* major grid 사이 보조 격자선(minor grid line) 모델.<br/>
|
|
11266
11111
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorGridOptions AxisMinorGridOptions}이고,
|
|
11267
|
-
* {@link https://realchart.co.kr/config/config/base/axis/grid#
|
|
11112
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorGrid grid.minorGrid} 항목으로 설정한다.
|
|
11268
11113
|
*/
|
|
11269
11114
|
declare class AxisMinorGrid extends AxisItem<AxisMinorGridOptions> {
|
|
11270
11115
|
static defaults: AxisMinorGridOptions;
|
|
@@ -11360,7 +11205,7 @@ declare class AxisZoom implements IAxisZoom {
|
|
|
11360
11205
|
/**
|
|
11361
11206
|
* 전체 각도가 360도 보다 작은 부채꼴 {@link https://realchart.co.kr/config/config/#polar polar} 좌표계의 X 축에서 원호의 양 끝과 중심에 연결되는 두 선분 모델.<br/>
|
|
11362
11207
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisSectorLineOptions AxisSectorLineOptions}이고,
|
|
11363
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
11208
|
+
* {@link https://realchart.co.kr/config/config/base/axis#sectorLine sectorLine} 항목으로 설정한다.<br/>
|
|
11364
11209
|
*
|
|
11365
11210
|
* ```js
|
|
11366
11211
|
* const config = {
|
|
@@ -11374,7 +11219,7 @@ declare class AxisZoom implements IAxisZoom {
|
|
|
11374
11219
|
* };
|
|
11375
11220
|
* ```
|
|
11376
11221
|
*
|
|
11377
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
11222
|
+
* {@link https://realchart.co.kr/config/config/base/axis#startAngle startAngle}, {@link https://realchart.co.kr/config/config/base/axis#totalAngle totalAngle}을 참조한다.
|
|
11378
11223
|
*/
|
|
11379
11224
|
declare class AxisSectorLine extends AxisLine<AxisSectorLineOptions> {
|
|
11380
11225
|
}
|
|
@@ -11413,6 +11258,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11413
11258
|
_index: number;
|
|
11414
11259
|
private _row;
|
|
11415
11260
|
private _col;
|
|
11261
|
+
private _totalAngle;
|
|
11416
11262
|
_isX: boolean;
|
|
11417
11263
|
_isHorz: boolean;
|
|
11418
11264
|
_isOpposite: boolean;
|
|
@@ -11468,7 +11314,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11468
11314
|
get line(): AxisLine;
|
|
11469
11315
|
/**
|
|
11470
11316
|
* 부채꼴 polar 좌표계의 X 축일 때 원호의 양 끝과 중심에 연결되는 선분들의 설정 모델.<br/>
|
|
11471
|
-
* {@link https://realchart.co.kr/config/config/xAxis/category#
|
|
11317
|
+
* {@link https://realchart.co.kr/config/config/xAxis/category#startAngle startAngle}, {@link https://realchart.co.kr/config/config/xAxis/category#totalAngle totalAngle}을 참조한다.
|
|
11472
11318
|
*/
|
|
11473
11319
|
get sectorLine(): AxisSectorLine;
|
|
11474
11320
|
/**
|
|
@@ -11504,6 +11350,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11504
11350
|
isEmpty(): boolean;
|
|
11505
11351
|
private _checkEmpty;
|
|
11506
11352
|
checkVisible(): boolean;
|
|
11353
|
+
protected _isVisible(): boolean;
|
|
11507
11354
|
getBaseValue(): number;
|
|
11508
11355
|
length(): number;
|
|
11509
11356
|
axisMin(): number;
|
|
@@ -11605,7 +11452,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11605
11452
|
abstract xValueAt(pos: number): number;
|
|
11606
11453
|
_posValue(): 0 | 1 | -1;
|
|
11607
11454
|
_load(source: any): OP;
|
|
11608
|
-
protected _doApply(op:
|
|
11455
|
+
protected _doApply(op: OP): void;
|
|
11609
11456
|
protected _setMinMax(min: number, max: number): void;
|
|
11610
11457
|
protected abstract _createGrid(): AxisGrid;
|
|
11611
11458
|
_connect(series: IPlottingItem): void;
|
|
@@ -11787,7 +11634,7 @@ interface AxisLineOptions extends AxisItemOptions {
|
|
|
11787
11634
|
}
|
|
11788
11635
|
/**
|
|
11789
11636
|
* 부채꼴 polar 좌표계의 X 축일 때 원호의 양 끝과 중심에 연결되는 선분들의 설정모델.<br/>
|
|
11790
|
-
* {@link https://realchart.co.kr/config/config/xAxis/category#
|
|
11637
|
+
* {@link https://realchart.co.kr/config/config/xAxis/category#startAngle startAngle}, {@link https://realchart.co.kr/config/config/xAxis/category#totalAngle totalAngle}을 참조한다.
|
|
11791
11638
|
*
|
|
11792
11639
|
*/
|
|
11793
11640
|
interface AxisSectorLineOptions extends AxisLineOptions {
|
|
@@ -11901,7 +11748,7 @@ interface AxisMinorGridOptions extends AxisItemOptions {
|
|
|
11901
11748
|
* time 축은 major tick 타임스탬프 사이를 선형 보간하여 minor 위치를 계산한다
|
|
11902
11749
|
* (달력 단위가 아닌 픽셀 균등 배치).<br/>
|
|
11903
11750
|
* log 축은 major tick 값이 0보다 클 때 log 공간에서 보간한다.<br/>
|
|
11904
|
-
* {@link count}는 {@link https://realchart.co.kr/config/config/base/axis/grid#
|
|
11751
|
+
* {@link count}는 {@link https://realchart.co.kr/config/config/base/axis/grid#minorGrid minor grid} 위치 계산에도 사용된다
|
|
11905
11752
|
* (visible이 false여도 grid만 표시할 수 있다).<br/>
|
|
11906
11753
|
* major tick이 2개 미만이면 minor tick·grid가 생성되지 않는다.<br/>
|
|
11907
11754
|
* axis break 경계 tick이 있는 major 구간에는 minor tick이 생성되지 않는다.<br/>
|
|
@@ -11917,7 +11764,7 @@ interface AxisMinorTickOptions extends AxisItemOptions {
|
|
|
11917
11764
|
/**
|
|
11918
11765
|
* major tick 한 구간 사이에 표시할 minor tick 개수.<br/>
|
|
11919
11766
|
* 1 미만이거나 소수인 값은 내림하여 1 이상의 정수로 적용된다.<br/>
|
|
11920
|
-
* {@link https://realchart.co.kr/config/config/base/axis/grid#
|
|
11767
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorGrid minor grid} 위치에도 동일하게 적용된다.
|
|
11921
11768
|
*
|
|
11922
11769
|
* @default 4
|
|
11923
11770
|
*/
|
|
@@ -12130,8 +11977,8 @@ declare const _AxisLabelOverflow: {
|
|
|
12130
11977
|
/** @dummy */
|
|
12131
11978
|
type AxisLabelOverflow = typeof _AxisLabelOverflow[keyof typeof _AxisLabelOverflow];
|
|
12132
11979
|
/**
|
|
12133
|
-
* Axis의 label {@link https://realchart.co.kr/config/config/base/axis/label#
|
|
12134
|
-
* {@link https://realchart.co.kr/config/config/base/axis/label#
|
|
11980
|
+
* Axis의 label {@link https://realchart.co.kr/config/config/base/axis/label#textCallback 텍스트}나
|
|
11981
|
+
* {@link https://realchart.co.kr/config/config/base/axis/label#styleCallback 스타일}을 동적으로 리턴하는 콜백 등의 매개변수로 사용된다.<br/>
|
|
12135
11982
|
*/
|
|
12136
11983
|
interface AxisLabelArgs {
|
|
12137
11984
|
/**
|
|
@@ -12553,7 +12400,7 @@ declare const _CrosshairType: {
|
|
|
12553
12400
|
/** @dummy */
|
|
12554
12401
|
type CrosshairType = typeof _CrosshairType[keyof typeof _CrosshairType];
|
|
12555
12402
|
/**
|
|
12556
|
-
* Crosshair 위치가 변경될 때 발생되는 {@link https://realchart.co.kr/config/config/base/axis/crosshair#
|
|
12403
|
+
* Crosshair 위치가 변경될 때 발생되는 {@link https://realchart.co.kr/config/config/base/axis/crosshair#onChange 콜백}의 매개변수로 사용된다.<br/>
|
|
12557
12404
|
*/
|
|
12558
12405
|
interface CrosshairCallbackArgs {
|
|
12559
12406
|
/**
|
|
@@ -12671,7 +12518,7 @@ declare const _AxisPosition: {
|
|
|
12671
12518
|
* [주의] <br/>
|
|
12672
12519
|
* 1. 축에 연결된 시리즈들이 BarSeries 계열일 때만 가능하다.<br/>
|
|
12673
12520
|
* 2. 차트의 X축 하나에만 적용할 수 있다. 두번째로 지정된 축의 속성은 'normal'로 적용된다.<br/>
|
|
12674
|
-
* 3. 상대 축이 **linear** 가 아니거나 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
12521
|
+
* 3. 상대 축이 **linear** 가 아니거나 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}가 min 보다 작거나 max보다 크면 이 값은 무시되고,
|
|
12675
12522
|
* 'normal'로 적용된다.
|
|
12676
12523
|
*
|
|
12677
12524
|
*
|
|
@@ -12790,7 +12637,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12790
12637
|
line?: AxisLineOptions | boolean | string;
|
|
12791
12638
|
/**
|
|
12792
12639
|
* 부채꼴 polar 좌표계의 X 축일 때 원호의 양 끝과 중심에 연결되는 선분들의 설정모델.<br/>
|
|
12793
|
-
* {@link https://realchart.co.kr/config/config/xAxis/category#
|
|
12640
|
+
* {@link https://realchart.co.kr/config/config/xAxis/category#startAngle startAngle}, {@link https://realchart.co.kr/config/config/xAxis/category#totalAngle totalAngle}을 참조한다.
|
|
12794
12641
|
*/
|
|
12795
12642
|
sectorLine?: AxisSectorLineOptions | boolean;
|
|
12796
12643
|
/**
|
|
@@ -12894,7 +12741,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12894
12741
|
tooltipHeader?: string;
|
|
12895
12742
|
/**
|
|
12896
12743
|
* 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12897
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#
|
|
12744
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12898
12745
|
*
|
|
12899
12746
|
* @default '${series}: ${detail}'
|
|
12900
12747
|
*/
|
|
@@ -12903,7 +12750,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12903
12750
|
* 축에 포함된 시리즈가 둘 이상일 때,
|
|
12904
12751
|
* 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12905
12752
|
* 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
|
|
12906
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#
|
|
12753
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12907
12754
|
*
|
|
12908
12755
|
* @default `['${series}', '${detail}']`
|
|
12909
12756
|
*/
|
|
@@ -13296,7 +13143,7 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
13296
13143
|
startOffset?: number;
|
|
13297
13144
|
}
|
|
13298
13145
|
/**
|
|
13299
|
-
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
13146
|
+
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue} 위치에 표시되는 선 설정 옵션.<br/>
|
|
13300
13147
|
* 기본적으로 표시되지 않는다.
|
|
13301
13148
|
*/
|
|
13302
13149
|
interface AxisBaseLineOptions extends AxisLineOptions {
|
|
@@ -13403,7 +13250,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13403
13250
|
maxValue?: number;
|
|
13404
13251
|
/**
|
|
13405
13252
|
* y축 기준값이 필요한 시리즈들({@link https://realchart.co.kr/config/config/series/bar bar} 계열,
|
|
13406
|
-
* {@link https://realchart.co.kr/config/config/series/area area})의 {@link https://realchart.co.kr/config/config/series/bar#
|
|
13253
|
+
* {@link https://realchart.co.kr/config/config/series/area area})의 {@link https://realchart.co.kr/config/config/series/bar#baseValue baseValue}가
|
|
13407
13254
|
* 지정되지 않은 경우 대신 적용되는 기본값.<br/>
|
|
13408
13255
|
* {@link baseLine}은 이 설정값에 해당되는 위치에 표시된다.
|
|
13409
13256
|
*
|
|
@@ -13419,7 +13266,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13419
13266
|
* `[[170, 0.2], [340, 0.1], [700, 0.05], [Infinity, 0.03]]`<br/>
|
|
13420
13267
|
* 또, 숫자와 'px'로 끝나는 문자열로 지정하면 위 설정을 무시하고,
|
|
13421
13268
|
* 적어도 지정한 pixel 정도의 여백이 생길 수 있도록 조정된다.<br/>
|
|
13422
|
-
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/base/series#
|
|
13269
|
+
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/base/series#paddingRate paddingRate}가 추가로 적용된다.
|
|
13423
13270
|
*/
|
|
13424
13271
|
padding?: number | [number, number][] | string;
|
|
13425
13272
|
/**
|
|
@@ -13701,7 +13548,7 @@ interface ConfigObject {
|
|
|
13701
13548
|
}
|
|
13702
13549
|
/**
|
|
13703
13550
|
*/
|
|
13704
|
-
interface ChartItemOptions {
|
|
13551
|
+
interface ChartItemOptions extends ROptions {
|
|
13705
13552
|
/**
|
|
13706
13553
|
* 표시 여부.<br/>
|
|
13707
13554
|
*
|
|
@@ -13856,10 +13703,10 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
13856
13703
|
icon?: string;
|
|
13857
13704
|
}
|
|
13858
13705
|
/**
|
|
13859
|
-
* 데이터포인트 뷰가 {@link https://realchart.co.kr/config/config/base/series#
|
|
13860
|
-
* 마우스 {@link https://realchart.co.kr/config/config/base/series#
|
|
13861
|
-
* 또는 {@link https://realchart.co.kr/config/config/base/series#
|
|
13862
|
-
* {@link https://realchart.co.kr/config/config/base/series#
|
|
13706
|
+
* 데이터포인트 뷰가 {@link https://realchart.co.kr/config/config/base/series#onPointClick 클릭}될 때,
|
|
13707
|
+
* 마우스 {@link https://realchart.co.kr/config/config/base/series#onPointHover hover}될 때,
|
|
13708
|
+
* 또는 {@link https://realchart.co.kr/config/config/base/series#pointStyleCallback 동적 스타일}을 리턴하는 콜백이나 이벤트 등의 매개변수로 사용된다.<br/>
|
|
13709
|
+
* {@link https://realchart.co.kr/config/config/base/series#onPointHover 콜백}의 매개변수로 사용된다.<br/>
|
|
13863
13710
|
*/
|
|
13864
13711
|
interface DataPointCallbackArgs {
|
|
13865
13712
|
/**
|
|
@@ -14480,12 +14327,18 @@ declare class Chart {
|
|
|
14480
14327
|
*/
|
|
14481
14328
|
constructor(config?: ChartConfiguration, callback?: (model: ChartObject, oldModel: ChartObject) => void);
|
|
14482
14329
|
/**
|
|
14330
|
+
* 차트 객체를 해제한다.<br/>
|
|
14331
|
+
* 공개 API 호환을 위해 메서드명은 `destroy`를 유지하며, 내부적으로는 `dispose`를 호출한다.
|
|
14483
14332
|
*/
|
|
14484
14333
|
destroy(): void;
|
|
14485
14334
|
/**
|
|
14486
|
-
* @deprecated 차트 전역 설정은 {@link
|
|
14335
|
+
* @deprecated 차트 전역 설정은 {@link general}를 사용한다.
|
|
14487
14336
|
*/
|
|
14488
14337
|
get options(): ChartConfiguration;
|
|
14338
|
+
/**
|
|
14339
|
+
* 차트 전역 설정 모델.<br/>
|
|
14340
|
+
*/
|
|
14341
|
+
get general(): ChartGeneral;
|
|
14489
14342
|
/**
|
|
14490
14343
|
* 차트 데이터 셋.
|
|
14491
14344
|
*/
|
|
@@ -14530,6 +14383,7 @@ declare class Chart {
|
|
|
14530
14383
|
*/
|
|
14531
14384
|
get assets(): AssetCollection;
|
|
14532
14385
|
/**
|
|
14386
|
+
* @deprecated {@link general}을 대신 사용한다.
|
|
14533
14387
|
* 차트 전역 속성 모델.<br/>
|
|
14534
14388
|
*/
|
|
14535
14389
|
get chartOptions(): ChartOptions;
|
|
@@ -15185,9 +15039,11 @@ declare class LinearAxisLabel extends ContinuousAxisLabel<LinearAxisLabelOptions
|
|
|
15185
15039
|
declare class AxisBreak extends AxisItem<AxisBreakOptions> {
|
|
15186
15040
|
static defaults: AxisBreakOptions;
|
|
15187
15041
|
private _sizeDim;
|
|
15042
|
+
private _space;
|
|
15188
15043
|
_sect: IAxisBreakSect;
|
|
15189
15044
|
getSize(domain: number): number;
|
|
15190
15045
|
protected _doApply(options: ChartItemOptions): void;
|
|
15046
|
+
prop<K extends keyof AxisBreakOptions>(prop: K, def?: any): AxisBreakOptions[K];
|
|
15191
15047
|
}
|
|
15192
15048
|
interface IAxisBreakSect {
|
|
15193
15049
|
from: number;
|
|
@@ -15196,9 +15052,9 @@ interface IAxisBreakSect {
|
|
|
15196
15052
|
len: number;
|
|
15197
15053
|
}
|
|
15198
15054
|
/**
|
|
15199
|
-
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
15055
|
+
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue} 위치에 표시되는 선(line) 모델.<br/>
|
|
15200
15056
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisBaseLineOptions AxisBaseLineOptions}이다.<br/>
|
|
15201
|
-
* 축의 최소값이 {@link https://realchart.co.kr/config/config/axis/linear#
|
|
15057
|
+
* 축의 최소값이 {@link https://realchart.co.kr/config/config/axis/linear#baseValue baseValue}보다 작을 때만 표시된다.
|
|
15202
15058
|
* 기본적으로 표시되지 않는다.
|
|
15203
15059
|
*/
|
|
15204
15060
|
declare class AxisBaseLine extends AxisLine {
|
|
@@ -15370,7 +15226,7 @@ declare class ChartTextElement extends GroupElement {
|
|
|
15370
15226
|
|
|
15371
15227
|
type Visitor<T extends RcElement> = (element: T, index?: number, count?: number) => void;
|
|
15372
15228
|
/** @private */
|
|
15373
|
-
declare class ElementPool<T extends RcElement> extends
|
|
15229
|
+
declare class ElementPool<T extends RcElement> extends RObject {
|
|
15374
15230
|
private _owner;
|
|
15375
15231
|
private _creator;
|
|
15376
15232
|
private _pool;
|
|
@@ -15380,7 +15236,7 @@ declare class ElementPool<T extends RcElement> extends RcObject {
|
|
|
15380
15236
|
constructor(owner: RcElement, creator: {
|
|
15381
15237
|
new (doc: Document, styleName?: string): T;
|
|
15382
15238
|
}, styleName?: string);
|
|
15383
|
-
protected
|
|
15239
|
+
protected _doDispose(): void;
|
|
15384
15240
|
get isEmpty(): boolean;
|
|
15385
15241
|
get count(): number;
|
|
15386
15242
|
get first(): T;
|
|
@@ -15663,7 +15519,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
15663
15519
|
getPointsAt(axis: Axis, pos: number): IPointView[];
|
|
15664
15520
|
getSiblings(pv: IPointView): IPointView[];
|
|
15665
15521
|
getSibling(pv: IPointView): IPointView;
|
|
15666
|
-
applyAutoRotation(view: PointLabelView, a: number, total: number, totalAngle
|
|
15522
|
+
applyAutoRotation(view: PointLabelView, a: number, total: number, totalAngle?: number): void;
|
|
15667
15523
|
isEmptyView(): boolean;
|
|
15668
15524
|
protected _doAttached(parent: RcElement): void;
|
|
15669
15525
|
protected _prepareStyleOrClass(model: T): void;
|
|
@@ -16192,7 +16048,7 @@ declare class TitleView extends BoundableElement<Title<TitleOptions>> {
|
|
|
16192
16048
|
/**
|
|
16193
16049
|
* @private
|
|
16194
16050
|
*/
|
|
16195
|
-
declare class HtmlButtonView extends
|
|
16051
|
+
declare class HtmlButtonView extends RObject {
|
|
16196
16052
|
static isButton(dom: Element): boolean;
|
|
16197
16053
|
private _dom;
|
|
16198
16054
|
private _span;
|
|
@@ -16200,7 +16056,7 @@ declare class HtmlButtonView extends RcObject {
|
|
|
16200
16056
|
private _model;
|
|
16201
16057
|
private _hovered;
|
|
16202
16058
|
constructor(doc: Document);
|
|
16203
|
-
protected
|
|
16059
|
+
protected _doDispose(): void;
|
|
16204
16060
|
get dom(): HTMLButtonElement;
|
|
16205
16061
|
setVisible(visible: boolean): boolean;
|
|
16206
16062
|
setModel(model: HtmlButton): this;
|
|
@@ -16267,7 +16123,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
16267
16123
|
private _hoverAnnotation;
|
|
16268
16124
|
private _hoverButton;
|
|
16269
16125
|
constructor(doc: Document);
|
|
16270
|
-
protected
|
|
16126
|
+
protected _doDispose(): void;
|
|
16271
16127
|
getAnnotationAnchor(model: any): RcElement;
|
|
16272
16128
|
titleView(): TitleView;
|
|
16273
16129
|
subtitleView(): TitleView;
|
|
@@ -16294,6 +16150,10 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
16294
16150
|
bodyOf(elt: Element): BodyView;
|
|
16295
16151
|
pointerMoved(x: number, y: number, target: EventTarget): void;
|
|
16296
16152
|
pointerLeaved(x: number, y: number, target: EventTarget): void;
|
|
16153
|
+
/**
|
|
16154
|
+
* body crosshair 선과 축 flag를 모두 숨긴다.<br/>
|
|
16155
|
+
* split에서는 축이 PaneContainer에 있으므로 $_clearSplitCrosshair로 flag까지 정리한다. (#850)
|
|
16156
|
+
*/
|
|
16297
16157
|
private $_hideCrosshairs;
|
|
16298
16158
|
/**
|
|
16299
16159
|
* 하나의 축에 대해 crosshair flag(축 위 라벨) 표시 + 최근접 point 계산 후 onChange 콜백 호출.
|
|
@@ -16327,13 +16187,14 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
16327
16187
|
}
|
|
16328
16188
|
|
|
16329
16189
|
declare class ChartControl extends RcControl implements IChartEventListener {
|
|
16190
|
+
private static $_conf;
|
|
16330
16191
|
private _chart;
|
|
16331
16192
|
private _chartView;
|
|
16332
16193
|
private _contextMenuDismissHandler;
|
|
16333
16194
|
constructor(doc: Document, container: string | HTMLDivElement);
|
|
16334
16195
|
protected _createChartView(doc: Document): ChartView;
|
|
16335
16196
|
protected _createPointerHandler(): ChartPointerHandler;
|
|
16336
|
-
protected
|
|
16197
|
+
protected _doDispose(): void;
|
|
16337
16198
|
onModelChanged(chart: ChartObject, item: ChartItem, tag: any): void;
|
|
16338
16199
|
onVisibleChanged(chart: ChartObject, item: ChartItem): void;
|
|
16339
16200
|
onPointVisibleChanged(chart: ChartObject, series: Series, point: DataPoint): void;
|
|
@@ -16626,7 +16487,7 @@ declare class LineSeries<OP extends LineSeriesOptions = LineSeriesOptions> exten
|
|
|
16626
16487
|
get flag(): LineSeriesFlag;
|
|
16627
16488
|
get arrow(): LineSeriesArrow;
|
|
16628
16489
|
backDir(): LineStepDirection;
|
|
16629
|
-
isConnectEnds(based: boolean, cyclic: boolean): boolean;
|
|
16490
|
+
isConnectEnds(based: boolean, cyclic: boolean): boolean | OP["connectEnds"];
|
|
16630
16491
|
isMarker(): boolean;
|
|
16631
16492
|
get canPolar(): boolean;
|
|
16632
16493
|
getLineType(): LineType;
|
|
@@ -16776,6 +16637,7 @@ declare class BarSeries<OP extends BarSeriesOptions = BarSeriesOptions> extends
|
|
|
16776
16637
|
*/
|
|
16777
16638
|
declare abstract class BarSeriesGroupBase<T extends BarSeriesBase, OP extends BarSeriesGroupBaseOptions<BarSeriesBaseOptions>> extends ClusterableSeriesGroup<T, OP> implements IClusterable {
|
|
16778
16639
|
static defaults: BarSeriesGroupBaseOptions<BarSeriesBaseOptions>;
|
|
16640
|
+
_distance: number;
|
|
16779
16641
|
canCategorized(): boolean;
|
|
16780
16642
|
getBaseValue(axis: IAxis): number;
|
|
16781
16643
|
getDepth(): number;
|
|
@@ -17044,7 +16906,7 @@ declare class BubblePie extends ChartItem<BubblePieOptions> {
|
|
|
17044
16906
|
*/
|
|
17045
16907
|
getLegendSliceColors(): string[];
|
|
17046
16908
|
getInnerRadius(rd: number): number;
|
|
17047
|
-
protected _doSetSimple(src: any): boolean;
|
|
16909
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17048
16910
|
protected _doApply(op: BubblePieOptions): void;
|
|
17049
16911
|
private _buildLegendSources;
|
|
17050
16912
|
private _getFieldValue;
|
|
@@ -17406,9 +17268,12 @@ declare class PieSeriesLabel extends WidgetSeriesLabel<PieSeriesLabelOptions> {
|
|
|
17406
17268
|
declare class PieSeriesDepth extends ChartItem<PieSeriesDepthOptions> {
|
|
17407
17269
|
static readonly DEPTH_RATIO = 0.6;
|
|
17408
17270
|
static defaults: PieSeriesDepthOptions;
|
|
17271
|
+
private _runLength;
|
|
17272
|
+
private _runRatio;
|
|
17409
17273
|
getLength(): number;
|
|
17274
|
+
prop<K extends keyof PieSeriesDepthOptions>(prop: K, def?: any): PieSeriesDepthOptions[K];
|
|
17410
17275
|
protected _isVisible(): boolean;
|
|
17411
|
-
protected _doSetSimple(src: any): boolean;
|
|
17276
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17412
17277
|
protected _doApply(op: PieSeriesDepthOptions): void;
|
|
17413
17278
|
}
|
|
17414
17279
|
/**
|
|
@@ -17540,9 +17405,9 @@ declare class TextAnnotation extends Annotation<TextAnnotationOptions> {
|
|
|
17540
17405
|
private _numberFormat;
|
|
17541
17406
|
private _timeFormat;
|
|
17542
17407
|
_domain: IRichTextDomain;
|
|
17543
|
-
getTextOrientation(): TextOrientation;
|
|
17408
|
+
getTextOrientation(): _realgrid_common.TextOrientation;
|
|
17544
17409
|
protected _isVisible(): boolean;
|
|
17545
|
-
protected _doSetSimple(src: any): boolean;
|
|
17410
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17546
17411
|
protected _doApply(options: TextAnnotationOptions): void;
|
|
17547
17412
|
}
|
|
17548
17413
|
|
|
@@ -17559,7 +17424,7 @@ declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
|
17559
17424
|
*/
|
|
17560
17425
|
getImageUrl(): string;
|
|
17561
17426
|
protected _isVisible(): boolean;
|
|
17562
|
-
protected _doSetSimple(src: any): boolean;
|
|
17427
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17563
17428
|
}
|
|
17564
17429
|
|
|
17565
17430
|
/**
|
|
@@ -17575,7 +17440,7 @@ declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
|
17575
17440
|
hasCustomPath(): boolean;
|
|
17576
17441
|
getHeadSize(): number;
|
|
17577
17442
|
protected _doApply(options: ShapeAnnotationOptions): void;
|
|
17578
|
-
protected _doSetSimple(src: any): boolean;
|
|
17443
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17579
17444
|
private $_resolveArrowStyle;
|
|
17580
17445
|
}
|
|
17581
17446
|
|
|
@@ -18217,33 +18082,6 @@ declare class ArcElement extends PathElement {
|
|
|
18217
18082
|
}
|
|
18218
18083
|
|
|
18219
18084
|
declare const SVGNS = "http://www.w3.org/2000/svg";
|
|
18220
|
-
declare const isObject: (v: any) => boolean;
|
|
18221
|
-
/** @private */
|
|
18222
|
-
declare const isArray: (arg: any) => arg is any[];
|
|
18223
|
-
declare const isString: (v: any) => v is string;
|
|
18224
|
-
declare const isNumber: (v: any) => v is number;
|
|
18225
|
-
/** @private */
|
|
18226
|
-
declare const assignObj: {
|
|
18227
|
-
<T extends {}, U>(target: T, source: U): T & U;
|
|
18228
|
-
<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
|
|
18229
|
-
<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
|
|
18230
|
-
(target: object, ...sources: any[]): any;
|
|
18231
|
-
};
|
|
18232
|
-
/** @private */
|
|
18233
|
-
declare const cos: (x: number) => number;
|
|
18234
|
-
/** @private */
|
|
18235
|
-
declare const sin: (x: number) => number;
|
|
18236
|
-
/** @private */
|
|
18237
|
-
declare const minv: (...values: number[]) => number;
|
|
18238
|
-
/** @private */
|
|
18239
|
-
declare const maxv: (...values: number[]) => number;
|
|
18240
|
-
/** @private */
|
|
18241
|
-
declare const absv: (x: number) => number;
|
|
18242
|
-
declare const pickNum: (v1: any, v2: any) => number;
|
|
18243
|
-
declare const pickProp: (v1: any, v2: any) => any;
|
|
18244
|
-
declare const pickProp3: (v1: any, v2: any, v3: any) => any;
|
|
18245
|
-
declare const copyObj: (obj: any) => any;
|
|
18246
|
-
declare const incv: (prev: number, next: number, rate: number) => number;
|
|
18247
18085
|
|
|
18248
18086
|
declare abstract class GaugeView<T extends GaugeBase = GaugeBase> extends ContentView<T> {
|
|
18249
18087
|
static readonly GAUGE_CLASS = "rct-gauge";
|
|
@@ -18431,4 +18269,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
18431
18269
|
declare const createData: typeof Globals.createData;
|
|
18432
18270
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
18433
18271
|
|
|
18434
|
-
export {
|
|
18272
|
+
export { Annotation, AnnotationAnimationOptions, AnnotationClickArgs, AnnotationOptions, AnnotationOptionsType, AnnotationView, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaRangeSeriesView, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AreaSeriesView, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisGuideOptionsType, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisMinorGridOptions, AxisMinorTickOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletBandLabelOptions, BulletBarLabelOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisLabelOptions, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, CategoryTreeBandOptions, CategoryTreeDividerOptions, CategoryTreeLevelLabelOptions, CategoryTreeLevelOptions, CategoryTreeOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, HtmlButtonClickArgs, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPlottingItem, IPlottingOwner, IPointView, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineArrowPosition, LineArrowRotation, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesArrowOptions, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, PolarInnerTextOptions, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, ScatterSeriesView, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeAnnotationView, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StackLabel, StackLabelCallbackArgs, StackLabelOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextAnnotationView, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, WaterfallSeriesView, Widget, WidgetSeries, WidgetSeriesConnector, WidgetSeriesLabel, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, buildValueRanges, configure, createChart, createData, extend, fixnum, getVersion, isIE, parsePercentSize, setAnimatable, setDebugging, setLicenseKey, setLogging, toStr };
|