realchart 1.4.31 → 1.4.33
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 +297 -456
- 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
|
/**
|
|
@@ -2026,7 +1894,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
2026
1894
|
/**
|
|
2027
1895
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2028
1896
|
* 그룹에 포함된 경우 먼저 그룹의 baseValue를 따른다.
|
|
2029
|
-
* 또, 이 값을 지정하지 않은 경우 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
1897
|
+
* 또, 이 값을 지정하지 않은 경우 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2030
1898
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2031
1899
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2032
1900
|
*
|
|
@@ -2040,7 +1908,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
2040
1908
|
*/
|
|
2041
1909
|
nullAsBase?: boolean;
|
|
2042
1910
|
/**
|
|
2043
|
-
* {@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}로 지정되는
|
|
2044
1912
|
* 기준값 보다 작은 쪽의 point들에 적용되는 스타일.<br/>
|
|
2045
1913
|
*/
|
|
2046
1914
|
belowStyle?: SVGStyleOrClass;
|
|
@@ -2183,7 +2051,7 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2183
2051
|
tooltipHeader?: string;
|
|
2184
2052
|
/**
|
|
2185
2053
|
* 그룹 툴팁에 각 시리즈별 표시되는 포인트 툴팁 텍스트.<br/>
|
|
2186
|
-
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#
|
|
2054
|
+
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다.<br/>
|
|
2187
2055
|
*
|
|
2188
2056
|
* @default '${series}: ${detail}'
|
|
2189
2057
|
*/
|
|
@@ -2192,7 +2060,7 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2192
2060
|
* 축에 포함된 시리즈가 둘 이상일 때,
|
|
2193
2061
|
* 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
2194
2062
|
* 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
|
|
2195
|
-
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#
|
|
2063
|
+
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다.<br/>
|
|
2196
2064
|
*
|
|
2197
2065
|
* @default `['${series}', '${detail}']`
|
|
2198
2066
|
*/
|
|
@@ -2227,7 +2095,7 @@ interface LineSeriesGroupOptions extends SeriesGroupOptions<LineSeriesOptions> {
|
|
|
2227
2095
|
/**
|
|
2228
2096
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2229
2097
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2230
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2098
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2231
2099
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2232
2100
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2233
2101
|
*
|
|
@@ -2254,7 +2122,7 @@ interface AreaSeriesGroupOptions extends SeriesGroupOptions<AreaSeriesOptions> {
|
|
|
2254
2122
|
/**
|
|
2255
2123
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2256
2124
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2257
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2125
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2258
2126
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2259
2127
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2260
2128
|
*
|
|
@@ -2290,7 +2158,7 @@ interface BarSeriesGroupBaseOptions<T extends BarSeriesBaseOptions> extends Clus
|
|
|
2290
2158
|
/**
|
|
2291
2159
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2292
2160
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2293
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2161
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2294
2162
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2295
2163
|
*
|
|
2296
2164
|
* @default undefined
|
|
@@ -2351,7 +2219,7 @@ interface MarkerSeriesOptions extends ConnectableSeriesOptions {
|
|
|
2351
2219
|
colorByPoint?: boolean;
|
|
2352
2220
|
/**
|
|
2353
2221
|
* marker가 마우스 아래 있는 지 판단할 때 외부로 추가되는 가상의 두께.<br/>
|
|
2354
|
-
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/
|
|
2222
|
+
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/general/pointHovering#hintDistance hintDistance} 설정을 따른다.
|
|
2355
2223
|
*/
|
|
2356
2224
|
hintDistance?: number;
|
|
2357
2225
|
}
|
|
@@ -2406,14 +2274,14 @@ interface LineSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
|
2406
2274
|
/**
|
|
2407
2275
|
* 데이터포인트 위에 마우스가 있을 때 적용되는
|
|
2408
2276
|
* {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
2409
|
-
* {@link https://realchart.co.kr/config/config/base/series#
|
|
2277
|
+
* {@link https://realchart.co.kr/config/config/base/series#hoverStyle hoverStyle} 보다 우선 적용된다.
|
|
2410
2278
|
*
|
|
2411
2279
|
*
|
|
2412
2280
|
*/
|
|
2413
2281
|
hoverStyle?: SVGStyleOrClass;
|
|
2414
2282
|
/**
|
|
2415
2283
|
* marker가 마우스 아래 있는 지 판단할 때 외부로 추가되는 가상의 두께.<br/>
|
|
2416
|
-
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/
|
|
2284
|
+
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/general/pointHovering#hintDistance hintDistance} 설정을 따른다.
|
|
2417
2285
|
*/
|
|
2418
2286
|
hintDistance?: number;
|
|
2419
2287
|
}
|
|
@@ -2959,7 +2827,7 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
2959
2827
|
/**
|
|
2960
2828
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2961
2829
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2962
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2830
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
2963
2831
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2964
2832
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.<br/>
|
|
2965
2833
|
* {@link https://realchart.co.kr/config/config/series/area area} 시리즈와 다르게,
|
|
@@ -3072,7 +2940,7 @@ interface AreaSeriesOptions extends LineSeriesOptions {
|
|
|
3072
2940
|
/**
|
|
3073
2941
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
3074
2942
|
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
3075
|
-
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
2943
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}를 따르고,
|
|
3076
2944
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
3077
2945
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
3078
2946
|
*
|
|
@@ -3558,6 +3426,26 @@ interface DumbbellSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
|
3558
3426
|
shape?: Shape;
|
|
3559
3427
|
}
|
|
3560
3428
|
declare const DumbbellSeriesType = "dumbbell";
|
|
3429
|
+
/**
|
|
3430
|
+
* Dumbbell 시리즈의 point label 옵션.<br/>
|
|
3431
|
+
* high(y)와 low 쪽 라벨을 각각 표시하거나 숨길 수 있다.
|
|
3432
|
+
*/
|
|
3433
|
+
interface DumbbellSeriesLabelOptions extends DataPointLabelOptions {
|
|
3434
|
+
/**
|
|
3435
|
+
* high(y) 쪽 데이터포인트 라벨 표시 여부.<br/>
|
|
3436
|
+
* {@link visible}이 true일 때만 적용된다.<br/>
|
|
3437
|
+
*
|
|
3438
|
+
* @default true
|
|
3439
|
+
*/
|
|
3440
|
+
highVisible?: boolean;
|
|
3441
|
+
/**
|
|
3442
|
+
* low 쪽 데이터포인트 라벨 표시 여부.<br/>
|
|
3443
|
+
* {@link visible}이 true일 때만 적용된다.<br/>
|
|
3444
|
+
*
|
|
3445
|
+
* @default true
|
|
3446
|
+
*/
|
|
3447
|
+
lowVisible?: boolean;
|
|
3448
|
+
}
|
|
3561
3449
|
/**
|
|
3562
3450
|
* Dumbbell 시리즈.<br/>
|
|
3563
3451
|
* {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'dumbbell'이다.<br/>
|
|
@@ -3599,6 +3487,12 @@ interface DumbbellSeriesOptions extends LowRangedSeriesOptions {
|
|
|
3599
3487
|
/**
|
|
3600
3488
|
*/
|
|
3601
3489
|
lowMarker?: DumbbellSeriesMarkerOptions;
|
|
3490
|
+
/**
|
|
3491
|
+
* 데이터포인트 라벨 옵션.<br/>
|
|
3492
|
+
* {@link https://realchart.co.kr/docs/api/options/DumbbellSeriesLabelOptions#highVisible highVisible}, {@link https://realchart.co.kr/docs/api/options/DumbbellSeriesLabelOptions#lowVisible lowVisible}로
|
|
3493
|
+
* high/low 라벨을 개별 제어할 수 있다.
|
|
3494
|
+
*/
|
|
3495
|
+
pointLabel?: DumbbellSeriesLabelOptions | boolean;
|
|
3602
3496
|
}
|
|
3603
3497
|
declare const EqualizerSeriesType = "equalizer";
|
|
3604
3498
|
/**
|
|
@@ -5126,30 +5020,6 @@ declare class DatetimeFormatter {
|
|
|
5126
5020
|
private parse;
|
|
5127
5021
|
}
|
|
5128
5022
|
|
|
5129
|
-
/**
|
|
5130
|
-
* @private
|
|
5131
|
-
*
|
|
5132
|
-
* 'as,0.0#'
|
|
5133
|
-
* NOTE: 'a'는 bigint에 사용할 수 없다.
|
|
5134
|
-
*
|
|
5135
|
-
* //TODO: ',' 자리에 다른 문자(ex. space)를 표시할 수 있도록 한다.
|
|
5136
|
-
* //TODO: Intl.NumberFormat 사용할 것. toLocaleString()할 때마다 이 객체가 생성되는 듯.
|
|
5137
|
-
*/
|
|
5138
|
-
declare class NumberFormatter {
|
|
5139
|
-
static readonly DEFAULT_FORMAT = "";
|
|
5140
|
-
private static readonly Formatters;
|
|
5141
|
-
static getFormatter(format: string): NumberFormatter;
|
|
5142
|
-
static get Default(): NumberFormatter;
|
|
5143
|
-
private _format;
|
|
5144
|
-
private _options;
|
|
5145
|
-
private _options2;
|
|
5146
|
-
constructor(format: string);
|
|
5147
|
-
get format(): string;
|
|
5148
|
-
toStr(value: number | bigint): string;
|
|
5149
|
-
toNum(value: number): number;
|
|
5150
|
-
private $_parse;
|
|
5151
|
-
}
|
|
5152
|
-
|
|
5153
5023
|
/** @private */
|
|
5154
5024
|
declare class Sides {
|
|
5155
5025
|
top: number;
|
|
@@ -5170,20 +5040,25 @@ declare class Sides {
|
|
|
5170
5040
|
/**
|
|
5171
5041
|
* @private
|
|
5172
5042
|
*
|
|
5173
|
-
*
|
|
5174
|
-
*
|
|
5175
|
-
*
|
|
5043
|
+
* 'as,0.0#'
|
|
5044
|
+
* NOTE: 'a'는 bigint에 사용할 수 없다.
|
|
5045
|
+
*
|
|
5046
|
+
* //TODO: ',' 자리에 다른 문자(ex. space)를 표시할 수 있도록 한다.
|
|
5047
|
+
* //TODO: Intl.NumberFormat 사용할 것. toLocaleString()할 때마다 이 객체가 생성되는 듯.
|
|
5176
5048
|
*/
|
|
5177
|
-
declare class
|
|
5049
|
+
declare class NumberFormatter {
|
|
5050
|
+
static readonly DEFAULT_FORMAT = "";
|
|
5178
5051
|
private static readonly Formatters;
|
|
5179
|
-
static getFormatter(format: string):
|
|
5052
|
+
static getFormatter(format: string): NumberFormatter;
|
|
5053
|
+
static get Default(): NumberFormatter;
|
|
5180
5054
|
private _format;
|
|
5181
|
-
private
|
|
5182
|
-
private
|
|
5055
|
+
private _options;
|
|
5056
|
+
private _options2;
|
|
5183
5057
|
constructor(format: string);
|
|
5184
5058
|
get format(): string;
|
|
5185
|
-
toStr(
|
|
5186
|
-
|
|
5059
|
+
toStr(value: number | bigint): string;
|
|
5060
|
+
toNum(value: number): number;
|
|
5061
|
+
private $_parse;
|
|
5187
5062
|
}
|
|
5188
5063
|
|
|
5189
5064
|
/**
|
|
@@ -5482,7 +5357,7 @@ interface SubtitleOptions extends TitleOptions {
|
|
|
5482
5357
|
*
|
|
5483
5358
|
* ```js
|
|
5484
5359
|
* const config = {
|
|
5485
|
-
*
|
|
5360
|
+
* general: {
|
|
5486
5361
|
* theme: 'dark',
|
|
5487
5362
|
* },
|
|
5488
5363
|
* };
|
|
@@ -5734,7 +5609,7 @@ interface ZoomCallbackArgs {
|
|
|
5734
5609
|
}
|
|
5735
5610
|
/**
|
|
5736
5611
|
* {@link BodyDepth.depth depth}가 지정된 body 영역의 양 축 방향에 표시되는
|
|
5737
|
-
* {@link https://realchart.co.kr/config/config/body#
|
|
5612
|
+
* {@link https://realchart.co.kr/config/config/body#xSide side} panel의 경계선 설정 옵션.<br/>
|
|
5738
5613
|
*/
|
|
5739
5614
|
interface BodyDepthLineOptions extends ChartItemOptions {
|
|
5740
5615
|
/**
|
|
@@ -5991,7 +5866,7 @@ interface SeriesNavigatorOptions extends ChartItemOptions {
|
|
|
5991
5866
|
*
|
|
5992
5867
|
* ```js
|
|
5993
5868
|
* const config = {
|
|
5994
|
-
*
|
|
5869
|
+
* general: {
|
|
5995
5870
|
* credits: {
|
|
5996
5871
|
* text: 'UN Data',
|
|
5997
5872
|
* url: 'https://data.un.org'
|
|
@@ -6118,7 +5993,7 @@ interface PointHoveringOptions extends ChartItemOptions {
|
|
|
6118
5993
|
* 상당히 큰 크기로 지정하면 마우스가 어느 위치에 있든 마우스에 가장 가까운 marker가 찾아진다.<br/>
|
|
6119
5994
|
* 물론 마우스가 실제 표시되는 marker 위에 있다면 그 것으로 결정된다.
|
|
6120
5995
|
* 찾아진 데이터포인트가 마우스 아래 있는 것으로 여겨져서 hover 효과가 표시되거나 관련 이벤트가 발생한다.<br/>
|
|
6121
|
-
* 기본값은 차트에 tooltip이 표시되고 tooltip.{@link https://realchart.co.kr/config/config/tooltip#
|
|
5996
|
+
* 기본값은 차트에 tooltip이 표시되고 tooltip.{@link https://realchart.co.kr/config/config/tooltip#followPointer followPointer}가 true이면 차트 크기보다 큰 값이 되고,
|
|
6122
5997
|
* 아니면 **30** 픽셀이다.
|
|
6123
5998
|
*
|
|
6124
5999
|
*/
|
|
@@ -6131,14 +6006,14 @@ interface PointHoveringOptions extends ChartItemOptions {
|
|
|
6131
6006
|
*/
|
|
6132
6007
|
declare const _TooltipScope: {
|
|
6133
6008
|
/**
|
|
6134
|
-
* {@link https://realchart.co.kr/config/config/
|
|
6009
|
+
* {@link https://realchart.co.kr/config/config/general/pointHovering#scope scope}와 동일한 규칙으로 툴팁에 포함할 데이터포인트 범위를 결정한다.<br/>
|
|
6135
6010
|
* 기본값이며, pointHovering이 `'auto'`이면 crosshair·시리즈 그룹·seriesHovering 설정에 따라
|
|
6136
6011
|
* `'point'`, `'group'`, `'axis'` 중 하나로 해석된다.
|
|
6137
6012
|
*/
|
|
6138
6013
|
readonly HOVER: "hover";
|
|
6139
6014
|
/**
|
|
6140
6015
|
* hover된 시리즈 하나의 데이터포인트만 툴팁에 표시한다.<br/>
|
|
6141
|
-
* 해당 시리즈의 {@link https://realchart.co.kr/config/config/base/series#
|
|
6016
|
+
* 해당 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipText tooltipText} 등이 사용된다.
|
|
6142
6017
|
*/
|
|
6143
6018
|
readonly POINT: "point";
|
|
6144
6019
|
/**
|
|
@@ -6150,7 +6025,7 @@ declare const _TooltipScope: {
|
|
|
6150
6025
|
/**
|
|
6151
6026
|
* hover된 시리즈가 연결된 x축의 모든 visible 시리즈 중, 동일 x(카테고리) 값을 갖는
|
|
6152
6027
|
* 데이터포인트를 한 툴팁에 표시한다.<br/>
|
|
6153
|
-
* x축의 {@link https://realchart.co.kr/config/config/base/axis#
|
|
6028
|
+
* x축의 {@link https://realchart.co.kr/config/config/base/axis#tooltipHeader tooltipHeader}, {@link https://realchart.co.kr/config/config/base/axis#tooltipRow tooltipRow} 등이 사용된다.
|
|
6154
6029
|
*/
|
|
6155
6030
|
readonly AXIS: "axis";
|
|
6156
6031
|
};
|
|
@@ -6178,7 +6053,7 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
6178
6053
|
scope?: TooltipScope;
|
|
6179
6054
|
/**
|
|
6180
6055
|
* 툴팁에 표시할 텍스트 형식.<br/>
|
|
6181
|
-
* 시리즈에 {@link https://realchart.co.kr/config/config/base/series#
|
|
6056
|
+
* 시리즈에 {@link https://realchart.co.kr/config/config/base/series#tooltipText tooltipText}가 시리즈 별 tooltip을 제공하지만,
|
|
6182
6057
|
* 이 속성이 지정된 경우 우선 사용된다.<br/>
|
|
6183
6058
|
*
|
|
6184
6059
|
* `${param;default;format}` 형식으로 아래과 같은 변수로 데이터 포인트 및 시리즈 값을 지정할 수 있다.
|
|
@@ -6590,7 +6465,7 @@ interface PaneBodyOptions extends BodyOptions {
|
|
|
6590
6465
|
* 분할(split) 모드 설정 옵션.<br/>
|
|
6591
6466
|
* 각 pane에 해당하는 x, y축이 반드시 존재해야 한다.
|
|
6592
6467
|
* axis는 {@link https://realchart.co.kr/config/config/base/axis#row row}, {@link https://realchart.co.kr/config/config/base/axis#col col} 속성으로 위치를 지정한다.
|
|
6593
|
-
* 시리즈는 {@link https://realchart.co.kr/config/config/base/series#
|
|
6468
|
+
* 시리즈는 {@link https://realchart.co.kr/config/config/base/series#xAxis xAxis}, {@link https://realchart.co.kr/config/config/base/series#yAxis yAxis} 설정에 따라 연결된 axis 위치에 따라 자동으로 결정된다.
|
|
6594
6469
|
*
|
|
6595
6470
|
* @modules split
|
|
6596
6471
|
* @css 'rct-panes'
|
|
@@ -8294,22 +8169,17 @@ declare const extend: <O extends ChartItemOptions>(base: any, source: O) => O;
|
|
|
8294
8169
|
/**
|
|
8295
8170
|
* {@link Series 시리즈}, {@link rc.Axis 축}, {@link rc.Legend legend} 등, 차트 구성 요소 모델들의 기반 클래스.<br/>
|
|
8296
8171
|
* {@link updateOptions}등의 공통 메소드들이 구현되어 있다.
|
|
8172
|
+
*
|
|
8173
|
+
* {@link ROptionable} 상속(realmap과 동일 규약):
|
|
8174
|
+
* - `_op` = **delta**(명시 설정만). defaults/자식은 포함하지 않는다.
|
|
8175
|
+
* - 효과 값 읽기: `prop()` / `num()` / `bool()`
|
|
8176
|
+
* - 자식은 `_addChild`로 `_children`에만 등록(부모 `_op` 비마운트)
|
|
8297
8177
|
*/
|
|
8298
|
-
declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
8178
|
+
declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends ROptionable<OP> {
|
|
8299
8179
|
static readonly REFRESHED = "refreshed";
|
|
8300
8180
|
static defaults: ChartItemOptions;
|
|
8301
8181
|
readonly chart: IChart;
|
|
8302
8182
|
private _config;
|
|
8303
|
-
private _children;
|
|
8304
|
-
/**
|
|
8305
|
-
* @readonly
|
|
8306
|
-
*
|
|
8307
|
-
* 이 모델에 설정하는 속성들을 포함하는 객체로서 차트 생성시 혹은 {@link load} 메소드를 통해 초기 값들이 지정된다.<br/>
|
|
8308
|
-
* 또, 각 모델별로 기본적으로 적용되는 기본값들이 있다.<br/>
|
|
8309
|
-
* 내부에서 관리하는 속성이므로, 이 속성을 다른 객체 등으로 직접 변경해서는 안된다.<br/>
|
|
8310
|
-
* 또, 이 옵션의 속성들을 직접 변경하지 않고 {@link updateOption} 등의 메소드를 호출해야 한다.
|
|
8311
|
-
*/
|
|
8312
|
-
protected _op: OP;
|
|
8313
8183
|
/**
|
|
8314
8184
|
* @private
|
|
8315
8185
|
*
|
|
@@ -8322,21 +8192,21 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8322
8192
|
* @param chart 차트 객체
|
|
8323
8193
|
*/
|
|
8324
8194
|
constructor(chart: IChart);
|
|
8325
|
-
|
|
8326
|
-
* @private
|
|
8327
|
-
*/
|
|
8328
|
-
init(): OP;
|
|
8329
|
-
protected _doInit(op: OP): void;
|
|
8195
|
+
protected _addChild<T extends ROptionable>(name: string & keyof OP, child: T): T;
|
|
8330
8196
|
/**
|
|
8331
8197
|
* @private
|
|
8332
8198
|
*/
|
|
8333
8199
|
_initObject(): this;
|
|
8334
8200
|
/**
|
|
8335
|
-
* 차트를 생성할 때나 {@link updateOptions} 등을 통해 이 모델 객체에 설정된 옵션
|
|
8336
|
-
* 기본 설정값들이 포함된 원본 설정 객체(복사본이 아니다).<br/>
|
|
8201
|
+
* 차트를 생성할 때나 {@link updateOptions} 등을 통해 이 모델 객체에 설정된 옵션 값들(delta).<br/>
|
|
8337
8202
|
* 리턴된 객체의 속성값들을 가져올 수 있지만,
|
|
8338
8203
|
* 속성들을 직접 수정하는 것은 권장되는 방법이 아니다.
|
|
8339
8204
|
* {@link updateOptions}나 {@link updateOption} 등을 사용해서 옵션들을 변경해야 한다.
|
|
8205
|
+
*
|
|
8206
|
+
* @remarks
|
|
8207
|
+
* - `options`/`_op`는 **delta**(명시 설정만). 기본값·등록 자식 키는 포함되지 않는다.
|
|
8208
|
+
* - 효과 값(기본값 fallback) 읽기는 `prop` / `num` / `bool`을 사용한다.
|
|
8209
|
+
* - View는 `model.options.xxx` 대신 `model.prop('xxx')` 또는 모델 getter를 사용한다.
|
|
8340
8210
|
*/
|
|
8341
8211
|
get options(): OP;
|
|
8342
8212
|
/**
|
|
@@ -8359,7 +8229,13 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8359
8229
|
get visible(): boolean;
|
|
8360
8230
|
set visible(value: boolean);
|
|
8361
8231
|
protected _isVisible(): boolean;
|
|
8362
|
-
/**
|
|
8232
|
+
/** 숫자 옵션 효과 값. 문자열(`'30px'`)은 parseFloat 결과를 반환한다. */
|
|
8233
|
+
num<K extends keyof OP>(prop: K, def?: number): number;
|
|
8234
|
+
/**
|
|
8235
|
+
* @private
|
|
8236
|
+
* 차트 내부 load 진입점. ROptionable `$_load`와 동일하되,
|
|
8237
|
+
* 자식은 `_load`(오버라이드 가능)로 위임하고 visible 변경을 통지한다.
|
|
8238
|
+
*/
|
|
8363
8239
|
_load(source: any): OP;
|
|
8364
8240
|
/**
|
|
8365
8241
|
* 기존 옵션 값들을 모두 제거하고 source에 지정한 값들로 새로 구성한다.<br/>
|
|
@@ -8372,100 +8248,48 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8372
8248
|
* ```
|
|
8373
8249
|
*
|
|
8374
8250
|
* @param source 설정 정보 객체 혹은 단일값.
|
|
8251
|
+
* @param clear true면 기존 delta를 비운 뒤 로드. 기본 true.
|
|
8375
8252
|
* @returns 이 객체 자신.
|
|
8376
8253
|
*/
|
|
8377
|
-
loadOptions(source:
|
|
8254
|
+
loadOptions(source: any, clear?: boolean): this;
|
|
8378
8255
|
/**
|
|
8379
8256
|
* 이 모델 객체에 설정된 전역 기본값과 다른 옵션 값들이 포함된 사본 객체로 리턴한다.<br/>
|
|
8380
|
-
* {@link options}
|
|
8257
|
+
* {@link options}는 delta(명시 설정)만 담는다. 효과 값은 `prop`으로 읽는다.
|
|
8381
8258
|
*
|
|
8382
|
-
*
|
|
8383
|
-
* const options = chart.legend.saveOptions();
|
|
8384
|
-
* console.log(options);
|
|
8385
|
-
* ```
|
|
8386
|
-
*
|
|
8387
|
-
* @param recursive 기본값 true이면 하위 모델의 옵션들도 포함된다.
|
|
8259
|
+
* @param props 생략 또는 boolean이면 기존 ChartItem API(`recursive`)로 해석한다. 기본 recursive=true.
|
|
8388
8260
|
* @returns 옵션 사본 객체.
|
|
8389
8261
|
*/
|
|
8390
|
-
saveOptions(recursive?: boolean):
|
|
8391
|
-
/**
|
|
8392
|
-
* 하나 이상의 option 설정을 하고,
|
|
8393
|
-
* 차트가 다시 그려지도록 한다.<br/>
|
|
8394
|
-
*
|
|
8395
|
-
* ```js
|
|
8396
|
-
* chart.legend.updateOptions({
|
|
8397
|
-
* gap: 10,
|
|
8398
|
-
* lineGap: 20
|
|
8399
|
-
* });
|
|
8400
|
-
* ```
|
|
8401
|
-
*
|
|
8402
|
-
* 권장하는 방식은 아니지만, {@link options}의 값들을 직접 수정한 후에도 이 메소드를 호출해서
|
|
8403
|
-
* 내부의 값들이 다시 계산되도록 해야 한다.
|
|
8404
|
-
*
|
|
8405
|
-
* ```js
|
|
8406
|
-
* chart.legend.options.gap = 10,
|
|
8407
|
-
* chart.legend.options.lineGap = 20,
|
|
8408
|
-
* chart.legend.updateOptions();
|
|
8409
|
-
* ```
|
|
8410
|
-
*
|
|
8411
|
-
* @param source 설정 정보 객체 혹은 단일값.
|
|
8412
|
-
* @param render true로 지정하면 설정 후 차트를 다시 그린다.
|
|
8413
|
-
* @returns 객체 자신.
|
|
8414
|
-
*/
|
|
8415
|
-
private $_updateChildren;
|
|
8416
|
-
private $_mergeOptions;
|
|
8417
|
-
updateOptions(source?: OP, render?: boolean): this;
|
|
8418
|
-
/**
|
|
8419
|
-
* 하나의 속성 값을 설정한다.<br/>
|
|
8420
|
-
* 여러 속성들을 한꺼번에 변경할 때는 {@link updateOptions}를 사용한다.
|
|
8421
|
-
* 기본적으로 이전 값과 다른 경우에만 적용된다.
|
|
8422
|
-
* 특히, 속성값이 객체인 경우 객체 속성만 바뀐 경우 적용되지 않는다.
|
|
8423
|
-
* 바꾸고 싶다면 force 매개변수를 true로 지정해서 호출한다.<br/>
|
|
8424
|
-
* 또, prop 매개변수가 하위 모델 이름인 경우 하위 모델의 {@link updateOptions}를 호출한 것과 동일하다.
|
|
8425
|
-
*
|
|
8426
|
-
* @param render true로 지정하면 설정 후 차트를 다시 그린다.
|
|
8427
|
-
* @param force 지정한 값이 이전 값과 동일한 경우에도 적용한다.
|
|
8428
|
-
* @returns 객체 자신.
|
|
8429
|
-
*/
|
|
8430
|
-
updateOption(prop: keyof OP, value: any, render?: boolean, force?: boolean): this;
|
|
8262
|
+
saveOptions(props?: any, recursive?: boolean, includeDefs?: boolean, force?: boolean): Partial<OP>;
|
|
8431
8263
|
/**
|
|
8432
|
-
*
|
|
8433
|
-
*
|
|
8434
|
-
*
|
|
8435
|
-
* ```js
|
|
8436
|
-
* chart.getSeries('ser02').toggleOption('visible');
|
|
8437
|
-
* ```
|
|
8438
|
-
*
|
|
8439
|
-
* @param prop 설정 속성 이름.
|
|
8440
|
-
* @param render true로 지정하면 chart를 다시 그린다.
|
|
8441
|
-
* false로 지정하고 여러 설정 후에 {@link Chart.render render}를 호출해서 다시 그리게 할 수도 있다.
|
|
8442
|
-
* 기본값은 true.
|
|
8443
|
-
* @returns 객체 자신.
|
|
8264
|
+
* 하나 이상의 option 설정을 하고, 차트가 다시 그려지도록 한다.<br/>
|
|
8265
|
+
* ROptionable stock 구현을 사용하되, visible 변경 시 `_visibleChanged`를 통지한다.
|
|
8444
8266
|
*/
|
|
8267
|
+
updateOptions(source?: Partial<OP>, render?: boolean): this;
|
|
8268
|
+
updateOption(prop: string, value: any, render?: boolean, force?: boolean): this;
|
|
8445
8269
|
toggleOption(prop: keyof OP, render?: boolean): this;
|
|
8446
|
-
/**
|
|
8447
|
-
* 지정한 속성에 설정한 값이 있으면 제거하고, 기본값으로(있다면) 되돌린다.
|
|
8448
|
-
*
|
|
8449
|
-
* @param prop 속성 이름.
|
|
8450
|
-
* @param render true(기본값)으로 지정하면 차트를 다시 그린다.
|
|
8451
|
-
* @returns 객체 자신.
|
|
8452
|
-
*/
|
|
8453
8270
|
removeOption(prop: keyof OP, render?: boolean): this;
|
|
8454
8271
|
/**
|
|
8455
8272
|
* {@link updateOptions}나 {@link updateOption} 등을 통해 설정된 모든 옵션 값들을 제거하거나,
|
|
8456
8273
|
* 전역 기본값이 존재하는 경우 그 값으로 되돌린다.<br/>
|
|
8457
8274
|
*
|
|
8275
|
+
* @param recursive 자식까지 재귀 제거 여부. 기본 true(기존 ChartItem / realmap load 경로).
|
|
8458
8276
|
* @param render true(기본값)으로 지정하면 차트를 다시 그린다.
|
|
8459
8277
|
* @returns 객체 자신.
|
|
8460
8278
|
*/
|
|
8461
|
-
clearOptions(render?: boolean): this;
|
|
8279
|
+
clearOptions(recursive?: boolean, render?: boolean): this;
|
|
8280
|
+
/**
|
|
8281
|
+
* 명시적으로 모델에 설정된 모든 style 값들을 제거한다.<br/>
|
|
8282
|
+
*
|
|
8283
|
+
* @param render true로 지정하면 옵션 변경 시 차트를 다시 그린다. 기본값 false
|
|
8284
|
+
*/
|
|
8285
|
+
clearStyle(render?: boolean): this;
|
|
8462
8286
|
/**
|
|
8463
8287
|
* 모델 css style 값을 변경한다.<br/>
|
|
8464
8288
|
* value에 undefined나 null, ''을 지정하면 기존에 설정됐던 스타일 항목이 제거된다.<br/>
|
|
8465
8289
|
*
|
|
8466
8290
|
* @param prop css 스타일 항목 이름.
|
|
8467
8291
|
* @param value 적용할 스타일 값.
|
|
8468
|
-
* @param render true로 지정하면 옵션 변경 시
|
|
8292
|
+
* @param render true로 지정하면 옵션 변경 시 차트를 다시 그린다. 기본값 true
|
|
8469
8293
|
* @returns
|
|
8470
8294
|
*/
|
|
8471
8295
|
setStyle(prop: string, value: any, render?: boolean): this;
|
|
@@ -8475,31 +8299,36 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
8475
8299
|
*
|
|
8476
8300
|
* @param props 스타일 항목들과 값들이 설정된 json 객체
|
|
8477
8301
|
* @param clear true로 지정하면 기존 스타일 값을 모두 제거한다. 기본값 false
|
|
8478
|
-
* @param render true로 지정하면 옵션 변경 시
|
|
8302
|
+
* @param render true로 지정하면 옵션 변경 시 차트를 다시 그린다. 기본값 true
|
|
8479
8303
|
*/
|
|
8480
8304
|
setStyles(props: object, clear?: boolean, render?: boolean): this;
|
|
8481
8305
|
/** @private */
|
|
8482
8306
|
_prepareRender(): void;
|
|
8483
8307
|
/** @private */
|
|
8484
8308
|
protected _changed(tag?: any): void;
|
|
8485
|
-
/**
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
/**
|
|
8490
|
-
|
|
8491
|
-
|
|
8492
|
-
|
|
8309
|
+
/**
|
|
8310
|
+
* ROptionable 변경 알림 hook — 기존 `_changed`로 위임한다.
|
|
8311
|
+
*/
|
|
8312
|
+
_optionChanged(tag?: string | string[]): void;
|
|
8313
|
+
/**
|
|
8314
|
+
* template 전처리 + DataObject 처리 + 자식 `_load` 위임.
|
|
8315
|
+
* (stock `_doLoad`는 자식을 `$_load`로 호출하므로 Annotation/Series `_load` 오버라이드가 필요하다.)
|
|
8316
|
+
*/
|
|
8317
|
+
protected _doLoad(op: OP, source: any): void;
|
|
8318
|
+
/**
|
|
8319
|
+
* ROptionable `(op, src)` 시그니처. (realmap과 동일)
|
|
8320
|
+
*/
|
|
8321
|
+
protected _doSetSimple(op: OP, src: any): boolean;
|
|
8493
8322
|
/** @private */
|
|
8494
8323
|
protected _doLoadProp(prop: string, value: any): boolean;
|
|
8495
|
-
/** @private */
|
|
8324
|
+
/** @private style 등에서 _doApply + visible 통지 */
|
|
8496
8325
|
private $_applyOptions;
|
|
8497
8326
|
/** @private */
|
|
8498
|
-
protected _setDim(
|
|
8327
|
+
protected _setDim(_op: OP, prop: string): void;
|
|
8499
8328
|
/** @private */
|
|
8500
|
-
protected _setDims(
|
|
8329
|
+
protected _setDims(op: OP, ...props: string[]): void;
|
|
8501
8330
|
/** @private */
|
|
8502
|
-
protected _doApply(op:
|
|
8331
|
+
protected _doApply(op: OP): void;
|
|
8503
8332
|
/** @private */
|
|
8504
8333
|
protected _doPrepareRender(chart: IChart): void;
|
|
8505
8334
|
}
|
|
@@ -8539,7 +8368,7 @@ declare abstract class ChartText<OP extends ChartTextOptions = ChartTextOptions>
|
|
|
8539
8368
|
buildSvg(view: TextElement, outline: TextElement, maxWidth: number, maxHeight: number, target: any, domain: IRichTextDomain): void;
|
|
8540
8369
|
/** @private */
|
|
8541
8370
|
prepareRich(text: string): void;
|
|
8542
|
-
protected _doSetSimple(src: any): boolean;
|
|
8371
|
+
protected _doSetSimple(op: OP, src: any): boolean;
|
|
8543
8372
|
protected _doApply(options: OP): void;
|
|
8544
8373
|
protected _getNumberText(value: any, useSymbols: boolean, forceSymbols: boolean): string;
|
|
8545
8374
|
protected _getText(text: string, value: any, useSymbols: boolean, forceSymbols: boolean): string;
|
|
@@ -8897,7 +8726,8 @@ declare abstract class CircularGauge<OP extends CircularGaugeOptions = CircularG
|
|
|
8897
8726
|
declare abstract class CircularGaugeGroup<T extends CircularGauge = CircularGauge, OP extends CircularGaugeGroupOptions = CircularGaugeGroupOptions> extends GaugeGroup<T, OP> {
|
|
8898
8727
|
static defaults: CircularGaugeGroupOptions;
|
|
8899
8728
|
private _label;
|
|
8900
|
-
props
|
|
8729
|
+
/** @private circular layout props (ROptionable.props()와 이름 충돌 방지) */
|
|
8730
|
+
_props: CircularProps;
|
|
8901
8731
|
protected _doInit(op: OP): void;
|
|
8902
8732
|
/**
|
|
8903
8733
|
* 게이지 중앙에 표시되는 label 설정 모델
|
|
@@ -8905,6 +8735,7 @@ declare abstract class CircularGaugeGroup<T extends CircularGauge = CircularGaug
|
|
|
8905
8735
|
*
|
|
8906
8736
|
*/
|
|
8907
8737
|
get label(): CircularGaugeLabel;
|
|
8738
|
+
getProps(): CircularProps;
|
|
8908
8739
|
setChildExtents(exts: ICircularGaugeExtents): void;
|
|
8909
8740
|
protected _doApply(options: OP): void;
|
|
8910
8741
|
}
|
|
@@ -9233,7 +9064,7 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
|
|
|
9233
9064
|
hasListMarker(): boolean;
|
|
9234
9065
|
getMarkerSize(): number;
|
|
9235
9066
|
getMarkerGap(): number;
|
|
9236
|
-
protected _doSetSimple(src: any): boolean;
|
|
9067
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
9237
9068
|
protected _doApply(options: TooltipOptions): void;
|
|
9238
9069
|
}
|
|
9239
9070
|
|
|
@@ -9451,6 +9282,9 @@ declare class TrendlineArea extends ChartItem<TrendlineAreaOptions> {
|
|
|
9451
9282
|
declare class TrendlineLabel extends IconedText<TrendlineLabelOptions> {
|
|
9452
9283
|
private static readonly OFFSET;
|
|
9453
9284
|
static defaults: TrendlineLabelOptions;
|
|
9285
|
+
private _position;
|
|
9286
|
+
private _align;
|
|
9287
|
+
private _verticalAlign;
|
|
9454
9288
|
getAlign(inverted: boolean, xReversed: boolean, yReversed: boolean, pos: number): Align;
|
|
9455
9289
|
getVerticalAlign(inverted: boolean, xReversed: boolean, yReversed: boolean): VerticalAlign;
|
|
9456
9290
|
getAlignPolar(angle: number): Align;
|
|
@@ -9460,6 +9294,7 @@ declare class TrendlineLabel extends IconedText<TrendlineLabelOptions> {
|
|
|
9460
9294
|
getText(): string;
|
|
9461
9295
|
getDefaultIconPos(): IconPosition;
|
|
9462
9296
|
protected _doApply(op: TrendlineLabelOptions): void;
|
|
9297
|
+
prop<K extends keyof TrendlineLabelOptions>(prop: K, def?: any): TrendlineLabelOptions[K];
|
|
9463
9298
|
}
|
|
9464
9299
|
declare class TrendlineMarker extends ChartItem<TrendlineMarkerOptions> {
|
|
9465
9300
|
static defaults: TrendlineMarkerOptions;
|
|
@@ -9507,6 +9342,8 @@ declare class Trendline extends ChartItem<TrendlineOptions> {
|
|
|
9507
9342
|
private _minY;
|
|
9508
9343
|
private _maxY;
|
|
9509
9344
|
private _formatter;
|
|
9345
|
+
private _forward;
|
|
9346
|
+
private _backward;
|
|
9510
9347
|
private _labelDomain;
|
|
9511
9348
|
constructor(owner: ITrendlineOwner);
|
|
9512
9349
|
protected _doInit(op: TrendlineOptions): void;
|
|
@@ -9557,7 +9394,7 @@ declare class DataPointLabel<OP extends DataPointLabelOptions = DataPointLabelOp
|
|
|
9557
9394
|
getDefaultIconPos(): IconPosition;
|
|
9558
9395
|
getRotation(): number;
|
|
9559
9396
|
protected _isVisible(): boolean;
|
|
9560
|
-
protected _doSetSimple(src: any): boolean;
|
|
9397
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
9561
9398
|
protected _doApply(op: OP): void;
|
|
9562
9399
|
protected _doPrepareRender(chart: IChart): void;
|
|
9563
9400
|
}
|
|
@@ -9743,6 +9580,8 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
9743
9580
|
private _pointLabelCallback;
|
|
9744
9581
|
protected _pointArgs: DataPointCallbackArgs;
|
|
9745
9582
|
private _argsPoint;
|
|
9583
|
+
/** 마지막 `_getPointCallbackArgs`에 사용한 args 객체. 포인트가 같아도 args가 다르면 다시 채운다. */
|
|
9584
|
+
private _argsObj;
|
|
9746
9585
|
private _loaded;
|
|
9747
9586
|
_pointsChanged: boolean;
|
|
9748
9587
|
/**
|
|
@@ -9939,7 +9778,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
9939
9778
|
pointHovered(p: DataPoint): void;
|
|
9940
9779
|
getViewRangeAxis(): 'x' | 'y' | 'z';
|
|
9941
9780
|
isLabelsVisible(): boolean;
|
|
9942
|
-
isPointLabelVisible(p: DataPoint): boolean;
|
|
9781
|
+
isPointLabelVisible(p: DataPoint, index?: number): boolean;
|
|
9943
9782
|
/**
|
|
9944
9783
|
* 지정한 x축 값에 위치한 첫번째 데이터포인트를 리턴한다.<br/>
|
|
9945
9784
|
* 전달되는 데이터포인트 정보는 리턴 시점의 복사본이다.
|
|
@@ -10050,7 +9889,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
10050
9889
|
removePoints(pts: (DataPoint | string | number | [number, number])[], animate?: boolean): number;
|
|
10051
9890
|
getDropPoints(): DataPoint[];
|
|
10052
9891
|
followPointer(): boolean;
|
|
10053
|
-
protected _doApply(op:
|
|
9892
|
+
protected _doApply(op: OP): void;
|
|
10054
9893
|
_setIndex(index: number, seriesIndex?: number): void;
|
|
10055
9894
|
protected _createLabel(chart: IChart): DataPointLabel;
|
|
10056
9895
|
protected _createPoint(source: any): DataPoint;
|
|
@@ -10141,7 +9980,7 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
|
|
|
10141
9980
|
private _args;
|
|
10142
9981
|
constructor(series: Series);
|
|
10143
9982
|
getMarkerStyle(p: DataPoint): any;
|
|
10144
|
-
protected _doSetSimple(src: any): boolean;
|
|
9983
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10145
9984
|
}
|
|
10146
9985
|
declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
|
|
10147
9986
|
_percent: number;
|
|
@@ -10162,7 +10001,7 @@ declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
|
|
|
10162
10001
|
}
|
|
10163
10002
|
declare class WidgetSeriesConnector extends ChartItem<WidgetSeriesConnectorOptions> {
|
|
10164
10003
|
static defaults: WidgetSeriesConnectorOptions;
|
|
10165
|
-
protected _doSetSimple(src: any): boolean;
|
|
10004
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10166
10005
|
}
|
|
10167
10006
|
declare abstract class WidgetSeriesLabel<OP extends WidgetSeriesLabelOptions = WidgetSeriesLabelOptions> extends DataPointLabel<OP> {
|
|
10168
10007
|
isSub: boolean;
|
|
@@ -10456,6 +10295,7 @@ declare class BodyDepth extends ChartItem<BodyDepthOptions> {
|
|
|
10456
10295
|
private _xSide;
|
|
10457
10296
|
private _ySide;
|
|
10458
10297
|
private _orgLine;
|
|
10298
|
+
private _angle;
|
|
10459
10299
|
protected _doInit(op: BodyDepthOptions): void;
|
|
10460
10300
|
/**
|
|
10461
10301
|
* x축 쪽 depth side 모델.<br/>
|
|
@@ -10470,8 +10310,9 @@ declare class BodyDepth extends ChartItem<BodyDepthOptions> {
|
|
|
10470
10310
|
*/
|
|
10471
10311
|
get orgLine(): BodyDepthLine;
|
|
10472
10312
|
protected _isVisible(): boolean;
|
|
10473
|
-
protected _doSetSimple(src: any): boolean;
|
|
10313
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10474
10314
|
protected _doApply(op: BodyDepthOptions): void;
|
|
10315
|
+
prop<K extends keyof BodyDepthOptions>(prop: K, def?: any): BodyDepthOptions[K];
|
|
10475
10316
|
}
|
|
10476
10317
|
/**
|
|
10477
10318
|
* @private
|
|
@@ -10659,13 +10500,17 @@ declare class SeriesNavigator extends ChartItem<SeriesNavigatorOptions> {
|
|
|
10659
10500
|
* const title = chart.title;
|
|
10660
10501
|
* legend.text = 'Chart Title';
|
|
10661
10502
|
* ```
|
|
10662
|
-
* 기본적으로 차트 중앙 상단에 표시되지만 {@link https://realchart.co.kr/config/config/title#align align}, {@link https://realchart.co.kr/config/config/title#
|
|
10503
|
+
* 기본적으로 차트 중앙 상단에 표시되지만 {@link https://realchart.co.kr/config/config/title#align align}, {@link https://realchart.co.kr/config/config/title#verticalAlign verticalAlign} 등으로 위치를 변경할 수 있다.<br/>
|
|
10663
10504
|
* {@link https://realchart.co.kr/guide/title 타이틀 개요} 페이지를 참조한다.
|
|
10664
10505
|
*/
|
|
10665
10506
|
declare class Title<OP extends TitleOptions = TitleOptions> extends ChartItem<OP> {
|
|
10666
10507
|
static defaults: TitleOptions;
|
|
10508
|
+
private _gap;
|
|
10509
|
+
/** title/subtitle 아래(또는 옆) 여백. '30px' 등 문자열도 숫자로 해석한다. */
|
|
10510
|
+
getGap(): number;
|
|
10511
|
+
protected _doApply(op: OP): void;
|
|
10667
10512
|
protected _isVisible(): boolean;
|
|
10668
|
-
protected _doSetSimple(src: any): boolean;
|
|
10513
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10669
10514
|
}
|
|
10670
10515
|
/**
|
|
10671
10516
|
* 차트 부제목(subtitle) 설정 모델.<br/>
|
|
@@ -10789,7 +10634,7 @@ interface IChart {
|
|
|
10789
10634
|
declare class Credits extends ChartItem<CreditsOptions> {
|
|
10790
10635
|
static defaults: CreditsOptions;
|
|
10791
10636
|
isFloating(): boolean;
|
|
10792
|
-
protected _doSetSimple(src: any): boolean;
|
|
10637
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
10793
10638
|
}
|
|
10794
10639
|
/**
|
|
10795
10640
|
* 데이터포인트에 마우수가 올라갈 때 처리하는 방식 설정 모델.<br/>
|
|
@@ -10882,6 +10727,10 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
|
|
|
10882
10727
|
* @deprecated use {@link general} instead.
|
|
10883
10728
|
*/
|
|
10884
10729
|
get options(): ChartConfiguration;
|
|
10730
|
+
/**
|
|
10731
|
+
* 내보내기(exporter) 모델.
|
|
10732
|
+
*/
|
|
10733
|
+
get exporter(): Exporter;
|
|
10885
10734
|
/**
|
|
10886
10735
|
* @deprecated use {@link general} instead.
|
|
10887
10736
|
*/
|
|
@@ -11035,7 +10884,7 @@ declare class Crosshair extends ChartItem<NumberCrosshairOptions & TimeCrosshair
|
|
|
11035
10884
|
getFlag(length: number, pos: number): string;
|
|
11036
10885
|
moved(pos: number, flag: string, points: DataPoint[]): void;
|
|
11037
10886
|
_setAxis(axis: any): void;
|
|
11038
|
-
protected _doSetSimple(
|
|
10887
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11039
10888
|
}
|
|
11040
10889
|
/**
|
|
11041
10890
|
* @private
|
|
@@ -11046,6 +10895,8 @@ interface IAxis {
|
|
|
11046
10895
|
_type(): string;
|
|
11047
10896
|
chart: IChart;
|
|
11048
10897
|
options: AxisOptions;
|
|
10898
|
+
/** 효과 옵션 값(기본값 fallback). */
|
|
10899
|
+
prop<K extends keyof AxisOptions>(prop: K, def?: any): AxisOptions[K];
|
|
11049
10900
|
crosshair: Crosshair;
|
|
11050
10901
|
_isX: boolean;
|
|
11051
10902
|
_isHorz: boolean;
|
|
@@ -11116,7 +10967,7 @@ declare abstract class AxisItem<OP extends AxisItemOptions> extends ChartItem<OP
|
|
|
11116
10967
|
declare class AxisLine<OP extends AxisLineOptions = AxisLineOptions> extends AxisItem<OP> {
|
|
11117
10968
|
static defaults: AxisLineOptions;
|
|
11118
10969
|
protected _isVisible(): boolean;
|
|
11119
|
-
protected _doSetSimple(src: any): boolean;
|
|
10970
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11120
10971
|
}
|
|
11121
10972
|
/**
|
|
11122
10973
|
* 축 타이틀 모델.<br/>
|
|
@@ -11142,15 +10993,15 @@ declare class AxisTitle extends AxisItem<AxisTitleOptions> {
|
|
|
11142
10993
|
private _gap;
|
|
11143
10994
|
getGap(): number;
|
|
11144
10995
|
getRotation(): number;
|
|
11145
|
-
getTextOrientation(): TextOrientation;
|
|
10996
|
+
getTextOrientation(): _realgrid_common.TextOrientation;
|
|
11146
10997
|
protected _isVisible(): boolean;
|
|
11147
|
-
protected _doSetSimple(src: any): boolean;
|
|
10998
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11148
10999
|
protected _doApply(op: AxisTitleOptions): void;
|
|
11149
11000
|
}
|
|
11150
11001
|
/**
|
|
11151
11002
|
* 축 단위 label 모델.<br/>
|
|
11152
11003
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisUnitLabelOptions AxisUnitLabelOptions}이고,
|
|
11153
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
11004
|
+
* {@link https://realchart.co.kr/config/config/base/axis#unitLabel unitLabel} 항목으로 설정한다.
|
|
11154
11005
|
*
|
|
11155
11006
|
* ```js
|
|
11156
11007
|
* const config = {
|
|
@@ -11168,7 +11019,7 @@ declare class AxisTitle extends AxisItem<AxisTitleOptions> {
|
|
|
11168
11019
|
declare class AxisUnitLabel extends AxisItem<AxisUnitLabelOptions> {
|
|
11169
11020
|
static defaults: AxisUnitLabelOptions;
|
|
11170
11021
|
protected _isVisible(): boolean;
|
|
11171
|
-
protected _doSetSimple(src: any): boolean;
|
|
11022
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11172
11023
|
}
|
|
11173
11024
|
interface IAxisGridRow {
|
|
11174
11025
|
axis: Axis;
|
|
@@ -11183,7 +11034,7 @@ interface IAxisGridRow {
|
|
|
11183
11034
|
*/
|
|
11184
11035
|
declare class AxisGridRows extends AxisItem<AxisGridRowsOptions> {
|
|
11185
11036
|
getRows(): IAxisGridRow[];
|
|
11186
|
-
protected _doSetSimple(
|
|
11037
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11187
11038
|
}
|
|
11188
11039
|
/**
|
|
11189
11040
|
* Axis tick의 위치에 수평 혹은 수직선으로 plot 영역을 구분 표시한다.<br/>
|
|
@@ -11266,13 +11117,13 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
|
|
|
11266
11117
|
_getGap(): number;
|
|
11267
11118
|
isShowLast(): boolean;
|
|
11268
11119
|
isShowFirst(): boolean;
|
|
11269
|
-
protected _doSetSimple(src: any): boolean;
|
|
11120
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11270
11121
|
protected _doPrepareRender(chart: IChart): void;
|
|
11271
11122
|
}
|
|
11272
11123
|
/**
|
|
11273
11124
|
* major tick 사이 보조 눈금(minor tick) 모델.<br/>
|
|
11274
11125
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorTickOptions AxisMinorTickOptions}이고,
|
|
11275
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
11126
|
+
* {@link https://realchart.co.kr/config/config/base/axis#minorTick minorTick} 항목으로 설정한다.
|
|
11276
11127
|
*/
|
|
11277
11128
|
declare class AxisMinorTick extends AxisItem<AxisMinorTickOptions> {
|
|
11278
11129
|
static defaults: AxisMinorTickOptions;
|
|
@@ -11280,13 +11131,13 @@ declare class AxisMinorTick extends AxisItem<AxisMinorTickOptions> {
|
|
|
11280
11131
|
private _count;
|
|
11281
11132
|
_getLength(): number;
|
|
11282
11133
|
_getCount(): number;
|
|
11283
|
-
protected _doSetSimple(src: any): boolean;
|
|
11134
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
11284
11135
|
protected _doPrepareRender(chart: IChart): void;
|
|
11285
11136
|
}
|
|
11286
11137
|
/**
|
|
11287
11138
|
* major grid 사이 보조 격자선(minor grid line) 모델.<br/>
|
|
11288
11139
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorGridOptions AxisMinorGridOptions}이고,
|
|
11289
|
-
* {@link https://realchart.co.kr/config/config/base/axis/grid#
|
|
11140
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorGrid grid.minorGrid} 항목으로 설정한다.
|
|
11290
11141
|
*/
|
|
11291
11142
|
declare class AxisMinorGrid extends AxisItem<AxisMinorGridOptions> {
|
|
11292
11143
|
static defaults: AxisMinorGridOptions;
|
|
@@ -11382,7 +11233,7 @@ declare class AxisZoom implements IAxisZoom {
|
|
|
11382
11233
|
/**
|
|
11383
11234
|
* 전체 각도가 360도 보다 작은 부채꼴 {@link https://realchart.co.kr/config/config/#polar polar} 좌표계의 X 축에서 원호의 양 끝과 중심에 연결되는 두 선분 모델.<br/>
|
|
11384
11235
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisSectorLineOptions AxisSectorLineOptions}이고,
|
|
11385
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
11236
|
+
* {@link https://realchart.co.kr/config/config/base/axis#sectorLine sectorLine} 항목으로 설정한다.<br/>
|
|
11386
11237
|
*
|
|
11387
11238
|
* ```js
|
|
11388
11239
|
* const config = {
|
|
@@ -11396,7 +11247,7 @@ declare class AxisZoom implements IAxisZoom {
|
|
|
11396
11247
|
* };
|
|
11397
11248
|
* ```
|
|
11398
11249
|
*
|
|
11399
|
-
* {@link https://realchart.co.kr/config/config/base/axis#
|
|
11250
|
+
* {@link https://realchart.co.kr/config/config/base/axis#startAngle startAngle}, {@link https://realchart.co.kr/config/config/base/axis#totalAngle totalAngle}을 참조한다.
|
|
11400
11251
|
*/
|
|
11401
11252
|
declare class AxisSectorLine extends AxisLine<AxisSectorLineOptions> {
|
|
11402
11253
|
}
|
|
@@ -11435,6 +11286,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11435
11286
|
_index: number;
|
|
11436
11287
|
private _row;
|
|
11437
11288
|
private _col;
|
|
11289
|
+
private _totalAngle;
|
|
11438
11290
|
_isX: boolean;
|
|
11439
11291
|
_isHorz: boolean;
|
|
11440
11292
|
_isOpposite: boolean;
|
|
@@ -11490,7 +11342,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11490
11342
|
get line(): AxisLine;
|
|
11491
11343
|
/**
|
|
11492
11344
|
* 부채꼴 polar 좌표계의 X 축일 때 원호의 양 끝과 중심에 연결되는 선분들의 설정 모델.<br/>
|
|
11493
|
-
* {@link https://realchart.co.kr/config/config/xAxis/category#
|
|
11345
|
+
* {@link https://realchart.co.kr/config/config/xAxis/category#startAngle startAngle}, {@link https://realchart.co.kr/config/config/xAxis/category#totalAngle totalAngle}을 참조한다.
|
|
11494
11346
|
*/
|
|
11495
11347
|
get sectorLine(): AxisSectorLine;
|
|
11496
11348
|
/**
|
|
@@ -11526,6 +11378,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11526
11378
|
isEmpty(): boolean;
|
|
11527
11379
|
private _checkEmpty;
|
|
11528
11380
|
checkVisible(): boolean;
|
|
11381
|
+
protected _isVisible(): boolean;
|
|
11529
11382
|
getBaseValue(): number;
|
|
11530
11383
|
length(): number;
|
|
11531
11384
|
axisMin(): number;
|
|
@@ -11627,7 +11480,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11627
11480
|
abstract xValueAt(pos: number): number;
|
|
11628
11481
|
_posValue(): 0 | 1 | -1;
|
|
11629
11482
|
_load(source: any): OP;
|
|
11630
|
-
protected _doApply(op:
|
|
11483
|
+
protected _doApply(op: OP): void;
|
|
11631
11484
|
protected _setMinMax(min: number, max: number): void;
|
|
11632
11485
|
protected abstract _createGrid(): AxisGrid;
|
|
11633
11486
|
_connect(series: IPlottingItem): void;
|
|
@@ -11809,7 +11662,7 @@ interface AxisLineOptions extends AxisItemOptions {
|
|
|
11809
11662
|
}
|
|
11810
11663
|
/**
|
|
11811
11664
|
* 부채꼴 polar 좌표계의 X 축일 때 원호의 양 끝과 중심에 연결되는 선분들의 설정모델.<br/>
|
|
11812
|
-
* {@link https://realchart.co.kr/config/config/xAxis/category#
|
|
11665
|
+
* {@link https://realchart.co.kr/config/config/xAxis/category#startAngle startAngle}, {@link https://realchart.co.kr/config/config/xAxis/category#totalAngle totalAngle}을 참조한다.
|
|
11813
11666
|
*
|
|
11814
11667
|
*/
|
|
11815
11668
|
interface AxisSectorLineOptions extends AxisLineOptions {
|
|
@@ -11923,7 +11776,7 @@ interface AxisMinorGridOptions extends AxisItemOptions {
|
|
|
11923
11776
|
* time 축은 major tick 타임스탬프 사이를 선형 보간하여 minor 위치를 계산한다
|
|
11924
11777
|
* (달력 단위가 아닌 픽셀 균등 배치).<br/>
|
|
11925
11778
|
* log 축은 major tick 값이 0보다 클 때 log 공간에서 보간한다.<br/>
|
|
11926
|
-
* {@link count}는 {@link https://realchart.co.kr/config/config/base/axis/grid#
|
|
11779
|
+
* {@link count}는 {@link https://realchart.co.kr/config/config/base/axis/grid#minorGrid minor grid} 위치 계산에도 사용된다
|
|
11927
11780
|
* (visible이 false여도 grid만 표시할 수 있다).<br/>
|
|
11928
11781
|
* major tick이 2개 미만이면 minor tick·grid가 생성되지 않는다.<br/>
|
|
11929
11782
|
* axis break 경계 tick이 있는 major 구간에는 minor tick이 생성되지 않는다.<br/>
|
|
@@ -11939,7 +11792,7 @@ interface AxisMinorTickOptions extends AxisItemOptions {
|
|
|
11939
11792
|
/**
|
|
11940
11793
|
* major tick 한 구간 사이에 표시할 minor tick 개수.<br/>
|
|
11941
11794
|
* 1 미만이거나 소수인 값은 내림하여 1 이상의 정수로 적용된다.<br/>
|
|
11942
|
-
* {@link https://realchart.co.kr/config/config/base/axis/grid#
|
|
11795
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorGrid minor grid} 위치에도 동일하게 적용된다.
|
|
11943
11796
|
*
|
|
11944
11797
|
* @default 4
|
|
11945
11798
|
*/
|
|
@@ -12152,8 +12005,8 @@ declare const _AxisLabelOverflow: {
|
|
|
12152
12005
|
/** @dummy */
|
|
12153
12006
|
type AxisLabelOverflow = typeof _AxisLabelOverflow[keyof typeof _AxisLabelOverflow];
|
|
12154
12007
|
/**
|
|
12155
|
-
* Axis의 label {@link https://realchart.co.kr/config/config/base/axis/label#
|
|
12156
|
-
* {@link https://realchart.co.kr/config/config/base/axis/label#
|
|
12008
|
+
* Axis의 label {@link https://realchart.co.kr/config/config/base/axis/label#textCallback 텍스트}나
|
|
12009
|
+
* {@link https://realchart.co.kr/config/config/base/axis/label#styleCallback 스타일}을 동적으로 리턴하는 콜백 등의 매개변수로 사용된다.<br/>
|
|
12157
12010
|
*/
|
|
12158
12011
|
interface AxisLabelArgs {
|
|
12159
12012
|
/**
|
|
@@ -12575,7 +12428,7 @@ declare const _CrosshairType: {
|
|
|
12575
12428
|
/** @dummy */
|
|
12576
12429
|
type CrosshairType = typeof _CrosshairType[keyof typeof _CrosshairType];
|
|
12577
12430
|
/**
|
|
12578
|
-
* Crosshair 위치가 변경될 때 발생되는 {@link https://realchart.co.kr/config/config/base/axis/crosshair#
|
|
12431
|
+
* Crosshair 위치가 변경될 때 발생되는 {@link https://realchart.co.kr/config/config/base/axis/crosshair#onChange 콜백}의 매개변수로 사용된다.<br/>
|
|
12579
12432
|
*/
|
|
12580
12433
|
interface CrosshairCallbackArgs {
|
|
12581
12434
|
/**
|
|
@@ -12693,7 +12546,7 @@ declare const _AxisPosition: {
|
|
|
12693
12546
|
* [주의] <br/>
|
|
12694
12547
|
* 1. 축에 연결된 시리즈들이 BarSeries 계열일 때만 가능하다.<br/>
|
|
12695
12548
|
* 2. 차트의 X축 하나에만 적용할 수 있다. 두번째로 지정된 축의 속성은 'normal'로 적용된다.<br/>
|
|
12696
|
-
* 3. 상대 축이 **linear** 가 아니거나 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
12549
|
+
* 3. 상대 축이 **linear** 가 아니거나 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue}가 min 보다 작거나 max보다 크면 이 값은 무시되고,
|
|
12697
12550
|
* 'normal'로 적용된다.
|
|
12698
12551
|
*
|
|
12699
12552
|
*
|
|
@@ -12812,7 +12665,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12812
12665
|
line?: AxisLineOptions | boolean | string;
|
|
12813
12666
|
/**
|
|
12814
12667
|
* 부채꼴 polar 좌표계의 X 축일 때 원호의 양 끝과 중심에 연결되는 선분들의 설정모델.<br/>
|
|
12815
|
-
* {@link https://realchart.co.kr/config/config/xAxis/category#
|
|
12668
|
+
* {@link https://realchart.co.kr/config/config/xAxis/category#startAngle startAngle}, {@link https://realchart.co.kr/config/config/xAxis/category#totalAngle totalAngle}을 참조한다.
|
|
12816
12669
|
*/
|
|
12817
12670
|
sectorLine?: AxisSectorLineOptions | boolean;
|
|
12818
12671
|
/**
|
|
@@ -12916,7 +12769,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12916
12769
|
tooltipHeader?: string;
|
|
12917
12770
|
/**
|
|
12918
12771
|
* 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12919
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#
|
|
12772
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12920
12773
|
*
|
|
12921
12774
|
* @default '${series}: ${detail}'
|
|
12922
12775
|
*/
|
|
@@ -12925,7 +12778,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12925
12778
|
* 축에 포함된 시리즈가 둘 이상일 때,
|
|
12926
12779
|
* 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12927
12780
|
* 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
|
|
12928
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#
|
|
12781
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipDetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12929
12782
|
*
|
|
12930
12783
|
* @default `['${series}', '${detail}']`
|
|
12931
12784
|
*/
|
|
@@ -13318,7 +13171,7 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
13318
13171
|
startOffset?: number;
|
|
13319
13172
|
}
|
|
13320
13173
|
/**
|
|
13321
|
-
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
13174
|
+
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue} 위치에 표시되는 선 설정 옵션.<br/>
|
|
13322
13175
|
* 기본적으로 표시되지 않는다.
|
|
13323
13176
|
*/
|
|
13324
13177
|
interface AxisBaseLineOptions extends AxisLineOptions {
|
|
@@ -13425,7 +13278,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13425
13278
|
maxValue?: number;
|
|
13426
13279
|
/**
|
|
13427
13280
|
* y축 기준값이 필요한 시리즈들({@link https://realchart.co.kr/config/config/series/bar bar} 계열,
|
|
13428
|
-
* {@link https://realchart.co.kr/config/config/series/area area})의 {@link https://realchart.co.kr/config/config/series/bar#
|
|
13281
|
+
* {@link https://realchart.co.kr/config/config/series/area area})의 {@link https://realchart.co.kr/config/config/series/bar#baseValue baseValue}가
|
|
13429
13282
|
* 지정되지 않은 경우 대신 적용되는 기본값.<br/>
|
|
13430
13283
|
* {@link baseLine}은 이 설정값에 해당되는 위치에 표시된다.
|
|
13431
13284
|
*
|
|
@@ -13441,7 +13294,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13441
13294
|
* `[[170, 0.2], [340, 0.1], [700, 0.05], [Infinity, 0.03]]`<br/>
|
|
13442
13295
|
* 또, 숫자와 'px'로 끝나는 문자열로 지정하면 위 설정을 무시하고,
|
|
13443
13296
|
* 적어도 지정한 pixel 정도의 여백이 생길 수 있도록 조정된다.<br/>
|
|
13444
|
-
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/base/series#
|
|
13297
|
+
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/base/series#paddingRate paddingRate}가 추가로 적용된다.
|
|
13445
13298
|
*/
|
|
13446
13299
|
padding?: number | [number, number][] | string;
|
|
13447
13300
|
/**
|
|
@@ -13723,7 +13576,7 @@ interface ConfigObject {
|
|
|
13723
13576
|
}
|
|
13724
13577
|
/**
|
|
13725
13578
|
*/
|
|
13726
|
-
interface ChartItemOptions {
|
|
13579
|
+
interface ChartItemOptions extends ROptions {
|
|
13727
13580
|
/**
|
|
13728
13581
|
* 표시 여부.<br/>
|
|
13729
13582
|
*
|
|
@@ -13878,10 +13731,10 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
13878
13731
|
icon?: string;
|
|
13879
13732
|
}
|
|
13880
13733
|
/**
|
|
13881
|
-
* 데이터포인트 뷰가 {@link https://realchart.co.kr/config/config/base/series#
|
|
13882
|
-
* 마우스 {@link https://realchart.co.kr/config/config/base/series#
|
|
13883
|
-
* 또는 {@link https://realchart.co.kr/config/config/base/series#
|
|
13884
|
-
* {@link https://realchart.co.kr/config/config/base/series#
|
|
13734
|
+
* 데이터포인트 뷰가 {@link https://realchart.co.kr/config/config/base/series#onPointClick 클릭}될 때,
|
|
13735
|
+
* 마우스 {@link https://realchart.co.kr/config/config/base/series#onPointHover hover}될 때,
|
|
13736
|
+
* 또는 {@link https://realchart.co.kr/config/config/base/series#pointStyleCallback 동적 스타일}을 리턴하는 콜백이나 이벤트 등의 매개변수로 사용된다.<br/>
|
|
13737
|
+
* {@link https://realchart.co.kr/config/config/base/series#onPointHover 콜백}의 매개변수로 사용된다.<br/>
|
|
13885
13738
|
*/
|
|
13886
13739
|
interface DataPointCallbackArgs {
|
|
13887
13740
|
/**
|
|
@@ -14502,6 +14355,8 @@ declare class Chart {
|
|
|
14502
14355
|
*/
|
|
14503
14356
|
constructor(config?: ChartConfiguration, callback?: (model: ChartObject, oldModel: ChartObject) => void);
|
|
14504
14357
|
/**
|
|
14358
|
+
* 차트 객체를 해제한다.<br/>
|
|
14359
|
+
* 공개 API 호환을 위해 메서드명은 `destroy`를 유지하며, 내부적으로는 `dispose`를 호출한다.
|
|
14505
14360
|
*/
|
|
14506
14361
|
destroy(): void;
|
|
14507
14362
|
/**
|
|
@@ -15212,9 +15067,11 @@ declare class LinearAxisLabel extends ContinuousAxisLabel<LinearAxisLabelOptions
|
|
|
15212
15067
|
declare class AxisBreak extends AxisItem<AxisBreakOptions> {
|
|
15213
15068
|
static defaults: AxisBreakOptions;
|
|
15214
15069
|
private _sizeDim;
|
|
15070
|
+
private _space;
|
|
15215
15071
|
_sect: IAxisBreakSect;
|
|
15216
15072
|
getSize(domain: number): number;
|
|
15217
15073
|
protected _doApply(options: ChartItemOptions): void;
|
|
15074
|
+
prop<K extends keyof AxisBreakOptions>(prop: K, def?: any): AxisBreakOptions[K];
|
|
15218
15075
|
}
|
|
15219
15076
|
interface IAxisBreakSect {
|
|
15220
15077
|
from: number;
|
|
@@ -15223,9 +15080,9 @@ interface IAxisBreakSect {
|
|
|
15223
15080
|
len: number;
|
|
15224
15081
|
}
|
|
15225
15082
|
/**
|
|
15226
|
-
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#
|
|
15083
|
+
* 연속 축의 {@link https://realchart.co.kr/config/config/yAxis/linear#baseValue baseValue} 위치에 표시되는 선(line) 모델.<br/>
|
|
15227
15084
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisBaseLineOptions AxisBaseLineOptions}이다.<br/>
|
|
15228
|
-
* 축의 최소값이 {@link https://realchart.co.kr/config/config/axis/linear#
|
|
15085
|
+
* 축의 최소값이 {@link https://realchart.co.kr/config/config/axis/linear#baseValue baseValue}보다 작을 때만 표시된다.
|
|
15229
15086
|
* 기본적으로 표시되지 않는다.
|
|
15230
15087
|
*/
|
|
15231
15088
|
declare class AxisBaseLine extends AxisLine {
|
|
@@ -15397,7 +15254,7 @@ declare class ChartTextElement extends GroupElement {
|
|
|
15397
15254
|
|
|
15398
15255
|
type Visitor<T extends RcElement> = (element: T, index?: number, count?: number) => void;
|
|
15399
15256
|
/** @private */
|
|
15400
|
-
declare class ElementPool<T extends RcElement> extends
|
|
15257
|
+
declare class ElementPool<T extends RcElement> extends RObject {
|
|
15401
15258
|
private _owner;
|
|
15402
15259
|
private _creator;
|
|
15403
15260
|
private _pool;
|
|
@@ -15407,7 +15264,7 @@ declare class ElementPool<T extends RcElement> extends RcObject {
|
|
|
15407
15264
|
constructor(owner: RcElement, creator: {
|
|
15408
15265
|
new (doc: Document, styleName?: string): T;
|
|
15409
15266
|
}, styleName?: string);
|
|
15410
|
-
protected
|
|
15267
|
+
protected _doDispose(): void;
|
|
15411
15268
|
get isEmpty(): boolean;
|
|
15412
15269
|
get count(): number;
|
|
15413
15270
|
get first(): T;
|
|
@@ -15661,7 +15518,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
15661
15518
|
setGrowRate(rate: number): void;
|
|
15662
15519
|
setPosRate(rate: number): void;
|
|
15663
15520
|
setPrevRate(rate: number): void;
|
|
15664
|
-
isPointLabelVisible(p: DataPoint): boolean;
|
|
15521
|
+
isPointLabelVisible(p: DataPoint, index?: number): boolean;
|
|
15665
15522
|
protected _doViewRateChanged(rate: number): void;
|
|
15666
15523
|
protected _doPosRateChanged(rate: number): void;
|
|
15667
15524
|
protected _doPrevRateChanged(rate: number): void;
|
|
@@ -15690,7 +15547,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
15690
15547
|
getPointsAt(axis: Axis, pos: number): IPointView[];
|
|
15691
15548
|
getSiblings(pv: IPointView): IPointView[];
|
|
15692
15549
|
getSibling(pv: IPointView): IPointView;
|
|
15693
|
-
applyAutoRotation(view: PointLabelView, a: number, total: number, totalAngle
|
|
15550
|
+
applyAutoRotation(view: PointLabelView, a: number, total: number, totalAngle?: number): void;
|
|
15694
15551
|
isEmptyView(): boolean;
|
|
15695
15552
|
protected _doAttached(parent: RcElement): void;
|
|
15696
15553
|
protected _prepareStyleOrClass(model: T): void;
|
|
@@ -15857,7 +15714,7 @@ declare abstract class WidgetSeriesView<T extends WidgetSeries> extends SeriesVi
|
|
|
15857
15714
|
togglePointVisible(p: DataPoint): void;
|
|
15858
15715
|
needFronting(): boolean;
|
|
15859
15716
|
clipInvertable(): boolean;
|
|
15860
|
-
isPointLabelVisible(p: WidgetSeriesPoint): boolean;
|
|
15717
|
+
isPointLabelVisible(p: WidgetSeriesPoint, index?: number): boolean;
|
|
15861
15718
|
protected _collectVisPoints(model: T): DataPoint[];
|
|
15862
15719
|
protected _prepareSeries(doc: Document, model: T): void;
|
|
15863
15720
|
protected _getPointColors(): string;
|
|
@@ -16219,7 +16076,7 @@ declare class TitleView extends BoundableElement<Title<TitleOptions>> {
|
|
|
16219
16076
|
/**
|
|
16220
16077
|
* @private
|
|
16221
16078
|
*/
|
|
16222
|
-
declare class HtmlButtonView extends
|
|
16079
|
+
declare class HtmlButtonView extends RObject {
|
|
16223
16080
|
static isButton(dom: Element): boolean;
|
|
16224
16081
|
private _dom;
|
|
16225
16082
|
private _span;
|
|
@@ -16227,7 +16084,7 @@ declare class HtmlButtonView extends RcObject {
|
|
|
16227
16084
|
private _model;
|
|
16228
16085
|
private _hovered;
|
|
16229
16086
|
constructor(doc: Document);
|
|
16230
|
-
protected
|
|
16087
|
+
protected _doDispose(): void;
|
|
16231
16088
|
get dom(): HTMLButtonElement;
|
|
16232
16089
|
setVisible(visible: boolean): boolean;
|
|
16233
16090
|
setModel(model: HtmlButton): this;
|
|
@@ -16294,7 +16151,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
16294
16151
|
private _hoverAnnotation;
|
|
16295
16152
|
private _hoverButton;
|
|
16296
16153
|
constructor(doc: Document);
|
|
16297
|
-
protected
|
|
16154
|
+
protected _doDispose(): void;
|
|
16298
16155
|
getAnnotationAnchor(model: any): RcElement;
|
|
16299
16156
|
titleView(): TitleView;
|
|
16300
16157
|
subtitleView(): TitleView;
|
|
@@ -16358,13 +16215,14 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
16358
16215
|
}
|
|
16359
16216
|
|
|
16360
16217
|
declare class ChartControl extends RcControl implements IChartEventListener {
|
|
16218
|
+
private static $_conf;
|
|
16361
16219
|
private _chart;
|
|
16362
16220
|
private _chartView;
|
|
16363
16221
|
private _contextMenuDismissHandler;
|
|
16364
16222
|
constructor(doc: Document, container: string | HTMLDivElement);
|
|
16365
16223
|
protected _createChartView(doc: Document): ChartView;
|
|
16366
16224
|
protected _createPointerHandler(): ChartPointerHandler;
|
|
16367
|
-
protected
|
|
16225
|
+
protected _doDispose(): void;
|
|
16368
16226
|
onModelChanged(chart: ChartObject, item: ChartItem, tag: any): void;
|
|
16369
16227
|
onVisibleChanged(chart: ChartObject, item: ChartItem): void;
|
|
16370
16228
|
onPointVisibleChanged(chart: ChartObject, series: Series, point: DataPoint): void;
|
|
@@ -16657,7 +16515,7 @@ declare class LineSeries<OP extends LineSeriesOptions = LineSeriesOptions> exten
|
|
|
16657
16515
|
get flag(): LineSeriesFlag;
|
|
16658
16516
|
get arrow(): LineSeriesArrow;
|
|
16659
16517
|
backDir(): LineStepDirection;
|
|
16660
|
-
isConnectEnds(based: boolean, cyclic: boolean): boolean;
|
|
16518
|
+
isConnectEnds(based: boolean, cyclic: boolean): boolean | OP["connectEnds"];
|
|
16661
16519
|
isMarker(): boolean;
|
|
16662
16520
|
get canPolar(): boolean;
|
|
16663
16521
|
getLineType(): LineType;
|
|
@@ -16807,6 +16665,7 @@ declare class BarSeries<OP extends BarSeriesOptions = BarSeriesOptions> extends
|
|
|
16807
16665
|
*/
|
|
16808
16666
|
declare abstract class BarSeriesGroupBase<T extends BarSeriesBase, OP extends BarSeriesGroupBaseOptions<BarSeriesBaseOptions>> extends ClusterableSeriesGroup<T, OP> implements IClusterable {
|
|
16809
16667
|
static defaults: BarSeriesGroupBaseOptions<BarSeriesBaseOptions>;
|
|
16668
|
+
_distance: number;
|
|
16810
16669
|
canCategorized(): boolean;
|
|
16811
16670
|
getBaseValue(axis: IAxis): number;
|
|
16812
16671
|
getDepth(): number;
|
|
@@ -17075,7 +16934,7 @@ declare class BubblePie extends ChartItem<BubblePieOptions> {
|
|
|
17075
16934
|
*/
|
|
17076
16935
|
getLegendSliceColors(): string[];
|
|
17077
16936
|
getInnerRadius(rd: number): number;
|
|
17078
|
-
protected _doSetSimple(src: any): boolean;
|
|
16937
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17079
16938
|
protected _doApply(op: BubblePieOptions): void;
|
|
17080
16939
|
private _buildLegendSources;
|
|
17081
16940
|
private _getFieldValue;
|
|
@@ -17221,6 +17080,9 @@ declare class DumbbellSeriesPoint extends RangedPoint {
|
|
|
17221
17080
|
declare class DumbbellSeriesMarker extends SeriesMarker<DumbbellSeriesMarkerOptions> {
|
|
17222
17081
|
static defaults: DumbbellSeriesMarkerOptions;
|
|
17223
17082
|
}
|
|
17083
|
+
declare class DumbbellSeriesLabel extends DataPointLabel<DumbbellSeriesLabelOptions> {
|
|
17084
|
+
static defaults: DumbbellSeriesLabelOptions;
|
|
17085
|
+
}
|
|
17224
17086
|
/**
|
|
17225
17087
|
* Dumbbell 시리즈.<br/>
|
|
17226
17088
|
* {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realchart.co.kr/config/config/series/dumbbell dumbbell}이고,
|
|
@@ -17235,11 +17097,14 @@ declare class DumbbellSeries extends LowRangedSeries<DumbbellSeriesOptions> {
|
|
|
17235
17097
|
}): void;
|
|
17236
17098
|
get marker(): DumbbellSeriesMarker;
|
|
17237
17099
|
get lowMarker(): DumbbellSeriesMarker;
|
|
17100
|
+
get pointLabel(): DumbbellSeriesLabel;
|
|
17238
17101
|
canCategorized(): boolean;
|
|
17239
17102
|
protected _getBottomValue(p: DumbbellSeriesPoint): number;
|
|
17240
17103
|
pointLabelCount(): number;
|
|
17241
17104
|
getLabelOff(off: number): number;
|
|
17105
|
+
protected _createLabel(chart: IChart): DumbbellSeriesLabel;
|
|
17242
17106
|
protected _createPoint(source: any): DataPoint;
|
|
17107
|
+
isPointLabelVisible(p: DataPoint, index?: number): boolean;
|
|
17243
17108
|
prepareAfter(): void;
|
|
17244
17109
|
}
|
|
17245
17110
|
|
|
@@ -17437,9 +17302,12 @@ declare class PieSeriesLabel extends WidgetSeriesLabel<PieSeriesLabelOptions> {
|
|
|
17437
17302
|
declare class PieSeriesDepth extends ChartItem<PieSeriesDepthOptions> {
|
|
17438
17303
|
static readonly DEPTH_RATIO = 0.6;
|
|
17439
17304
|
static defaults: PieSeriesDepthOptions;
|
|
17305
|
+
private _runLength;
|
|
17306
|
+
private _runRatio;
|
|
17440
17307
|
getLength(): number;
|
|
17308
|
+
prop<K extends keyof PieSeriesDepthOptions>(prop: K, def?: any): PieSeriesDepthOptions[K];
|
|
17441
17309
|
protected _isVisible(): boolean;
|
|
17442
|
-
protected _doSetSimple(src: any): boolean;
|
|
17310
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17443
17311
|
protected _doApply(op: PieSeriesDepthOptions): void;
|
|
17444
17312
|
}
|
|
17445
17313
|
/**
|
|
@@ -17571,9 +17439,9 @@ declare class TextAnnotation extends Annotation<TextAnnotationOptions> {
|
|
|
17571
17439
|
private _numberFormat;
|
|
17572
17440
|
private _timeFormat;
|
|
17573
17441
|
_domain: IRichTextDomain;
|
|
17574
|
-
getTextOrientation(): TextOrientation;
|
|
17442
|
+
getTextOrientation(): _realgrid_common.TextOrientation;
|
|
17575
17443
|
protected _isVisible(): boolean;
|
|
17576
|
-
protected _doSetSimple(src: any): boolean;
|
|
17444
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17577
17445
|
protected _doApply(options: TextAnnotationOptions): void;
|
|
17578
17446
|
}
|
|
17579
17447
|
|
|
@@ -17590,7 +17458,7 @@ declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
|
17590
17458
|
*/
|
|
17591
17459
|
getImageUrl(): string;
|
|
17592
17460
|
protected _isVisible(): boolean;
|
|
17593
|
-
protected _doSetSimple(src: any): boolean;
|
|
17461
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17594
17462
|
}
|
|
17595
17463
|
|
|
17596
17464
|
/**
|
|
@@ -17606,7 +17474,7 @@ declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
|
17606
17474
|
hasCustomPath(): boolean;
|
|
17607
17475
|
getHeadSize(): number;
|
|
17608
17476
|
protected _doApply(options: ShapeAnnotationOptions): void;
|
|
17609
|
-
protected _doSetSimple(src: any): boolean;
|
|
17477
|
+
protected _doSetSimple(op: any, src: any): boolean;
|
|
17610
17478
|
private $_resolveArrowStyle;
|
|
17611
17479
|
}
|
|
17612
17480
|
|
|
@@ -18248,33 +18116,6 @@ declare class ArcElement extends PathElement {
|
|
|
18248
18116
|
}
|
|
18249
18117
|
|
|
18250
18118
|
declare const SVGNS = "http://www.w3.org/2000/svg";
|
|
18251
|
-
declare const isObject: (v: any) => boolean;
|
|
18252
|
-
/** @private */
|
|
18253
|
-
declare const isArray: (arg: any) => arg is any[];
|
|
18254
|
-
declare const isString: (v: any) => v is string;
|
|
18255
|
-
declare const isNumber: (v: any) => v is number;
|
|
18256
|
-
/** @private */
|
|
18257
|
-
declare const assignObj: {
|
|
18258
|
-
<T extends {}, U>(target: T, source: U): T & U;
|
|
18259
|
-
<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
|
|
18260
|
-
<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
|
|
18261
|
-
(target: object, ...sources: any[]): any;
|
|
18262
|
-
};
|
|
18263
|
-
/** @private */
|
|
18264
|
-
declare const cos: (x: number) => number;
|
|
18265
|
-
/** @private */
|
|
18266
|
-
declare const sin: (x: number) => number;
|
|
18267
|
-
/** @private */
|
|
18268
|
-
declare const minv: (...values: number[]) => number;
|
|
18269
|
-
/** @private */
|
|
18270
|
-
declare const maxv: (...values: number[]) => number;
|
|
18271
|
-
/** @private */
|
|
18272
|
-
declare const absv: (x: number) => number;
|
|
18273
|
-
declare const pickNum: (v1: any, v2: any) => number;
|
|
18274
|
-
declare const pickProp: (v1: any, v2: any) => any;
|
|
18275
|
-
declare const pickProp3: (v1: any, v2: any, v3: any) => any;
|
|
18276
|
-
declare const copyObj: (obj: any) => any;
|
|
18277
|
-
declare const incv: (prev: number, next: number, rate: number) => number;
|
|
18278
18119
|
|
|
18279
18120
|
declare abstract class GaugeView<T extends GaugeBase = GaugeBase> extends ContentView<T> {
|
|
18280
18121
|
static readonly GAUGE_CLASS = "rct-gauge";
|
|
@@ -18462,4 +18303,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
18462
18303
|
declare const createData: typeof Globals.createData;
|
|
18463
18304
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
18464
18305
|
|
|
18465
|
-
export {
|
|
18306
|
+
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, DumbbellSeriesLabelOptions, 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 };
|