realmap 1.1.0 → 1.1.1
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/band.d.ts +2 -2
- package/band.js +1 -1
- package/band.mjs +1 -1
- package/chart.d.ts +2 -2
- package/chart.js +1 -1
- package/chart.mjs +1 -1
- package/editing.js +2 -2
- package/editing.mjs +2 -2
- package/export.d.ts +1 -1
- package/export.js +1 -1
- package/export.mjs +1 -1
- package/feature.d.ts +7 -12
- package/feature.js +2 -2
- package/feature.mjs +2 -2
- package/gl.js +2 -2
- package/gl.mjs +2 -2
- package/heatmap.d.ts +43 -6
- package/heatmap.js +2 -2
- package/heatmap.mjs +2 -2
- package/index.d.ts +952 -581
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/realmap-style.css +56 -21
- package/region.d.ts +2 -2
- package/region.js +1 -1
- package/region.mjs +1 -1
- package/sankey.d.ts +2 -2
- package/sankey.js +1 -1
- package/sankey.mjs +1 -1
- package/table.d.ts +2 -2
- package/table.js +1 -1
- package/table.mjs +1 -1
- package/tiledweb.d.ts +2 -2
- package/tiledweb.js +1 -1
- package/tiledweb.mjs +1 -1
- package/track.d.ts +2 -2
- package/track.js +1 -1
- package/track.mjs +1 -1
- package/vector.d.ts +2 -2
- package/vector.js +1 -1
- package/vector.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ declare const ORG_ANGLE: number;
|
|
|
4
4
|
declare const DEG_RAD: number;
|
|
5
5
|
declare const RAD_DEG: number;
|
|
6
6
|
type Path = string | any[];
|
|
7
|
+
declare const floor: (x: number) => number;
|
|
8
|
+
declare const ceil: (x: number) => number;
|
|
7
9
|
declare function fixnum(value: number): number;
|
|
8
10
|
declare function pixel(v: number): string;
|
|
9
11
|
/**
|
|
@@ -18,62 +20,62 @@ declare function parsePercentSize(sv: PercentSize, enableNull: boolean): IPercen
|
|
|
18
20
|
declare function calcPercent(size: IPercentSize, domain: number, def?: number): number;
|
|
19
21
|
/**
|
|
20
22
|
* SVG 스타일 속성.<br/>
|
|
21
|
-
* {@
|
|
23
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute SVG 속성}을 참조한다.<br/>
|
|
22
24
|
*/
|
|
23
25
|
interface SVGStyles {
|
|
24
26
|
transform?: string;
|
|
25
27
|
transformBox?: string;
|
|
26
28
|
transformOrigin?: string;
|
|
27
29
|
/**
|
|
28
|
-
* SVG에 적용되는 css {@
|
|
30
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill fill} 스타일 속성.<br/>
|
|
29
31
|
*/
|
|
30
32
|
fill?: string;
|
|
31
33
|
/**
|
|
32
|
-
* SVG에 적용되는 css {@
|
|
34
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/filter filter} 스타일 속성.<br/>
|
|
33
35
|
*/
|
|
34
36
|
filter?: string;
|
|
35
37
|
/**
|
|
36
|
-
* SVG에 적용되는 css {@
|
|
38
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-opacity fill-opacity} 스타일 속성.<br/>
|
|
37
39
|
*/
|
|
38
40
|
fillOpacity?: string;
|
|
39
41
|
/**
|
|
40
|
-
* SVG에 적용되는 css {@
|
|
42
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke stroke} 스타일 속성.<br/>
|
|
41
43
|
*/
|
|
42
44
|
stroke?: string;
|
|
43
45
|
/**
|
|
44
|
-
* SVG에 적용되는 css {@
|
|
46
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-width stroke-width} 스타일 속성.<br/>
|
|
45
47
|
*/
|
|
46
48
|
strokeWidth?: string;
|
|
47
49
|
/**
|
|
48
|
-
* SVG에 적용되는 css {@
|
|
50
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-dasharray stroke-dasharray} 스타일 속성.<br/>
|
|
49
51
|
*/
|
|
50
52
|
strokeDasharray?: string;
|
|
51
53
|
/**
|
|
52
|
-
* SVG에 적용되는 css {@
|
|
54
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-family font-family} 스타일 속성.<br/>
|
|
53
55
|
*/
|
|
54
56
|
fontFamily?: string;
|
|
55
57
|
/**
|
|
56
|
-
* SVG에 적용되는 css {@
|
|
58
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-size font-size} 스타일 속성.<br/>
|
|
57
59
|
*/
|
|
58
60
|
fontSize?: string;
|
|
59
61
|
/**
|
|
60
|
-
* SVG에 적용되는 css {@
|
|
62
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-weight font-weight} 스타일 속성.<br/>
|
|
61
63
|
*/
|
|
62
64
|
fontWeight?: string;
|
|
63
65
|
/**
|
|
64
|
-
* SVG에 적용되는 css {@
|
|
66
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-style font-style} 스타일 속성.<br/>
|
|
65
67
|
*/
|
|
66
68
|
fontStyle?: string;
|
|
67
69
|
/**
|
|
68
|
-
* SVG에 적용되는 css {@
|
|
69
|
-
* {@
|
|
70
|
+
* SVG에 적용되는 css {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/rx rx} 스타일 속성.<br/>
|
|
71
|
+
* {@link https://realmap.co.kr/config/config/seires/bar bar} 시리즈의 데이터포인트 bar의 모서리를 지정하는 데 사용된다.
|
|
70
72
|
*/
|
|
71
73
|
rx?: string;
|
|
72
74
|
/**
|
|
73
75
|
* 텍스트 정렬을 지정한다.<br/>
|
|
74
76
|
* **SVG에 적용되는 정식 css style 속성이 아니다.**
|
|
75
77
|
* 즉, HTML이나 realmap-style.css 등의 외부 css 파일에서 사용할 수 없고,
|
|
76
|
-
* RealMap 내부에서 {@
|
|
78
|
+
* RealMap 내부에서 {@link https://realmap.co.kr/config/config/title title} 등의 inline 스타일 속성으로 지정할 수 있다.
|
|
77
79
|
*
|
|
78
80
|
* ```js
|
|
79
81
|
* const config = {
|
|
@@ -92,7 +94,7 @@ interface SVGStyles {
|
|
|
92
94
|
*/
|
|
93
95
|
padding?: string;
|
|
94
96
|
}
|
|
95
|
-
/** @
|
|
97
|
+
/** {@link it.SVGStyles SVGStyles} 또는 class 이름 */
|
|
96
98
|
type SVGStyleOrClass = SVGStyles | string;
|
|
97
99
|
/**
|
|
98
100
|
* CSS 선언 블록을 나타내는 객체로, 스타일 정보뿐만 아니라 다양한 스타일 관련 메서드와 속성들을 제공한다. <br/>
|
|
@@ -100,7 +102,7 @@ type SVGStyleOrClass = SVGStyles | string;
|
|
|
100
102
|
*/
|
|
101
103
|
interface CSSStyles extends Partial<CSSStyleDeclaration> {
|
|
102
104
|
}
|
|
103
|
-
/** @
|
|
105
|
+
/** @private */
|
|
104
106
|
interface CSSStyles2 extends CSSStyles {
|
|
105
107
|
display?: string;
|
|
106
108
|
position?: string;
|
|
@@ -137,7 +139,7 @@ interface ISides {
|
|
|
137
139
|
* 스와이프 제스처 등의 진행 방향.
|
|
138
140
|
* <br>
|
|
139
141
|
*
|
|
140
|
-
* @see {@link RtListControl.onRowSwipe}
|
|
142
|
+
* @see {@link RtListControl.onRowSwipe onRowSwipe}
|
|
141
143
|
*/
|
|
142
144
|
declare enum RmDirection {
|
|
143
145
|
/**
|
|
@@ -182,11 +184,11 @@ type Align = typeof _Align[keyof typeof _Align];
|
|
|
182
184
|
* @enum
|
|
183
185
|
*/
|
|
184
186
|
declare const _VerticalAlign: {
|
|
185
|
-
/**
|
|
187
|
+
/** */
|
|
186
188
|
readonly TOP: "top";
|
|
187
|
-
/**
|
|
189
|
+
/** */
|
|
188
190
|
readonly MIDDLE: "middle";
|
|
189
|
-
/**
|
|
191
|
+
/** */
|
|
190
192
|
readonly BOTTOM: "bottom";
|
|
191
193
|
};
|
|
192
194
|
/** @dummy */
|
|
@@ -196,11 +198,11 @@ type VerticalAlign = typeof _VerticalAlign[keyof typeof _VerticalAlign];
|
|
|
196
198
|
*/
|
|
197
199
|
declare const _AlignBase: {
|
|
198
200
|
/**
|
|
199
|
-
*
|
|
201
|
+
*
|
|
200
202
|
*/
|
|
201
203
|
readonly CHART: "chart";
|
|
202
204
|
/**
|
|
203
|
-
*
|
|
205
|
+
*
|
|
204
206
|
*/
|
|
205
207
|
readonly MAP: "map";
|
|
206
208
|
/**
|
|
@@ -208,7 +210,7 @@ declare const _AlignBase: {
|
|
|
208
210
|
* 상위가 없으면 기본값(대부분 'body')과 동일.
|
|
209
211
|
* ex) subtitle인 경우 title 기준.
|
|
210
212
|
*
|
|
211
|
-
*
|
|
213
|
+
*
|
|
212
214
|
*/
|
|
213
215
|
readonly PARENT: "parent";
|
|
214
216
|
};
|
|
@@ -218,11 +220,11 @@ type AlignBase = typeof _AlignBase[keyof typeof _AlignBase];
|
|
|
218
220
|
* @enum
|
|
219
221
|
*/
|
|
220
222
|
declare const _WritingMode: {
|
|
221
|
-
/**
|
|
223
|
+
/** */
|
|
222
224
|
readonly HORIZONTAL_TB: "horizontal-tb";
|
|
223
|
-
/**
|
|
225
|
+
/** */
|
|
224
226
|
readonly VERTICAL_LR: "vertical-lr";
|
|
225
|
-
/**
|
|
227
|
+
/** */
|
|
226
228
|
readonly VERTICAL_RL: "vertical-rl";
|
|
227
229
|
};
|
|
228
230
|
/** @dummy */
|
|
@@ -231,9 +233,9 @@ type WritingMode = typeof _WritingMode[keyof typeof _WritingMode];
|
|
|
231
233
|
* @enum
|
|
232
234
|
*/
|
|
233
235
|
declare const _TextOrientation: {
|
|
234
|
-
/**
|
|
236
|
+
/** */
|
|
235
237
|
readonly MIXED: "mixed";
|
|
236
|
-
/**
|
|
238
|
+
/** */
|
|
237
239
|
readonly UPRIGHT: "upright";
|
|
238
240
|
};
|
|
239
241
|
/** @dummy */
|
|
@@ -299,6 +301,9 @@ interface ConfigObject {
|
|
|
299
301
|
}
|
|
300
302
|
|
|
301
303
|
type ShapeDrawer = (rd: number, rd2: number) => (string | number)[];
|
|
304
|
+
/**
|
|
305
|
+
* 맵 좌표. [경도, 위도]
|
|
306
|
+
*/
|
|
302
307
|
type MapCoord = [number, number];
|
|
303
308
|
type MapRect = {
|
|
304
309
|
h1: number;
|
|
@@ -309,6 +314,7 @@ type MapRect = {
|
|
|
309
314
|
type MapArc = MapCoord[];
|
|
310
315
|
type MapPolygon = MapArc[];
|
|
311
316
|
type MapProps = any;
|
|
317
|
+
declare function parseCoord(v: any): MapCoord;
|
|
312
318
|
|
|
313
319
|
/**
|
|
314
320
|
* RealReport-Chart 라이브러리 클래스 모델의 최상위 base 클래스.
|
|
@@ -339,7 +345,7 @@ declare abstract class RmObject {
|
|
|
339
345
|
isMe(hash: string): boolean;
|
|
340
346
|
toString(): string;
|
|
341
347
|
/**
|
|
342
|
-
* @
|
|
348
|
+
* @private
|
|
343
349
|
*
|
|
344
350
|
* template param으로부터 생성되는 값은 문자열일 수 있다.
|
|
345
351
|
*/
|
|
@@ -368,21 +374,21 @@ interface MapInsetDisplay {
|
|
|
368
374
|
readonly scale?: number;
|
|
369
375
|
/**
|
|
370
376
|
* inset area의 [왼쪽, 위쪽] 기준으로, 표시 위치 [경도, 위도]를 도(°) 단위로 지정한다.<br/>
|
|
371
|
-
* [주의] {@
|
|
377
|
+
* [주의] {@link MapInset.children children}으로 적용될 때는 이 값 대신 {@link offset}을 반드시 지정해야 한다.
|
|
372
378
|
*/
|
|
373
379
|
readonly coord?: MapCoord;
|
|
374
380
|
/**
|
|
375
381
|
* coord로 지정한 inset 위치에 더 추가되는 [경도, 위도] 값이거나
|
|
376
382
|
* coord가 지정되지 않은 경우 원래 위치에서 떨어진 위치 값.<br/>
|
|
377
383
|
* 라이브러리에서 제공하는 미리 정의된 inset 위치를 조정하는 값으로 사용할 수 있다.
|
|
378
|
-
* [주의] {@
|
|
384
|
+
* [주의] {@link MapInset.children children}으로 적용될 때는 {@link coord} 대신 반드시 이 값을 지정해야 한다.
|
|
379
385
|
*/
|
|
380
386
|
readonly offset?: MapCoord;
|
|
381
387
|
/**
|
|
382
388
|
* inset을 구분하는 경계선을 도(°)단위로 지정한다.<br/>
|
|
383
389
|
* 값들은 space나 ','로 분리해서 x, y 순서대로 위치를 지정하고,
|
|
384
390
|
* 닫힌 다각형으로 지정하고 싶은 경우 마지막에 'z'나 'Z'을 추가한다.
|
|
385
|
-
* 또, {@
|
|
391
|
+
* 또, {@link frame}이 지정되면 이 값은 무시된다.<br/>
|
|
386
392
|
* 값들은 각각 area 전체를 감싸는 가상의 사각형을 기준으로 작성하는데,
|
|
387
393
|
* 아래 값들을 상수로 사용할 수 있고, +,- 연산자로 offset을 지정할 수 있다.
|
|
388
394
|
* x값은 사각형 왼쪽(경도 시작접), y값은 사각형 아래쪽(위도 시작점)이 원점이 된다.
|
|
@@ -394,7 +400,7 @@ interface MapInsetDisplay {
|
|
|
394
400
|
readonly border?: MapCoord[] | string;
|
|
395
401
|
/**
|
|
396
402
|
* inset을 감싸서 구분하는 사각형을 도(°)단위로 지정한다.<br/>
|
|
397
|
-
* 이 값이 지정되면 {@
|
|
403
|
+
* 이 값이 지정되면 {@link border}는 무시된다.<br/>
|
|
398
404
|
* css padding이나 margin 지정 방식과 동일하게 지정한댜.
|
|
399
405
|
* 지정된 값은 area의 전체를 포함하는 가상의 사각형과 frame 사이의 간격으로 표시된다.<br/>
|
|
400
406
|
* ex) '0.05' // 좌위상하 0.05°
|
|
@@ -424,31 +430,31 @@ interface MapInset extends MapInsetDisplay {
|
|
|
424
430
|
/**
|
|
425
431
|
* inset시킬 area id.<br/>
|
|
426
432
|
* 이 area가 존재하지 않고,
|
|
427
|
-
* {@
|
|
433
|
+
* {@link parent}가 지정되지 않으면
|
|
428
434
|
* 자식들을 모두 함께 이동시킨다.
|
|
429
435
|
*/
|
|
430
436
|
readonly area: string;
|
|
431
437
|
readonly name?: string;
|
|
432
438
|
/**
|
|
433
439
|
* 이 area가 존재하지 않고,
|
|
434
|
-
* {@
|
|
440
|
+
* {@link MapInset.parent parent}가 지정되지 않으면
|
|
435
441
|
* 이 속성에 지정된 자식들을 모두 함께 이동시킨다.<br/>
|
|
436
|
-
* [주의] {@
|
|
442
|
+
* [주의] {@link frame}이나 {@link border}의 기준이 되는 child area의 id를 첫번째 항목으로 설정해야 한다.
|
|
437
443
|
* [주의] parent 하나에 한 번만 지정할 수 있다.
|
|
438
444
|
*/
|
|
439
445
|
readonly children?: string[];
|
|
440
446
|
/**
|
|
441
|
-
* {@
|
|
442
|
-
* 이 속성에 해당하는 area를 찾아서 {@
|
|
447
|
+
* {@link area}가 존재하지 않을 때,
|
|
448
|
+
* 이 속성에 해당하는 area를 찾아서 {@link polygons}에 해당하는 영역들을 이동시킨다.<br/>
|
|
443
449
|
* 콤마로 분리해서 둘 이상의 area를 지정할 수 있는데, 순서대로 해당되는 영역이 존재하면 사용한다.
|
|
444
450
|
* [주의] parent 하나에 한 번만 지정할 수 있다.
|
|
445
451
|
*/
|
|
446
452
|
readonly parent?: string;
|
|
447
453
|
/**
|
|
448
|
-
* {@
|
|
454
|
+
* {@link area}가 존재하지 않고, {@link parent}가 지정됐을 때,
|
|
449
455
|
* 이 속성에 지정하는 영역들을 동시에 이동시킨다.<br/>
|
|
450
|
-
* [주의] {@
|
|
451
|
-
* [주의] {@
|
|
456
|
+
* [주의] {@link frame}이나 {@link border}의 기준이 되는 polygon의 index를 첫번째 항목으로 설정해야 한다.
|
|
457
|
+
* [주의] {@link parent}가 복수개로 지정되면 이 속성도 [[], [],..] 형태로 복수 개 지정해야 한다.
|
|
452
458
|
* [주의] parent 하나에 한 번만 지정할 수 있다.
|
|
453
459
|
*/
|
|
454
460
|
readonly polygons?: number[] | number[][] | number;
|
|
@@ -497,7 +503,7 @@ interface MapSource {
|
|
|
497
503
|
*/
|
|
498
504
|
enabled?: boolean;
|
|
499
505
|
/**
|
|
500
|
-
* @deprecated use {@
|
|
506
|
+
* @deprecated use {@link source}
|
|
501
507
|
**/
|
|
502
508
|
map?: any;
|
|
503
509
|
/**
|
|
@@ -505,7 +511,7 @@ interface MapSource {
|
|
|
505
511
|
*/
|
|
506
512
|
source?: any;
|
|
507
513
|
/**
|
|
508
|
-
* 외부 {@
|
|
514
|
+
* 외부 {@link source}를 가져올 위치.<br/>
|
|
509
515
|
*/
|
|
510
516
|
url?: string;
|
|
511
517
|
/**
|
|
@@ -559,7 +565,7 @@ interface MapSource {
|
|
|
559
565
|
*/
|
|
560
566
|
needInternal?: boolean;
|
|
561
567
|
/**
|
|
562
|
-
* {@
|
|
568
|
+
* {@link needInternal 내부 경계선}에서 제외할 영역 목록.<br/>
|
|
563
569
|
*/
|
|
564
570
|
excludeInternal?: string[];
|
|
565
571
|
/**
|
|
@@ -567,7 +573,7 @@ interface MapSource {
|
|
|
567
573
|
*/
|
|
568
574
|
needExternal?: boolean;
|
|
569
575
|
/**
|
|
570
|
-
* {@
|
|
576
|
+
* {@link needInternal 내부 경계선}에서 제외할 영역 목록.<br/>
|
|
571
577
|
*/
|
|
572
578
|
excludeExternal?: string[];
|
|
573
579
|
/**
|
|
@@ -639,13 +645,13 @@ declare const _AnnotationScope: {
|
|
|
639
645
|
/**
|
|
640
646
|
* container에서 padding을 적용한 영역을 기준으로 표시한다.
|
|
641
647
|
*
|
|
642
|
-
*
|
|
648
|
+
*
|
|
643
649
|
*/
|
|
644
650
|
readonly CHART: "chart";
|
|
645
651
|
/**
|
|
646
652
|
* container 전체 영역을 기준으로 표시한다.
|
|
647
653
|
*
|
|
648
|
-
*
|
|
654
|
+
*
|
|
649
655
|
*/
|
|
650
656
|
readonly CONTAINER: "container";
|
|
651
657
|
};
|
|
@@ -659,7 +665,7 @@ type AnnotationType = 'image' | 'shape' | 'text' | 'html' | 'chart';
|
|
|
659
665
|
/**
|
|
660
666
|
* Annotation 모델.<br/>
|
|
661
667
|
*
|
|
662
|
-
*
|
|
668
|
+
*
|
|
663
669
|
*/
|
|
664
670
|
interface AnnotationOptions extends PositionableItemOptions {
|
|
665
671
|
type?: AnnotationType;
|
|
@@ -672,7 +678,7 @@ interface AnnotationOptions extends PositionableItemOptions {
|
|
|
672
678
|
front?: boolean;
|
|
673
679
|
/**
|
|
674
680
|
* 어노테이션 배치 기준이 되는 맵차트 구성 요소.<br/>
|
|
675
|
-
* 현재, 같은 영역(body 혹은 chart)에 포함된 {@link config
|
|
681
|
+
* 현재, 같은 영역(body 혹은 chart)에 포함된 {@link https://realmap.co.kr/config/config/base/gauge 게이지}나 다른 어노테이션의 {@link name 이름}을 지정할 수 있다.
|
|
676
682
|
*
|
|
677
683
|
*/
|
|
678
684
|
anchor?: string;
|
|
@@ -722,13 +728,14 @@ interface AnnotationOptions extends PositionableItemOptions {
|
|
|
722
728
|
declare const ImageAnnotationType = "image";
|
|
723
729
|
/**
|
|
724
730
|
* 이미지 어노테이션.<br/>
|
|
725
|
-
* {@
|
|
731
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 'image'이다.<br/>
|
|
726
732
|
*
|
|
727
733
|
* // TODO #fiddle annotation/image-annotation Image Annotation
|
|
728
734
|
* @css 'rm-image-annotation'
|
|
729
|
-
*
|
|
735
|
+
*
|
|
730
736
|
*/
|
|
731
737
|
interface ImageAnnotationOptions extends AnnotationOptions {
|
|
738
|
+
/** @dummy */
|
|
732
739
|
type?: typeof ImageAnnotationType;
|
|
733
740
|
/**
|
|
734
741
|
* true로 설정되고 {@link url}이 설정된 경우에만 표시된다.
|
|
@@ -745,15 +752,16 @@ interface ImageAnnotationOptions extends AnnotationOptions {
|
|
|
745
752
|
declare const ShapeAnnotationType = "shape";
|
|
746
753
|
/**
|
|
747
754
|
* Shape Annotation 모델.
|
|
748
|
-
* {@
|
|
749
|
-
* {@
|
|
750
|
-
* {@
|
|
755
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 'shape'이다.<br/>
|
|
756
|
+
* {@link shape} 속성에 표시할 도형 모양을 지정하거나,
|
|
757
|
+
* {@link path}에 SVG path를 직접 지정할 수 있다.
|
|
751
758
|
*
|
|
752
759
|
* // TODO #fiddle annotation/shape-annotation Shape Annotation
|
|
753
760
|
* @css 'rm-shape-annotation'
|
|
754
|
-
*
|
|
761
|
+
*
|
|
755
762
|
*/
|
|
756
763
|
interface ShapeAnnotationOptions extends AnnotationOptions {
|
|
764
|
+
/** @dummy */
|
|
757
765
|
type?: typeof ShapeAnnotationType;
|
|
758
766
|
/**
|
|
759
767
|
* @default 64
|
|
@@ -789,13 +797,14 @@ interface ShapeAnnotationOptions extends AnnotationOptions {
|
|
|
789
797
|
declare const TextAnnotationType = "text";
|
|
790
798
|
/**
|
|
791
799
|
* 텍스트 어노테이션.<br/>
|
|
792
|
-
* {@
|
|
800
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 'text'이다.<br/>
|
|
793
801
|
*
|
|
794
802
|
* // TODO #fiddle annotation/text-annotation Text Annotation
|
|
795
803
|
* @css 'rm-text-annotation'
|
|
796
|
-
*
|
|
804
|
+
*
|
|
797
805
|
*/
|
|
798
806
|
interface TextAnnotationOptions extends AnnotationOptions {
|
|
807
|
+
/** @dummy */
|
|
799
808
|
type?: typeof TextAnnotationType;
|
|
800
809
|
/**
|
|
801
810
|
* true로 설정되고 {@link text}가 설정된 경우에만 표시된다.
|
|
@@ -822,27 +831,28 @@ interface TextAnnotationOptions extends AnnotationOptions {
|
|
|
822
831
|
/**
|
|
823
832
|
* 텍스트를 가로 또는 세로로 배치할지 여부와 블록이 진행되는 방향을 지정한다.
|
|
824
833
|
*
|
|
825
|
-
*
|
|
834
|
+
*
|
|
826
835
|
*/
|
|
827
836
|
writingMode?: WritingMode;
|
|
828
837
|
/**
|
|
829
838
|
* 텍스트 문자 방향을 지정한다.
|
|
830
839
|
* 세로 모드의 텍스트에만 적용된다.
|
|
831
840
|
*
|
|
832
|
-
*
|
|
841
|
+
*
|
|
833
842
|
*/
|
|
834
843
|
textOrientation?: TextOrientation;
|
|
835
844
|
}
|
|
836
845
|
declare const HtmlAnnotationType = "html";
|
|
837
846
|
/**
|
|
838
847
|
* HTML 어노테이션.<br/>
|
|
839
|
-
* {@
|
|
848
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 'html'이다.<br/>
|
|
840
849
|
*
|
|
841
850
|
* // TODO #fiddle annotation/html-annotation Html Annotation
|
|
842
851
|
* @css 'rm-html-annotation'
|
|
843
|
-
*
|
|
852
|
+
*
|
|
844
853
|
*/
|
|
845
854
|
interface HtmlAnnotationOptions extends AnnotationOptions {
|
|
855
|
+
/** @dummy */
|
|
846
856
|
type?: typeof HtmlAnnotationType;
|
|
847
857
|
/**
|
|
848
858
|
* true로 설정되고 {@link text}가 설정된 경우에만 표시된다.
|
|
@@ -852,35 +862,35 @@ interface HtmlAnnotationOptions extends AnnotationOptions {
|
|
|
852
862
|
visible?: boolean;
|
|
853
863
|
/**
|
|
854
864
|
* 이 속성으로 지정한 html 내용을 표시한다.<br/>
|
|
855
|
-
* '.'나 '#'으로 시작되는 html selector로 지정하면 해당하는 dom의 {@
|
|
865
|
+
* '.'나 '#'으로 시작되는 html selector로 지정하면 해당하는 dom의 {@link https://developer.mozilla.org/ko/docs/Web/API/Element/innerHTML innerHTML}을 가져와 표시한다.<br/>
|
|
856
866
|
* 예를 들어 id가 'abc'인 dom인 경우 '#abc'로 지정한다.
|
|
857
|
-
* 즉, document.{@
|
|
858
|
-
* 생성되는 dom의 스타일은 {@
|
|
867
|
+
* 즉, document.{@link https://developer.mozilla.org/ko/docs/Web/API/Document/querySelector querySelector}(htmlFrom)로 리턴되는 dom의 내용을 표시한다.<br/>
|
|
868
|
+
* 생성되는 dom의 스타일은 {@link htmlStyle}로 지정한다.
|
|
859
869
|
*/
|
|
860
870
|
html?: string;
|
|
861
871
|
/**
|
|
862
|
-
* 이 속성으로 지정한 selector에 해당하는 dom의 {@
|
|
872
|
+
* 이 속성으로 지정한 selector에 해당하는 dom의 {@link https://developer.mozilla.org/ko/docs/Web/API/Element/innerHTML innerHTML}을 가져와 표시한다.<br/>
|
|
863
873
|
* 예를 들어 id가 'abc'인 dom인 경우 '#abc'로 지정한다.
|
|
864
|
-
* 즉, document.{@
|
|
865
|
-
* 이 속성이 {@
|
|
866
|
-
* 생성되는 dom의 스타일은 {@
|
|
874
|
+
* 즉, document.{@link https://developer.mozilla.org/ko/docs/Web/API/Document/querySelector querySelector}(htmlFrom)로 리턴되는 dom의 내용을 표시한다.<br/>
|
|
875
|
+
* 이 속성이 {@link html}보다 우선한다. 다만, 존재하지 않은 dom을 지정한 경우 {@link html}에 지정한 내용을 대신 표시한다.
|
|
876
|
+
* 생성되는 dom의 스타일은 {@link htmlStyle}로 지정한다.
|
|
867
877
|
*/
|
|
868
878
|
htmlFrom?: string;
|
|
869
879
|
/**
|
|
870
|
-
* {@
|
|
880
|
+
* {@link html}로 생성되는 최상위 dom에 적용되는 스타일셋.<br/>
|
|
871
881
|
*/
|
|
872
882
|
htmlStyle?: CSSStyleDeclaration;
|
|
873
883
|
/**
|
|
874
884
|
* @append
|
|
875
885
|
* 너비를 반드시 지정해야 한다.<br/>
|
|
876
886
|
* 지정하지 않으면 100 픽셀 너비로 표시한다.
|
|
877
|
-
* {@
|
|
887
|
+
* {@link height 높이}를 지정하지 않으면 생성된 dom의 높이에 맞춰진다.
|
|
878
888
|
*
|
|
879
889
|
* @default 100
|
|
880
890
|
*/
|
|
881
891
|
width?: PercentSize;
|
|
882
892
|
/**
|
|
883
|
-
* {@
|
|
893
|
+
* {@link html}로 지정된 html 텍스트에 포함된 param 값을 지정하는 객체나 콜백. #311<br/>
|
|
884
894
|
*/
|
|
885
895
|
params?: {
|
|
886
896
|
[key: string]: any;
|
|
@@ -889,12 +899,13 @@ interface HtmlAnnotationOptions extends AnnotationOptions {
|
|
|
889
899
|
declare const ChartAnnotationType = "chart";
|
|
890
900
|
/**
|
|
891
901
|
* Chart 어노테이션.<br/>
|
|
892
|
-
* {@
|
|
902
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 'chart'이다.<br/>
|
|
893
903
|
*
|
|
894
904
|
* @css 'rm-chart-annotation'
|
|
895
|
-
*
|
|
905
|
+
*
|
|
896
906
|
*/
|
|
897
907
|
interface ChartAnnotationOptions extends AnnotationOptions {
|
|
908
|
+
/** @dummy */
|
|
898
909
|
type?: typeof ChartAnnotationType;
|
|
899
910
|
config?: any;
|
|
900
911
|
}
|
|
@@ -981,9 +992,9 @@ interface OnClickArgs extends CommonCallbackArgs {
|
|
|
981
992
|
/**
|
|
982
993
|
* 맵차트 전체에 영향을 미치는 옵션들.<br />
|
|
983
994
|
*
|
|
984
|
-
*
|
|
995
|
+
*
|
|
985
996
|
*/
|
|
986
|
-
interface
|
|
997
|
+
interface ChartGlobalOptions extends ChartItemOptions {
|
|
987
998
|
/**
|
|
988
999
|
* false가 아닌 경우 첫번째 시리즈가 'map' 시리즈가 아니면 내부적으로 자동 추가한다.<br/>
|
|
989
1000
|
*
|
|
@@ -1039,18 +1050,18 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
1039
1050
|
/**
|
|
1040
1051
|
* 선택 변경 시 호출되는 콜백.<br/>
|
|
1041
1052
|
*/
|
|
1042
|
-
onSelectionChanged?: (args:
|
|
1053
|
+
onSelectionChanged?: (args: OnSelectionChangedArgs) => void;
|
|
1043
1054
|
}
|
|
1044
1055
|
/**
|
|
1045
1056
|
* 맵차트 제목(title) 설정 모델.<br/>
|
|
1046
1057
|
* 기본적으로 맵차트 중앙 상단에 표시되지만 {@link align}, {@link verticalAlign} 등으로 위치를 변경할 수 있다.<br/>
|
|
1047
1058
|
*
|
|
1048
|
-
* {@
|
|
1049
|
-
*
|
|
1059
|
+
* {@link https://realmap.co.kr/guide/title 타이틀 개요} 페이지를 참조한다.
|
|
1060
|
+
*
|
|
1050
1061
|
*/
|
|
1051
1062
|
interface TitleOptions extends ChartItemOptions {
|
|
1052
1063
|
/**
|
|
1053
|
-
* true로 설정되고 {@
|
|
1064
|
+
* true로 설정되고 {@link text}가 비어 있지 않은 텍스트로 설정된 경우에 표시된다.
|
|
1054
1065
|
*
|
|
1055
1066
|
* @default true
|
|
1056
1067
|
*/
|
|
@@ -1065,7 +1076,7 @@ interface TitleOptions extends ChartItemOptions {
|
|
|
1065
1076
|
* 정렬 기준.<br/>
|
|
1066
1077
|
* 시리즈들이 그려지는 plotting 영역이나,
|
|
1067
1078
|
* 맵차트 전체 영역을 기준으로 할 수 있다.
|
|
1068
|
-
* 또, {@link config
|
|
1079
|
+
* 또, {@link https://realmap.co.kr/config/config/subtitle 부제목}인 경우 제목을 기준으로 위치를 지정할 수 있다.
|
|
1069
1080
|
*
|
|
1070
1081
|
* @default 'map'
|
|
1071
1082
|
*/
|
|
@@ -1083,7 +1094,7 @@ interface TitleOptions extends ChartItemOptions {
|
|
|
1083
1094
|
*/
|
|
1084
1095
|
verticalAlign?: VerticalAlign;
|
|
1085
1096
|
/**
|
|
1086
|
-
* 배경 {@
|
|
1097
|
+
* 배경 {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
1087
1098
|
*/
|
|
1088
1099
|
backgroundStyle?: SVGStyleOrClass;
|
|
1089
1100
|
/**
|
|
@@ -1134,9 +1145,9 @@ type SubtitlePosition = typeof _SubtitlePosition[keyof typeof _SubtitlePosition]
|
|
|
1134
1145
|
* };
|
|
1135
1146
|
* ```
|
|
1136
1147
|
*
|
|
1137
|
-
* {@
|
|
1148
|
+
* {@link https://realmap.co.kr/guide/title 제목 개요} 페이지를 참조한다.
|
|
1138
1149
|
*
|
|
1139
|
-
*
|
|
1150
|
+
*
|
|
1140
1151
|
*/
|
|
1141
1152
|
interface SubtitleOptions extends TitleOptions {
|
|
1142
1153
|
/**
|
|
@@ -1196,8 +1207,8 @@ interface CreditsOptions extends ChartItemOptions {
|
|
|
1196
1207
|
verticalAlign?: VerticalAlign;
|
|
1197
1208
|
/**
|
|
1198
1209
|
* 설정에 따라 정해진 표시 위치에서 떨어진 수평 간격을 픽셀 단위로 지정한다.<br/>
|
|
1199
|
-
* {@
|
|
1200
|
-
* {@
|
|
1210
|
+
* {@link floating}이 true가 아니고,
|
|
1211
|
+
* {@link verticalAlign}이 'middle' 이면서 {@link align}이 'center'가 아닌 경우,
|
|
1201
1212
|
* 이 값만큼 수평 영역을 차지한다.
|
|
1202
1213
|
*
|
|
1203
1214
|
* @default 2
|
|
@@ -1205,7 +1216,7 @@ interface CreditsOptions extends ChartItemOptions {
|
|
|
1205
1216
|
offsetX?: number;
|
|
1206
1217
|
/**
|
|
1207
1218
|
* 설정에 따라 정해진 표시 위치에서 떨어진 수직 간격을 픽셀 단위로 지정한다.<br/>
|
|
1208
|
-
* {@
|
|
1219
|
+
* {@link floating}이 true가 아니고, {@link verticalAlign}이 'middle'이 아닌 경우,
|
|
1209
1220
|
* 이 값만큼 수직 영역을 차지한다.
|
|
1210
1221
|
*
|
|
1211
1222
|
* @default 1
|
|
@@ -1214,7 +1225,7 @@ interface CreditsOptions extends ChartItemOptions {
|
|
|
1214
1225
|
/**
|
|
1215
1226
|
* {@link floating}이 true가 아니고, 중앙이 아닌 곳에 표시될 때,
|
|
1216
1227
|
* 맵차트 나머지 영역과의 간격을 픽셀로 지정한다.<br/>
|
|
1217
|
-
* {@
|
|
1228
|
+
* {@link verticalAlign}이 'middle'이면 수평 간격, 아니면 수직 간격에 적용된다.
|
|
1218
1229
|
*
|
|
1219
1230
|
* @default 4
|
|
1220
1231
|
*/
|
|
@@ -1234,16 +1245,28 @@ declare const TooltipScopes: {
|
|
|
1234
1245
|
/** @dummy */
|
|
1235
1246
|
type TooltipScope = typeof TooltipScopes[keyof typeof TooltipScopes];
|
|
1236
1247
|
/**
|
|
1237
|
-
*
|
|
1248
|
+
* @enum
|
|
1249
|
+
*/
|
|
1250
|
+
declare const TooltipModes: {
|
|
1251
|
+
readonly LINE: "line";
|
|
1252
|
+
readonly CIRCLE: "circle";
|
|
1253
|
+
readonly HEADER: "header";
|
|
1254
|
+
};
|
|
1255
|
+
/**
|
|
1256
|
+
* 툴팁 모드
|
|
1257
|
+
*/
|
|
1258
|
+
type TooltipMode = typeof TooltipModes[keyof typeof TooltipModes];
|
|
1259
|
+
/**
|
|
1260
|
+
* 데이터포인트 {@link https://realmap.co.kr/guide/tooltip Tooltip} 설정 모델.
|
|
1238
1261
|
*
|
|
1239
|
-
*
|
|
1262
|
+
*
|
|
1240
1263
|
*/
|
|
1241
1264
|
interface TooltipOptions extends ChartItemOptions {
|
|
1242
1265
|
scope?: TooltipScope;
|
|
1243
1266
|
html?: string;
|
|
1244
1267
|
/**
|
|
1245
1268
|
* 툴팁에 표시할 텍스트 형식.<br/>
|
|
1246
|
-
* 시리즈에 {@link config
|
|
1269
|
+
* 시리즈에 {@link https://realmap.co.kr/config/config/base/series#tooltiptext tooltipText}가 시리즈 별 tooltip을 제공하지만,
|
|
1247
1270
|
* 이 속성이 지정된 경우 우선 사용된다.<br/>
|
|
1248
1271
|
*
|
|
1249
1272
|
* `${param;default;format}` 형식으로 아래과 같은 변수로 데이터 포인트 및 시리즈 값을 지정할 수 있다.
|
|
@@ -1296,7 +1319,18 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
1296
1319
|
*
|
|
1297
1320
|
*/
|
|
1298
1321
|
timeFormat?: string;
|
|
1322
|
+
/**
|
|
1323
|
+
* 툴팁 모드.<br/>
|
|
1324
|
+
*
|
|
1325
|
+
* 해당 속성으로 툴팁의 외형을 변경할 수 있다.<br/>
|
|
1326
|
+
*
|
|
1327
|
+
* @default 'line'
|
|
1328
|
+
*/
|
|
1329
|
+
mode?: TooltipMode;
|
|
1299
1330
|
}
|
|
1331
|
+
/**
|
|
1332
|
+
* 지도 투영 방식.
|
|
1333
|
+
*/
|
|
1300
1334
|
type ProjectionType = undefined | 'orthographic' | /*'naturealearth' |*/ 'equalearth' | 'miller' | 'mercator';
|
|
1301
1335
|
/**
|
|
1302
1336
|
* 실제 지도가 차지한 영역의 background에 표시 설정.<br/>
|
|
@@ -1311,7 +1345,7 @@ interface MapBackgroundOptions extends ChartItemOptions {
|
|
|
1311
1345
|
visible?: boolean;
|
|
1312
1346
|
/**
|
|
1313
1347
|
* 구형 프로젝션일 때 적용할 기본 radial gradient의 색상.<br/>
|
|
1314
|
-
* {@
|
|
1348
|
+
* {@link style} 속성으로 다르게 지정할 수 있다.
|
|
1315
1349
|
*
|
|
1316
1350
|
* @default 'lightblue'
|
|
1317
1351
|
*/
|
|
@@ -1322,25 +1356,25 @@ interface MapBackgroundOptions extends ChartItemOptions {
|
|
|
1322
1356
|
*/
|
|
1323
1357
|
interface BodyPanelOptions extends ChartItemOptions {
|
|
1324
1358
|
/**
|
|
1325
|
-
* {@
|
|
1359
|
+
* {@link https://realmap.co.kr/config/config/body body} 영역 내에서 panel의 수평 정렬.<br/>
|
|
1326
1360
|
*
|
|
1327
1361
|
* @default 'left'
|
|
1328
1362
|
*/
|
|
1329
1363
|
align?: Align;
|
|
1330
1364
|
/**
|
|
1331
|
-
* {@
|
|
1365
|
+
* {@link https://realmap.co.kr/config/config/body body} 영역 내에서 panel의 수직 정렬.<br/>
|
|
1332
1366
|
*
|
|
1333
1367
|
* @default 'top'
|
|
1334
1368
|
*/
|
|
1335
1369
|
verticalAlign?: VerticalAlign;
|
|
1336
1370
|
/**
|
|
1337
|
-
* {@
|
|
1371
|
+
* {@link https://realmap.co.kr/config/config/body body} 영역 경계와 panel 사이의 수평 간격.<br/>
|
|
1338
1372
|
*
|
|
1339
1373
|
* @default 8 픽셀
|
|
1340
1374
|
*/
|
|
1341
1375
|
offsetX?: number;
|
|
1342
1376
|
/**
|
|
1343
|
-
* {@
|
|
1377
|
+
* {@link https://realmap.co.kr/config/config/body body} 영역 경계와 panel 사이의 수직 간격.<br/>
|
|
1344
1378
|
*
|
|
1345
1379
|
* @default 8 픽셀
|
|
1346
1380
|
*/
|
|
@@ -1359,7 +1393,7 @@ interface ZoomButton {
|
|
|
1359
1393
|
/**
|
|
1360
1394
|
* zoom 버튼들이 표시되는 패널 설정 모델.<br/>
|
|
1361
1395
|
*
|
|
1362
|
-
*
|
|
1396
|
+
*
|
|
1363
1397
|
*/
|
|
1364
1398
|
interface ZoomPanelOptions extends BodyPanelOptions {
|
|
1365
1399
|
buttons?: ZoomButton[];
|
|
@@ -1378,14 +1412,14 @@ interface ZoomPanelOptions extends BodyPanelOptions {
|
|
|
1378
1412
|
zoomFactor?: number;
|
|
1379
1413
|
/**
|
|
1380
1414
|
* 버튼 너비.<br/>
|
|
1381
|
-
* {@
|
|
1415
|
+
* {@link buttonHeight}가 지정되지 않으면 이 속성값과 동일하게 표시된다.
|
|
1382
1416
|
*
|
|
1383
1417
|
* @default 28 픽셀
|
|
1384
1418
|
*/
|
|
1385
1419
|
buttonWidth?: number;
|
|
1386
1420
|
/**
|
|
1387
1421
|
* 버튼 높이.<br/>
|
|
1388
|
-
* {@
|
|
1422
|
+
* {@link buttonWidth}가 지정되지 않으면 이 속성값과 동일하게 표시된다.
|
|
1389
1423
|
*
|
|
1390
1424
|
* @default 28 픽셀
|
|
1391
1425
|
*/
|
|
@@ -1410,7 +1444,7 @@ interface ZoomPanelOptions extends BodyPanelOptions {
|
|
|
1410
1444
|
verticalAlign?: VerticalAlign;
|
|
1411
1445
|
/**
|
|
1412
1446
|
* true로 지정하면 맵이 zoom되지 않은 상태일 때도 표시한다.<br/>
|
|
1413
|
-
* 물론 {@
|
|
1447
|
+
* 물론 {@link visible}이 false이면 이 속성과 무관하게 표시되지 않는다.
|
|
1414
1448
|
*
|
|
1415
1449
|
* @default true
|
|
1416
1450
|
*/
|
|
@@ -1434,7 +1468,7 @@ type DrilldownPanelType = typeof _DrilldownPanelType[keyof typeof _DrilldownPane
|
|
|
1434
1468
|
/**
|
|
1435
1469
|
* drilldown 버튼들이 표시되는 패널 설정 모델.<br/>
|
|
1436
1470
|
*
|
|
1437
|
-
*
|
|
1471
|
+
*
|
|
1438
1472
|
*/
|
|
1439
1473
|
interface DrilldownPanelOptions extends BodyPanelOptions {
|
|
1440
1474
|
/**
|
|
@@ -1452,10 +1486,11 @@ interface DrilldownPanelOptions extends BodyPanelOptions {
|
|
|
1452
1486
|
}
|
|
1453
1487
|
/**
|
|
1454
1488
|
* 콜백 매개변수 타입 base.<br/>
|
|
1489
|
+
*
|
|
1455
1490
|
*/
|
|
1456
1491
|
interface CommonCallbackArgs {
|
|
1457
1492
|
/**
|
|
1458
|
-
* Realmap의 공개 {@
|
|
1493
|
+
* Realmap의 공개 {@link https://realmap.co.kr/docs/api/classes/MapChart MapChart} 모델
|
|
1459
1494
|
*/
|
|
1460
1495
|
chart: MapChart;
|
|
1461
1496
|
}
|
|
@@ -1473,7 +1508,7 @@ interface OnZoomChangedArgs extends CommonCallbackArgs {
|
|
|
1473
1508
|
/**
|
|
1474
1509
|
* 맵차트 본체(body) 설정 모델.<br/>
|
|
1475
1510
|
* 투영 옵션과 지도 제어 옵션들을 설정할 수 있다.<br/>
|
|
1476
|
-
*
|
|
1511
|
+
*
|
|
1477
1512
|
*/
|
|
1478
1513
|
interface BodyOptions extends ChartItemOptions {
|
|
1479
1514
|
/**
|
|
@@ -1491,7 +1526,7 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
1491
1526
|
*/
|
|
1492
1527
|
drilldownPanel?: DrilldownPanelOptions | boolean;
|
|
1493
1528
|
/**
|
|
1494
|
-
* 사용자가 마우스 wheel이나 zoom panel을 이용해 {@
|
|
1529
|
+
* 사용자가 마우스 wheel이나 zoom panel을 이용해 {@link zoom}을 변경할 수 있는 지 여부.<br/>
|
|
1495
1530
|
*
|
|
1496
1531
|
* @default false
|
|
1497
1532
|
*/
|
|
@@ -1523,14 +1558,14 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
1523
1558
|
*/
|
|
1524
1559
|
scrollable?: boolean;
|
|
1525
1560
|
/**
|
|
1526
|
-
* {@
|
|
1561
|
+
* {@link scrollable}이 true인 경우 도(°) 단위 좌우 스크롤 크기.<br/>
|
|
1527
1562
|
* 0보다 큰 값이면 중점이 아시아쪽으로 이동한다.
|
|
1528
1563
|
*/
|
|
1529
1564
|
scroll?: number;
|
|
1530
1565
|
/**
|
|
1531
1566
|
* 마우스 드래그로 panX/panY 를 변경할 수 있는 지 여부.<br/>
|
|
1532
1567
|
* 명시적 false로 지정하면 드래그로 이동시킬 수 없다.
|
|
1533
|
-
* 초기 {@
|
|
1568
|
+
* 초기 {@link zoom}을 설정하고 그 위치를 유지하려 할 때 사용할 수 있다.
|
|
1534
1569
|
*/
|
|
1535
1570
|
movable?: boolean;
|
|
1536
1571
|
/**
|
|
@@ -1711,16 +1746,16 @@ interface MapWidgetCaptionOptions extends IconedTextOptions {
|
|
|
1711
1746
|
display?: MapWidgetCaptionDisplay;
|
|
1712
1747
|
/**
|
|
1713
1748
|
* 타이틀과 범례 아이템들 사이의 간격.<br/>
|
|
1714
|
-
* 타당한 값으로 지정하지 않으면 {@
|
|
1749
|
+
* 타당한 값으로 지정하지 않으면 {@link display}가 'linine'이 될 때 10, 아니면 5 픽셀로 적용된다.
|
|
1715
1750
|
*/
|
|
1716
1751
|
gap?: number;
|
|
1717
1752
|
/**
|
|
1718
|
-
* {@
|
|
1753
|
+
* {@link display}가 'stack'가 될 때 수평 배치.<br/>
|
|
1719
1754
|
* 지정하지 않거나 잘못 지정하면 'left'로 적용된다.
|
|
1720
1755
|
*/
|
|
1721
1756
|
align?: Align;
|
|
1722
1757
|
/**
|
|
1723
|
-
* {@
|
|
1758
|
+
* {@link display}가 'inline'이 될 때 수직 배치.<br/>
|
|
1724
1759
|
* 지정하지 않거나 잘못 지정하면 'middle'로 적용된다.
|
|
1725
1760
|
*/
|
|
1726
1761
|
verticalAlign?: VerticalAlign;
|
|
@@ -1786,7 +1821,7 @@ interface MapWidgetOptions extends ChartItemOptions {
|
|
|
1786
1821
|
interface MapSimpleWidgetOptions extends MapWidgetOptions {
|
|
1787
1822
|
/**
|
|
1788
1823
|
* 이 위젯이 표시될 위젯 그룹 이름.<br/>
|
|
1789
|
-
* 그룹에 포함되지 않은 위젯은 {@
|
|
1824
|
+
* 그룹에 포함되지 않은 위젯은 {@link location} 설정에 따라 위젯 섹션이나 body 영역에 표시된다.
|
|
1790
1825
|
*/
|
|
1791
1826
|
group?: string;
|
|
1792
1827
|
}
|
|
@@ -1811,13 +1846,13 @@ declare const _PositionalScope: {
|
|
|
1811
1846
|
/**
|
|
1812
1847
|
* container에서 padding을 적용한 영역을 기준으로 표시한다.
|
|
1813
1848
|
*
|
|
1814
|
-
*
|
|
1849
|
+
*
|
|
1815
1850
|
*/
|
|
1816
1851
|
readonly CHART: "chart";
|
|
1817
1852
|
/**
|
|
1818
1853
|
* container 전체 영역을 기준으로 표시한다.
|
|
1819
1854
|
*
|
|
1820
|
-
*
|
|
1855
|
+
*
|
|
1821
1856
|
*/
|
|
1822
1857
|
readonly CONTAINER: "container";
|
|
1823
1858
|
};
|
|
@@ -1920,10 +1955,12 @@ interface ZoomToAreaOptions {
|
|
|
1920
1955
|
*/
|
|
1921
1956
|
maximumZoom?: number;
|
|
1922
1957
|
}
|
|
1958
|
+
interface OnSelectionChangedArgs extends CommonCallbackArgs {
|
|
1959
|
+
}
|
|
1923
1960
|
|
|
1924
1961
|
/**
|
|
1925
1962
|
* 맵차트 내보내기 설정 모델
|
|
1926
|
-
*
|
|
1963
|
+
*
|
|
1927
1964
|
*/
|
|
1928
1965
|
interface ExporterOptions extends ChartItemOptions {
|
|
1929
1966
|
/**
|
|
@@ -1959,15 +1996,15 @@ interface ExporterOptions extends ChartItemOptions {
|
|
|
1959
1996
|
*/
|
|
1960
1997
|
url?: string;
|
|
1961
1998
|
/**
|
|
1962
|
-
* true로 지정하면 내보내기 결과에 {@
|
|
1999
|
+
* true로 지정하면 내보내기 결과에 {@link https://realmap.co.kr/config/config/axis/scrollBar AxisScrollBarOptions}가 포함되지 않는다.
|
|
1963
2000
|
*/
|
|
1964
2001
|
hideScrollbar?: boolean;
|
|
1965
2002
|
/**
|
|
1966
|
-
* true로 지정하면 내보내기 결과에 {@
|
|
2003
|
+
* true로 지정하면 내보내기 결과에 {@link https://realmap.co.kr/config/config/seriesNavigator SeriesNavigator}가 포함되지 않는다.
|
|
1967
2004
|
*/
|
|
1968
2005
|
hideNavigator?: boolean;
|
|
1969
2006
|
/**
|
|
1970
|
-
* true로 지정하면 내보내기 결과에 {@
|
|
2007
|
+
* true로 지정하면 내보내기 결과에 {@link https://realmap.co.kr/config/config/body/zoomButton ZoomButtonOptions}가 포함되지 않는다.
|
|
1971
2008
|
*/
|
|
1972
2009
|
hideZoomButton?: boolean;
|
|
1973
2010
|
}
|
|
@@ -1976,18 +2013,20 @@ interface ExporterOptions extends ChartItemOptions {
|
|
|
1976
2013
|
* @enum
|
|
1977
2014
|
*/
|
|
1978
2015
|
declare const _ExportType: {
|
|
1979
|
-
/**
|
|
2016
|
+
/** */
|
|
1980
2017
|
readonly PNG: "png";
|
|
1981
|
-
/**
|
|
2018
|
+
/** */
|
|
1982
2019
|
readonly JPEG: "jpeg";
|
|
1983
|
-
/**
|
|
2020
|
+
/** */
|
|
1984
2021
|
readonly SVG: "svg";
|
|
1985
|
-
/**
|
|
2022
|
+
/** */
|
|
1986
2023
|
readonly PDF: "pdf";
|
|
1987
|
-
/**
|
|
2024
|
+
/** */
|
|
1988
2025
|
readonly PRINT: "print";
|
|
1989
2026
|
};
|
|
1990
|
-
/**
|
|
2027
|
+
/**
|
|
2028
|
+
* 내보내기 종류
|
|
2029
|
+
*/
|
|
1991
2030
|
type ExportType = typeof _ExportType[keyof typeof _ExportType];
|
|
1992
2031
|
/**
|
|
1993
2032
|
* 내보내기 옵션.
|
|
@@ -1996,14 +2035,14 @@ interface ExportOptions {
|
|
|
1996
2035
|
/**
|
|
1997
2036
|
* 내보낸 맵차트에 사용할 확장자.\
|
|
1998
2037
|
* type을 지정하지 않을 경우 png로 내보내기 된다.\
|
|
1999
|
-
*
|
|
2038
|
+
*
|
|
2000
2039
|
* // @TODO https://github.com/realgrid/realreport-chart/issues/549
|
|
2001
2040
|
*/
|
|
2002
2041
|
type?: ExportType;
|
|
2003
2042
|
/**
|
|
2004
2043
|
* 내보낸 맵차트에 사용할 확장자 없는 파일명.
|
|
2005
2044
|
* fileName을 지정하지 않을 경우 realmap.type으로 다운로드 된다.
|
|
2006
|
-
*
|
|
2045
|
+
*
|
|
2007
2046
|
*/
|
|
2008
2047
|
fileName?: string;
|
|
2009
2048
|
}
|
|
@@ -2019,7 +2058,7 @@ interface ChartExporter {
|
|
|
2019
2058
|
hideContextMenu: () => void;
|
|
2020
2059
|
}
|
|
2021
2060
|
|
|
2022
|
-
/** @
|
|
2061
|
+
/** @private */
|
|
2023
2062
|
declare class Color {
|
|
2024
2063
|
private static readonly COLORS;
|
|
2025
2064
|
static create(color?: string): Color | undefined;
|
|
@@ -2041,7 +2080,7 @@ declare class Color {
|
|
|
2041
2080
|
}
|
|
2042
2081
|
|
|
2043
2082
|
/**
|
|
2044
|
-
* @
|
|
2083
|
+
* @private
|
|
2045
2084
|
*
|
|
2046
2085
|
* //TODO: Intl.DateTimeFormat 사용할 것.
|
|
2047
2086
|
*/
|
|
@@ -2067,7 +2106,7 @@ declare class DatetimeFormatter {
|
|
|
2067
2106
|
}
|
|
2068
2107
|
|
|
2069
2108
|
/**
|
|
2070
|
-
* @
|
|
2109
|
+
* @private
|
|
2071
2110
|
*
|
|
2072
2111
|
* 'as,0.0#'
|
|
2073
2112
|
* NOTE: 'a'는 bigint에 사용할 수 없다.
|
|
@@ -2090,7 +2129,7 @@ interface ISize {
|
|
|
2090
2129
|
width: number;
|
|
2091
2130
|
height: number;
|
|
2092
2131
|
}
|
|
2093
|
-
/** @
|
|
2132
|
+
/** @private */
|
|
2094
2133
|
declare class Size {
|
|
2095
2134
|
width: number;
|
|
2096
2135
|
height: number;
|
|
@@ -2117,7 +2156,7 @@ interface IRect {
|
|
|
2117
2156
|
declare const createRect: (x: number, y: number, width: number, height: number) => IRect;
|
|
2118
2157
|
declare function rectToSize(r: IRect): ISize;
|
|
2119
2158
|
declare function isEmptyRect(r: IRect): boolean;
|
|
2120
|
-
/** @
|
|
2159
|
+
/** @private */
|
|
2121
2160
|
declare class Rectangle {
|
|
2122
2161
|
x: number;
|
|
2123
2162
|
y: number;
|
|
@@ -2167,7 +2206,7 @@ declare class Rectangle {
|
|
|
2167
2206
|
toString(): string;
|
|
2168
2207
|
}
|
|
2169
2208
|
|
|
2170
|
-
/** @
|
|
2209
|
+
/** @private */
|
|
2171
2210
|
declare class Sides {
|
|
2172
2211
|
top: number;
|
|
2173
2212
|
bottom: number;
|
|
@@ -2187,7 +2226,7 @@ declare class Sides {
|
|
|
2187
2226
|
}
|
|
2188
2227
|
|
|
2189
2228
|
/**
|
|
2190
|
-
* @
|
|
2229
|
+
* @private
|
|
2191
2230
|
*
|
|
2192
2231
|
* 값이 문자형일 때 텍스트 변경 형식.
|
|
2193
2232
|
* 세미콜론(;)으로 구분되는 형식. 두개의 문자열은 각각 String.prototype.replace의 매개변수가 된다.
|
|
@@ -2205,12 +2244,12 @@ declare class TextFormatter {
|
|
|
2205
2244
|
$_parse(fmt: string): void;
|
|
2206
2245
|
}
|
|
2207
2246
|
|
|
2208
|
-
interface IPoint {
|
|
2247
|
+
interface IPoint$1 {
|
|
2209
2248
|
x: number;
|
|
2210
2249
|
y: number;
|
|
2211
2250
|
}
|
|
2212
2251
|
|
|
2213
|
-
/** @
|
|
2252
|
+
/** @private */
|
|
2214
2253
|
declare class RmTool<T extends RmControl = RmControl> {
|
|
2215
2254
|
private _control;
|
|
2216
2255
|
private _touchElement;
|
|
@@ -2275,11 +2314,11 @@ declare class RmTool<T extends RmControl = RmControl> {
|
|
|
2275
2314
|
protected _doKeyPress(ev: KeyboardEvent): void;
|
|
2276
2315
|
protected _doWheel(ev: WheelEvent): boolean;
|
|
2277
2316
|
protected _doSwipe(dom: Element, prevTracker: DragTracker, dir: RmDirection, duration: number, distance: number): boolean;
|
|
2278
|
-
protected _getDragTracker(dom: Element, dx: number, dy: number): DragTracker;
|
|
2317
|
+
protected _getDragTracker(dom: Element, dx: number, dy: number, shift: any): DragTracker;
|
|
2279
2318
|
private $_startDrag;
|
|
2280
2319
|
private $_drag;
|
|
2281
2320
|
private $_stopDragTracker;
|
|
2282
|
-
protected _pointerToPoint(event: PointerEvent): IPoint;
|
|
2321
|
+
protected _pointerToPoint(event: PointerEvent): IPoint$1;
|
|
2283
2322
|
private $_checkSwipe;
|
|
2284
2323
|
/**
|
|
2285
2324
|
* 터치 시작 시점에 실행한 설정 등을 이 후 touch 이벤트가 발생하면 초기화한다.
|
|
@@ -2321,7 +2360,7 @@ declare abstract class DragTracker<T extends RmControl = RmControl> extends RmOb
|
|
|
2321
2360
|
}
|
|
2322
2361
|
|
|
2323
2362
|
/**
|
|
2324
|
-
* @
|
|
2363
|
+
* @private
|
|
2325
2364
|
*
|
|
2326
2365
|
* Control base.
|
|
2327
2366
|
*/
|
|
@@ -2389,7 +2428,7 @@ declare abstract class RmControl extends RmObject {
|
|
|
2389
2428
|
*/
|
|
2390
2429
|
clipBounds(x?: number, y?: number, width?: number, height?: number, rd?: number): ClipRectElement;
|
|
2391
2430
|
clip<T extends ClipElement>(clip: T): T;
|
|
2392
|
-
pointerToPoint(event: PointerEvent): IPoint;
|
|
2431
|
+
pointerToPoint(event: PointerEvent): IPoint$1;
|
|
2393
2432
|
protected _setTesting(): void;
|
|
2394
2433
|
protected _setSize(w: number, h: number): void;
|
|
2395
2434
|
private $_addListener;
|
|
@@ -2437,7 +2476,7 @@ declare abstract class RmControl extends RmObject {
|
|
|
2437
2476
|
private _wheelHandler;
|
|
2438
2477
|
}
|
|
2439
2478
|
/**
|
|
2440
|
-
* @
|
|
2479
|
+
* @private
|
|
2441
2480
|
*
|
|
2442
2481
|
* RcContainer 구성 요소.
|
|
2443
2482
|
* SVGElement들로 구현된다.
|
|
@@ -2536,7 +2575,7 @@ declare class RmElement extends RmObject {
|
|
|
2536
2575
|
move(x: number, y: number): RmElement;
|
|
2537
2576
|
scale(value: number, yValue?: number): this;
|
|
2538
2577
|
trans(x: number, y: number): RmElement;
|
|
2539
|
-
transp(p: IPoint): RmElement;
|
|
2578
|
+
transp(p: IPoint$1): RmElement;
|
|
2540
2579
|
transc(p: MapCoord): RmElement;
|
|
2541
2580
|
transEx(x: number, y: number, duration?: number, invalidate?: boolean): RmElement;
|
|
2542
2581
|
transX(x: number): RmElement;
|
|
@@ -2650,7 +2689,7 @@ declare class ClipPathElement extends ClipElement {
|
|
|
2650
2689
|
}
|
|
2651
2690
|
|
|
2652
2691
|
/**
|
|
2653
|
-
* @
|
|
2692
|
+
* @private
|
|
2654
2693
|
*/
|
|
2655
2694
|
declare enum TextAnchor {
|
|
2656
2695
|
START = "start",
|
|
@@ -2658,7 +2697,7 @@ declare enum TextAnchor {
|
|
|
2658
2697
|
END = "end"
|
|
2659
2698
|
}
|
|
2660
2699
|
/**
|
|
2661
|
-
* @
|
|
2700
|
+
* @private
|
|
2662
2701
|
*/
|
|
2663
2702
|
declare enum TextLayout {
|
|
2664
2703
|
TOP = "top",
|
|
@@ -2813,9 +2852,7 @@ type PointHoverCallback = (args: DataPointArgs) => void;
|
|
|
2813
2852
|
/**
|
|
2814
2853
|
*/
|
|
2815
2854
|
type PointClickCallback = (args: DataPointArgs) => boolean;
|
|
2816
|
-
/**
|
|
2817
|
-
* xxx
|
|
2818
|
-
*/
|
|
2855
|
+
/** @dummy */
|
|
2819
2856
|
type PointStyleCallback = (args: DataPointArgs) => SVGStyleOrClass | undefined;
|
|
2820
2857
|
/**
|
|
2821
2858
|
* @enum
|
|
@@ -2873,7 +2910,7 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
2873
2910
|
*/
|
|
2874
2911
|
visible?: boolean;
|
|
2875
2912
|
/**
|
|
2876
|
-
* {@
|
|
2913
|
+
* {@link visible}이 true일 때,
|
|
2877
2914
|
* 이 속성에 지정한 zoom 이상어야 표시된다.
|
|
2878
2915
|
* // TODO: level을 배열로 지정하고 level별로 font size를 지정할 수 있게 한다.
|
|
2879
2916
|
*/
|
|
@@ -2897,15 +2934,15 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
2897
2934
|
distance?: number;
|
|
2898
2935
|
/**
|
|
2899
2936
|
* 계산되는 기본 text 대신, data point label로 표시될 field.<br/>
|
|
2900
|
-
* {@
|
|
2937
|
+
* {@link textCallback}이 설정되고 콜백에서 null이나 undefined를 리턴하지 않으면 이 속성은 무시된다.
|
|
2901
2938
|
*
|
|
2902
2939
|
*/
|
|
2903
2940
|
textField?: string;
|
|
2904
2941
|
/**
|
|
2905
2942
|
* 계산되는 기본 text 대신, data point label로 표시될 text 리턴.<br/>
|
|
2906
|
-
* undefined나 null을 리턴하면 {@
|
|
2943
|
+
* undefined나 null을 리턴하면 {@link textField} 등을 사용한 기존에 표시될 텍스트를 사용한다.
|
|
2907
2944
|
* 빈 문자열 등 정상적인 문자열을 리턴하면 그 문자열대로 표시된다.
|
|
2908
|
-
* {@
|
|
2945
|
+
* {@link prefix}나 포맷 속성 등은 적용되지 않는다.
|
|
2909
2946
|
*/
|
|
2910
2947
|
textCallback?: (point: any) => string;
|
|
2911
2948
|
/**
|
|
@@ -2948,6 +2985,7 @@ interface CalloutAnchorPointOptions extends ChartItemOptions {
|
|
|
2948
2985
|
* ex) `[{ callout: [[35.3, 152.1], [36.9, 152.1]], value: 100 }, ...]`
|
|
2949
2986
|
*/
|
|
2950
2987
|
interface DataPointCalloutOptions extends ChartItemOptions {
|
|
2988
|
+
mode?: 'point' | 'label';
|
|
2951
2989
|
/**
|
|
2952
2990
|
* callout 시작 위치의 모양과 스타일을 설정한다.<br/>
|
|
2953
2991
|
*/
|
|
@@ -2976,16 +3014,16 @@ interface DataPointCalloutOptions extends ChartItemOptions {
|
|
|
2976
3014
|
layoutOnly?: boolean;
|
|
2977
3015
|
}
|
|
2978
3016
|
/**
|
|
2979
|
-
* 시리즈는 {@
|
|
2980
|
-
* 맵차트 설정의 다른 부분이나 API에 참조하기 위해서는 {@
|
|
2981
|
-
* 맵차트 생성 시 {@
|
|
3017
|
+
* 시리즈는 {@link data}로 지정된 값들을 데이터포인트로 표시하는 맵차트의 핵심 구성 요소이다.<br/>
|
|
3018
|
+
* 맵차트 설정의 다른 부분이나 API에 참조하기 위해서는 {@link name}을 반드시 지정해야 햔다.
|
|
3019
|
+
* 맵차트 생성 시 {@link type} 을 지정하지 않으면 {@link https://realmap.co.kr/config/config/series/map map} 시리즈로 생성된다.<br/>
|
|
2982
3020
|
*
|
|
2983
|
-
*
|
|
3021
|
+
*
|
|
2984
3022
|
*/
|
|
2985
3023
|
interface SeriesOptions extends ChartItemOptions {
|
|
2986
3024
|
/**
|
|
2987
3025
|
* 시리즈 종류를 지정한다.<br/>
|
|
2988
|
-
* 지정하지 않으면 {@
|
|
3026
|
+
* 지정하지 않으면 {@link https://realmap.co.kr/config/config/series/map map} 시리즈로 생성된다.
|
|
2989
3027
|
*/
|
|
2990
3028
|
type?: string;
|
|
2991
3029
|
/**
|
|
@@ -2996,7 +3034,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
2996
3034
|
/**
|
|
2997
3035
|
* 이 시리즈를 나타내는 텍스트.<br/>
|
|
2998
3036
|
* 레전드나 툴팁에서 시리즈를 대표한다.
|
|
2999
|
-
* 이 속성이 지정되지 않으면 {@
|
|
3037
|
+
* 이 속성이 지정되지 않으면 {@link name}이 사용된다.
|
|
3000
3038
|
*/
|
|
3001
3039
|
label?: string;
|
|
3002
3040
|
/**
|
|
@@ -3006,8 +3044,8 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
3006
3044
|
map?: string | number;
|
|
3007
3045
|
/**
|
|
3008
3046
|
* 데이터포인트 label 설정 옵션.<br/>
|
|
3009
|
-
* boolean으로 지정하면 {@
|
|
3010
|
-
* 문자열로 지정하면 {@
|
|
3047
|
+
* boolean으로 지정하면 {@link visible} 속성을,
|
|
3048
|
+
* 문자열로 지정하면 {@link text} 속성을 별도로 지정하는 것과 동일하다.
|
|
3011
3049
|
*/
|
|
3012
3050
|
pointLabel?: DataPointLabelOptions | boolean | string;
|
|
3013
3051
|
/**
|
|
@@ -3021,62 +3059,63 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
3021
3059
|
callout?: DataPointCalloutOptions | boolean;
|
|
3022
3060
|
/**
|
|
3023
3061
|
* 데이터포인트 목록을 생성하는 데 참조되는 데이터셋.<br/>
|
|
3024
|
-
* {@
|
|
3025
|
-
* 맵차트를 생성할 때는 {@
|
|
3062
|
+
* {@link g.createChartAsync createChartAsync}를 호출해서 비동기로
|
|
3063
|
+
* 맵차트를 생성할 때는 {@link dataUrl}로 원격 데이터 소스를 지정할 수 있다.
|
|
3026
3064
|
* [주의] 처음 load 후 data의 내용을 변경해도 맵차트에 반영되지 않는다.
|
|
3027
3065
|
*/
|
|
3028
3066
|
data?: any;
|
|
3029
3067
|
/**
|
|
3030
3068
|
* 시리즈 데이터의 외부 경로.<br/>
|
|
3031
|
-
* {@
|
|
3069
|
+
* {@link g.createChartAsync createChartAsync} 호출 시, 해당 url로 GET 요청을 전송하여 데이터를 다운받고,
|
|
3032
3070
|
* 해당 시리즈의 data 속성에 저장한다.<br/>
|
|
3033
|
-
* {@
|
|
3034
|
-
* 또, 비동기 함수가 아닌 {@
|
|
3071
|
+
* {@link data}가 설정되면 이 속성은 무시된다.
|
|
3072
|
+
* 또, 비동기 함수가 아닌 {@link g.createChart createChart}로 맵차트를 생성할 때 이 속성으로 data를 설정하려는 경우
|
|
3035
3073
|
* 콘솔에 경고 메시지가 표시된다.
|
|
3036
3074
|
*/
|
|
3037
3075
|
dataUrl?: string;
|
|
3076
|
+
dataFilter?: (v: any) => boolean;
|
|
3038
3077
|
/**
|
|
3039
|
-
* {@
|
|
3078
|
+
* {@link data}나 {@link dataUrl}로 지정된 데이터소스에서 시리즈 데이터로 가져올 배열의 위치를 지정한다.<br/>
|
|
3040
3079
|
* "aaa.bbb" 형식으로 지정한다. 배열 항목은 숫자로 지정한다. "aaa.2.bbb".
|
|
3041
3080
|
* 지정하지 않으면 최상위 JSON 객체를 그대로 사용한다.
|
|
3042
3081
|
*/
|
|
3043
3082
|
dataPath?: string;
|
|
3044
3083
|
/**
|
|
3045
|
-
* {@
|
|
3084
|
+
* {@link data}가 array로 제공되어 datapoint로 생성될 때,
|
|
3046
3085
|
* array의 각 항목에 해당하는 이름으로 datapoint source의 값을 사용한다.<br/>
|
|
3047
3086
|
* ex) `['id', 'lon', 'lat', 'name', 'color']`
|
|
3048
3087
|
*/
|
|
3049
3088
|
fields?: string[];
|
|
3050
3089
|
/**
|
|
3051
|
-
* {@
|
|
3090
|
+
* {@link data}로 전달되는 데이터포인트 생성 객체들의 'id' 속성 값 대신,
|
|
3052
3091
|
* 이 속성으로 지정된 값을 데이터포인트 **id**로 설정한다.<br/>
|
|
3053
3092
|
*
|
|
3054
3093
|
* @default 'id'
|
|
3055
3094
|
*/
|
|
3056
3095
|
idField?: string | number;
|
|
3057
3096
|
/**
|
|
3058
|
-
* {@
|
|
3097
|
+
* {@link data}로 전달되는 데이터포인트 생성 객체들의 'name' 속성 값 대신,
|
|
3059
3098
|
* 이 속성으로 지정된 값을 데이터포인트 **이름**으로 설정한다.<br/>
|
|
3060
3099
|
*
|
|
3061
3100
|
* @default 'name'
|
|
3062
3101
|
*/
|
|
3063
3102
|
nameField?: string | number;
|
|
3064
3103
|
/**
|
|
3065
|
-
* {@
|
|
3104
|
+
* {@link data}로 전달되는 데이터포인트 생성 객체들의 'lon' 속성 값 대신,
|
|
3066
3105
|
* 이 속성으로 지정된 값을 데이터포인트 **경도** 값으로 설정한다.<br/>
|
|
3067
3106
|
*
|
|
3068
3107
|
* @default 'lon'
|
|
3069
3108
|
*/
|
|
3070
3109
|
lonField?: string | number;
|
|
3071
3110
|
/**
|
|
3072
|
-
* {@
|
|
3111
|
+
* {@link data}로 전달되는 데이터포인트 생성 객체들의 'lat' 속성 값 대신,
|
|
3073
3112
|
* 이 속성으로 지정된 값을 데이터포인트 **위도** 값으로 설정한다.<br/>
|
|
3074
3113
|
*
|
|
3075
3114
|
* @default 'lat'
|
|
3076
3115
|
*/
|
|
3077
3116
|
latField?: string | number;
|
|
3078
3117
|
/**
|
|
3079
|
-
* {@
|
|
3118
|
+
* {@link data}로 전달되는 데이터포인트 생성 객체들의 'color' 속성 값 대신,
|
|
3080
3119
|
* 이 속성으로 지정된 값을 데이터포인트의 기본 색상으로 적용한다.<br/>
|
|
3081
3120
|
*
|
|
3082
3121
|
* @default 'color'
|
|
@@ -3086,15 +3125,15 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
3086
3125
|
* 데이터 포인트 기본 색.<br/>
|
|
3087
3126
|
* 숫자로 지정하면 정수로 변환된 값에 해당하는 팔레트 색상으로 설정된다.
|
|
3088
3127
|
* 'var(--color-n)'으로 지정한 것과 동일하며, 1 ~ 12 사이의 값으로 설정할 수 있다.
|
|
3089
|
-
* {@
|
|
3090
|
-
* {@
|
|
3128
|
+
* {@link style}로 지정된 색상보다는 우선하지만,
|
|
3129
|
+
* {@link pointColors}나 {@link styleCallback}으로 설정된 색상이 이 속성으로 설정한 색상보다 우선한다.
|
|
3091
3130
|
*/
|
|
3092
3131
|
color?: string | number;
|
|
3093
3132
|
/**
|
|
3094
3133
|
* color 속성이 명시적으로 지정되지 않은 데이터포인터의 color 속성을 지정한다.<br/>
|
|
3095
3134
|
* 색 배열로 지정하거나, 'colors' asset으로 등록된 이름을 지정할 수 있다.<br/>
|
|
3096
|
-
* 시리즈 {@
|
|
3097
|
-
* {@
|
|
3135
|
+
* 시리즈 {@link style}이나 {@link color}로 지정된 색 보다는 우선하지만,
|
|
3136
|
+
* {@link styleCallback}에서 설정된 색상이나 데이터포인트별로 지정한 색상이 이 속성으로 설정된 색상보다 우선한다.
|
|
3098
3137
|
*/
|
|
3099
3138
|
pointColors?: string[] | string | ((point: DataPointArgs) => string);
|
|
3100
3139
|
/**
|
|
@@ -3103,8 +3142,8 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
3103
3142
|
*/
|
|
3104
3143
|
tooltipText?: string | boolean;
|
|
3105
3144
|
/**
|
|
3106
|
-
* 동적으로 {@
|
|
3107
|
-
* null이나 undefined를 리턴하면 {@
|
|
3145
|
+
* 동적으로 {@link tooltipText}를 리턴하는 콜백.<br/>
|
|
3146
|
+
* null이나 undefined를 리턴하면 {@link tooltipText} 설정을 따른다.
|
|
3108
3147
|
*/
|
|
3109
3148
|
tooltipCallback?: (args: DataPointArgs) => string;
|
|
3110
3149
|
/**
|
|
@@ -3127,7 +3166,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
3127
3166
|
disabled?: boolean;
|
|
3128
3167
|
/**
|
|
3129
3168
|
* 데이터 point의 동적 스타일 콜백.<br/>
|
|
3130
|
-
* {@
|
|
3169
|
+
* {@link style}, {@link pointColors} 등 다른 스타일 설정들 보다 우선한다.
|
|
3131
3170
|
*/
|
|
3132
3171
|
styleCallback?: PointStyleCallback;
|
|
3133
3172
|
/**
|
|
@@ -3135,11 +3174,11 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
3135
3174
|
*/
|
|
3136
3175
|
onPointsLoaded?: (series: object, firstTime: boolean) => void;
|
|
3137
3176
|
/**
|
|
3138
|
-
* {@
|
|
3177
|
+
* {@link https://realmap.co.kr/docs/api/classes/Series#addPoint addPoint}를 호출해서 데이터포인트가 하나 추가된 후 호출된다.<br/>
|
|
3139
3178
|
*/
|
|
3140
3179
|
onPointAdded?: (args: DataPointArgs) => void;
|
|
3141
3180
|
/**
|
|
3142
|
-
* {@
|
|
3181
|
+
* {@link https://realmap.co.kr/docs/api/classes/Series#removePoint removePoint}를 호출해서 데이터포인트가 하나 제거된 후 호출된다.<br/>
|
|
3143
3182
|
*/
|
|
3144
3183
|
onPointRemoved?: (args: DataPointArgs) => void;
|
|
3145
3184
|
onPointUpdated?: (args: DataPointArgs) => void;
|
|
@@ -3159,11 +3198,11 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
3159
3198
|
}
|
|
3160
3199
|
/**
|
|
3161
3200
|
* 데이터포인트의 **'value'** 속성이나,
|
|
3162
|
-
* {@
|
|
3201
|
+
* {@link valueField}로 지정된 속성 값을 기준으로 데이터포인트를 표시하는 시리즈.<br/>
|
|
3163
3202
|
*/
|
|
3164
3203
|
interface ValueSeriesOptions extends SeriesOptions {
|
|
3165
3204
|
/**
|
|
3166
|
-
* {@
|
|
3205
|
+
* {@link data}로 전달되는 데이터포인트 생성 객체들의 'value' 속성 값 대신,
|
|
3167
3206
|
* 이 속성으로 지정된 값을 데이터포인트 값으로 적용한다.<br/>
|
|
3168
3207
|
*/
|
|
3169
3208
|
valueField?: string;
|
|
@@ -3183,12 +3222,12 @@ interface CoordBaseSeriesOptions extends ValueSeriesOptions {
|
|
|
3183
3222
|
*/
|
|
3184
3223
|
interface MarkerSeriesOptions extends CoordBaseSeriesOptions {
|
|
3185
3224
|
/**
|
|
3186
|
-
* 데이터포인트 {@
|
|
3225
|
+
* 데이터포인트 {@link shape 도형} 회전 각도.<br/>
|
|
3187
3226
|
*/
|
|
3188
3227
|
rotation?: number;
|
|
3189
3228
|
/**
|
|
3190
3229
|
* marker가 마우스 아래 있는 지 판단할 때 외부로 추가되는 가상의 두께.<br/>
|
|
3191
|
-
* 지정하지 않으면 {@
|
|
3230
|
+
* 지정하지 않으면 {@link https://realmap.co.kr/config/config/chart/options/pointHovering/hintDistance hintDistance} 설정을 따른다.
|
|
3192
3231
|
*/
|
|
3193
3232
|
hintDistance?: number;
|
|
3194
3233
|
}
|
|
@@ -3204,16 +3243,16 @@ interface SparkSeriesOptions extends CoordBaseSeriesOptions {
|
|
|
3204
3243
|
/**
|
|
3205
3244
|
* 데이터포인트의 값이 복수개일 때 값별 색상을 순서대로 지정한다.<br/>
|
|
3206
3245
|
* color 항목이 설정되지 않으면 데이터포인트의 기본 색상이 사용된다.
|
|
3207
|
-
* 또, {@
|
|
3246
|
+
* 또, {@link legendByCategory}가 true이면 여기에 지정된 색상별로 legend에 표시된다.
|
|
3208
3247
|
*/
|
|
3209
3248
|
categories?: SparkSeriesCategory[];
|
|
3210
3249
|
/**
|
|
3211
3250
|
* 데이터포인트 값들을 가져올 필드 목록.<br/>
|
|
3212
|
-
* 이 속성이 지정되면 {@
|
|
3251
|
+
* 이 속성이 지정되면 {@link valueField}는 무시된다.
|
|
3213
3252
|
*/
|
|
3214
3253
|
valueFields?: string[];
|
|
3215
3254
|
/**
|
|
3216
|
-
* true로 지정되고 {@
|
|
3255
|
+
* true로 지정되고 {@link categories}가 지정되면
|
|
3217
3256
|
* 맵차트 legend에 category별로 항목이 표시된다.
|
|
3218
3257
|
*
|
|
3219
3258
|
* @default undefined
|
|
@@ -3227,7 +3266,7 @@ interface SparkSeriesOptions extends CoordBaseSeriesOptions {
|
|
|
3227
3266
|
*/
|
|
3228
3267
|
minSize?: number;
|
|
3229
3268
|
/**
|
|
3230
|
-
* 데이터포인트 {@
|
|
3269
|
+
* 데이터포인트 {@link shape 도형} 회전 각도.<br/>
|
|
3231
3270
|
*/
|
|
3232
3271
|
rotation?: number;
|
|
3233
3272
|
/**
|
|
@@ -3247,8 +3286,8 @@ interface GaugeOptions extends CoordBaseSeriesOptions {
|
|
|
3247
3286
|
*/
|
|
3248
3287
|
height?: number;
|
|
3249
3288
|
/**
|
|
3250
|
-
* {@
|
|
3251
|
-
* 이 속성보다 {@
|
|
3289
|
+
* {@link width}, {@link height}를 동시에 지정한다.<br/>
|
|
3290
|
+
* 이 속성보다 {@link width}, {@link height}가 우선한다.
|
|
3252
3291
|
*
|
|
3253
3292
|
* @default 60
|
|
3254
3293
|
*/
|
|
@@ -3262,7 +3301,7 @@ interface GaugeOptions extends CoordBaseSeriesOptions {
|
|
|
3262
3301
|
}
|
|
3263
3302
|
interface ValueGaugeOptions extends GaugeOptions {
|
|
3264
3303
|
/**
|
|
3265
|
-
* {@
|
|
3304
|
+
* {@link valueDomain} 설정에 따라
|
|
3266
3305
|
* 시리즈의 전체 데이터포인트 값들로 부터 계산된 최소값 보다
|
|
3267
3306
|
* 이 속성에 지정한 값이 작으면 그 값을 기준 최소값으로 한다.<br/>
|
|
3268
3307
|
*
|
|
@@ -3270,7 +3309,7 @@ interface ValueGaugeOptions extends GaugeOptions {
|
|
|
3270
3309
|
*/
|
|
3271
3310
|
minValue?: number;
|
|
3272
3311
|
/**
|
|
3273
|
-
* {@
|
|
3312
|
+
* {@link valueDomain} 설정에 따라
|
|
3274
3313
|
* 시리즈의 전체 데이터포인트 값들로 부터 계산된 최대값 보다
|
|
3275
3314
|
* 이 속성에 지정한 값이 크면 그 값을 기준 최대값으로 한다.<br/>
|
|
3276
3315
|
*/
|
|
@@ -3326,13 +3365,13 @@ interface OrthogonalSparkSeriesOptions extends SparkSeriesOptions {
|
|
|
3326
3365
|
*/
|
|
3327
3366
|
valueDomain?: DataPointValueDomain;
|
|
3328
3367
|
/**
|
|
3329
|
-
* {@
|
|
3368
|
+
* {@link valueDomain} 설정에 따라
|
|
3330
3369
|
* 개별 데이터포인트나 시리즈의 전체 데이터포인트 값들로 부터 계산된 최소값 보다
|
|
3331
3370
|
* 이 속성에 지정한 값이 작으면 그 값을 기준 최소값으로 한다.<br/>
|
|
3332
3371
|
*/
|
|
3333
3372
|
minValue?: number;
|
|
3334
3373
|
/**
|
|
3335
|
-
* {@
|
|
3374
|
+
* {@link valueDomain} 설정에 따라
|
|
3336
3375
|
* 개별 데이터포인트나 시리즈의 전체 데이터포인트 값들로 부터 계산된 최대값 보다
|
|
3337
3376
|
* 이 속성에 지정한 값이 크면 그 값을 기준 최대값으로 한다.<br/>
|
|
3338
3377
|
*/
|
|
@@ -3347,13 +3386,14 @@ interface OrthogonalSparkSeriesOptions extends SparkSeriesOptions {
|
|
|
3347
3386
|
declare const BarSeriesType = "bar";
|
|
3348
3387
|
/**
|
|
3349
3388
|
* 데이터포인트의 **'value'** 속성으로 지정된 값들을 막대 차트로 표시한다.<br/>
|
|
3350
|
-
* {@
|
|
3389
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'bar'이다.<br/>
|
|
3351
3390
|
*
|
|
3352
3391
|
* @fiddle series/bar-series2 Bar 시리즈 데모
|
|
3353
3392
|
*
|
|
3354
|
-
*
|
|
3393
|
+
*
|
|
3355
3394
|
*/
|
|
3356
3395
|
interface BarSeriesOptions extends OrthogonalSparkSeriesOptions {
|
|
3396
|
+
/** @dummy */
|
|
3357
3397
|
type?: typeof BarSeriesType;
|
|
3358
3398
|
/**
|
|
3359
3399
|
* @private 미구현
|
|
@@ -3364,35 +3404,35 @@ interface BarSeriesOptions extends OrthogonalSparkSeriesOptions {
|
|
|
3364
3404
|
/**
|
|
3365
3405
|
* 바 너비.<br/>
|
|
3366
3406
|
* 차트에 bar 하나가 차지히는 원래 너비에서 실제 표시되는 바 너비의 상대적 크기로 지정한다.
|
|
3367
|
-
* 1보다 큰 경우 bar들이 겹치게 되는데 {@
|
|
3407
|
+
* 1보다 큰 경우 bar들이 겹치게 되는데 {@link overflow}가 true가 아니면 넘치지 않도록 최대한 차트 안쪽으로 밀어서 표시된다.
|
|
3368
3408
|
*
|
|
3369
3409
|
* @default 0.7
|
|
3370
3410
|
*/
|
|
3371
3411
|
barWidth?: number;
|
|
3372
3412
|
maxValue?: number;
|
|
3373
3413
|
/**
|
|
3374
|
-
* null인 y값을 {@
|
|
3414
|
+
* null인 y값을 {@link baseValue}로 간주한다.<br/>
|
|
3375
3415
|
*/
|
|
3376
3416
|
nullAsBase?: boolean;
|
|
3377
3417
|
/**
|
|
3378
|
-
* {@
|
|
3418
|
+
* {@link categories}가 지정되지 않고, {@link colorByField}가 true인 경우,
|
|
3379
3419
|
* bar들의 색상이 이 속성에 지정한 색들로 순환 지정된다.<br/>
|
|
3380
3420
|
* 이 속성이 지정되지 않으면 데이터포인트 색상을 기준으로 색을 분리해 표시한다.
|
|
3381
3421
|
*/
|
|
3382
3422
|
fieldColors?: string[];
|
|
3383
3423
|
/**
|
|
3384
|
-
* {@
|
|
3385
|
-
* {@
|
|
3424
|
+
* {@link fieldColors} 속성에 따라 bar들이 다른 색으로 표시되게 한다.<br/>
|
|
3425
|
+
* {@link categories}가 지정되면 그 설정을 따른다.
|
|
3386
3426
|
*
|
|
3387
3427
|
* @default true
|
|
3388
3428
|
*/
|
|
3389
3429
|
colorByField?: boolean;
|
|
3390
3430
|
/**
|
|
3391
|
-
* {@
|
|
3431
|
+
* {@link baseValue} 혹은 y축의 baseValue보다 작은 쪽의 point들에 적용되는 스타일.
|
|
3392
3432
|
*/
|
|
3393
3433
|
belowStyle?: SVGStyleOrClass;
|
|
3394
3434
|
/**
|
|
3395
|
-
* true로 지정하면 {@
|
|
3435
|
+
* true로 지정하면 {@link barWidth}가 1보다 큰 경우 bar가 차트 너비를 넘어 표시된다.<br/>
|
|
3396
3436
|
* false면 최대한 차트 영역 내로 밀어서 표시한다.
|
|
3397
3437
|
*
|
|
3398
3438
|
* @default false
|
|
@@ -3418,13 +3458,14 @@ interface LineSeriesAreaOptions extends ChartItemOptions {
|
|
|
3418
3458
|
declare const LineSeriesType = "line";
|
|
3419
3459
|
/**
|
|
3420
3460
|
* 데이터포인트의 **'value'** 속성으로 지정된 값들을 선(line) 차트로 표시한다.<br/>
|
|
3421
|
-
* {@
|
|
3461
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'line'이다.<br/>
|
|
3422
3462
|
*
|
|
3423
3463
|
* @fiddle series/line-series Line 시리즈 데모
|
|
3424
3464
|
*
|
|
3425
|
-
*
|
|
3465
|
+
*
|
|
3426
3466
|
*/
|
|
3427
3467
|
interface LineSeriesOptions extends OrthogonalSparkSeriesOptions {
|
|
3468
|
+
/** @dummy */
|
|
3428
3469
|
type?: typeof LineSeriesType;
|
|
3429
3470
|
back?: ChartItemOptions;
|
|
3430
3471
|
/**
|
|
@@ -3449,21 +3490,22 @@ interface PieSeriesThreshold {
|
|
|
3449
3490
|
declare const PieSeriesType = "pie";
|
|
3450
3491
|
/**
|
|
3451
3492
|
* 데이터포인트의 **'value'** 속성으로 지정된 값들을 파이(pie) 차트로 표시한다.<br/>
|
|
3452
|
-
* {@
|
|
3493
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'pie'이다.<br/>
|
|
3453
3494
|
*
|
|
3454
3495
|
* @fiddle series/pie-series Pie 시리즈 데모
|
|
3455
3496
|
*
|
|
3456
|
-
*
|
|
3497
|
+
*
|
|
3457
3498
|
*/
|
|
3458
3499
|
interface PieSeriesOptions extends SparkSeriesOptions {
|
|
3500
|
+
/** @dummy */
|
|
3459
3501
|
type?: typeof PieSeriesType;
|
|
3460
3502
|
centerX?: number;
|
|
3461
3503
|
centerY?: number;
|
|
3462
3504
|
/**
|
|
3463
3505
|
* 파이 반지름.<br/>
|
|
3464
3506
|
* 숫자나 '%'로 끝나는 백분율로 지정할 수 있다.
|
|
3465
|
-
* 백분율로 지정하면 {@
|
|
3466
|
-
* 또, {@
|
|
3507
|
+
* 백분율로 지정하면 {@link body} 영역의 높이/너비 중 작은 크기에 대한 상대 크기로 지정된다.
|
|
3508
|
+
* 또, {@link minSize}와 함께 사용하면 데이터포인트 값에 따라 다른 크기로 표시할 수 있다.
|
|
3467
3509
|
*
|
|
3468
3510
|
* @default 30
|
|
3469
3511
|
*/
|
|
@@ -3472,14 +3514,14 @@ interface PieSeriesOptions extends SparkSeriesOptions {
|
|
|
3472
3514
|
totalAngle?: number;
|
|
3473
3515
|
clockwise?: boolean;
|
|
3474
3516
|
/**
|
|
3475
|
-
* {@
|
|
3517
|
+
* {@link categories}가 지정되지 않고, {@link colorByField}가 true인 경우,
|
|
3476
3518
|
* bar들의 색상이 이 속성에 지정한 색들로 순환 지정된다.<br/>
|
|
3477
3519
|
* 이 속성이 지정되지 않으면 데이터포인트 색상을 기준으로 색을 분리해 표시한다.
|
|
3478
3520
|
*/
|
|
3479
3521
|
fieldColors?: string[];
|
|
3480
3522
|
/**
|
|
3481
|
-
* {@
|
|
3482
|
-
* {@
|
|
3523
|
+
* {@link fieldColors} 속성에 따라 파이 섹터들이 다른 색으로 표시되게 한다.<br/>
|
|
3524
|
+
* {@link categories}가 지정되면 각 category에 지정된 색상을 따른다.
|
|
3483
3525
|
*
|
|
3484
3526
|
* @default true
|
|
3485
3527
|
*/
|
|
@@ -3496,12 +3538,12 @@ interface PieSeriesOptions extends SparkSeriesOptions {
|
|
|
3496
3538
|
*/
|
|
3497
3539
|
declare const _WaffleDirection: {
|
|
3498
3540
|
/**
|
|
3499
|
-
* 야래쪽 행(row)부터 위로 채워가면서 {@
|
|
3541
|
+
* 야래쪽 행(row)부터 위로 채워가면서 {@link https://realmap.co.kr/config/config/series/waffle#fillThreshold fillThreshold}에 도달하면
|
|
3500
3542
|
* 오른쪽으로 채워 나간다.<br/>
|
|
3501
3543
|
*/
|
|
3502
3544
|
readonly ROW: "row";
|
|
3503
3545
|
/**
|
|
3504
|
-
* 왼쪽 행(column)부터 오른쪽로 채워가면서 {@
|
|
3546
|
+
* 왼쪽 행(column)부터 오른쪽로 채워가면서 {@link https://realmap.co.kr/config/config/series/waffle#fillThreshold fillThreshold}에 도달하면
|
|
3505
3547
|
* 위쪽으로 채워 나간다.<br/>
|
|
3506
3548
|
*/
|
|
3507
3549
|
readonly COL: "col";
|
|
@@ -3510,14 +3552,15 @@ declare const _WaffleDirection: {
|
|
|
3510
3552
|
type WaffleDirection = typeof _WaffleDirection[keyof typeof _WaffleDirection];
|
|
3511
3553
|
declare const WaffleSeriesType = "waffle";
|
|
3512
3554
|
/**
|
|
3513
|
-
* {@
|
|
3514
|
-
* {@
|
|
3555
|
+
* {@link value}로 지정된 연관된 값들을 waffle 차트로 표시한다.<br/>
|
|
3556
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'waffle'이다.<br/>
|
|
3515
3557
|
*
|
|
3516
3558
|
* @fiddle series/route-series Route 시리즈 데모
|
|
3517
3559
|
*
|
|
3518
|
-
*
|
|
3560
|
+
*
|
|
3519
3561
|
*/
|
|
3520
3562
|
interface WaffleSeriesOptions extends SparkSeriesOptions {
|
|
3563
|
+
/** @dummy */
|
|
3521
3564
|
type?: typeof WaffleSeriesType;
|
|
3522
3565
|
/**
|
|
3523
3566
|
* @default 10
|
|
@@ -3547,9 +3590,9 @@ interface WaffleSeriesOptions extends SparkSeriesOptions {
|
|
|
3547
3590
|
*/
|
|
3548
3591
|
fillDirection?: WaffleDirection;
|
|
3549
3592
|
/**
|
|
3550
|
-
* {@
|
|
3593
|
+
* {@link fillDirection}이 'colFirst'나 'rowFirst'일 때,
|
|
3551
3594
|
* 방향을 바꾸게 하는 기준 셀 개수.<br/>
|
|
3552
|
-
* 1 이상이어야 하고, {@
|
|
3595
|
+
* 1 이상이어야 하고, {@link fillDirection}에 따라 {@link rowCount}나 {@link colCount} 미만 크기로 지정해야 한다.
|
|
3553
3596
|
*
|
|
3554
3597
|
* @default 1
|
|
3555
3598
|
*/
|
|
@@ -3559,19 +3602,19 @@ interface WaffleSeriesOptions extends SparkSeriesOptions {
|
|
|
3559
3602
|
*/
|
|
3560
3603
|
valueDomain?: DataPointValueDomain;
|
|
3561
3604
|
/**
|
|
3562
|
-
* {@
|
|
3605
|
+
* {@link valueDomain} 설정에 따라
|
|
3563
3606
|
* 개별 데이터포인트나 시리즈의 전체 데이터포인트 값들로 부터 계산된 최소값 보다
|
|
3564
3607
|
* 이 속성에 지정한 값이 작으면 그 값을 기준 최소값으로 한다.<br/>
|
|
3565
3608
|
*/
|
|
3566
3609
|
minValue?: number;
|
|
3567
3610
|
/**
|
|
3568
|
-
* {@
|
|
3611
|
+
* {@link valueDomain} 설정에 따라
|
|
3569
3612
|
* 개별 데이터포인트나 시리즈의 전체 데이터포인트 값들로 부터 계산된 최대값 보다
|
|
3570
3613
|
* 이 속성에 지정한 값이 크면 그 값을 기준 최대값으로 한다.<br/>
|
|
3571
3614
|
*/
|
|
3572
3615
|
maxValue?: number;
|
|
3573
3616
|
/**
|
|
3574
|
-
* true로 지정하면 값에 포함되지 않는 셀들을 {@
|
|
3617
|
+
* true로 지정하면 값에 포함되지 않는 셀들을 {@link nullStyle}을 적용해서 표시한다.<br/>
|
|
3575
3618
|
*
|
|
3576
3619
|
* @default false;
|
|
3577
3620
|
*/
|
|
@@ -3595,11 +3638,11 @@ type BubbleSizeMode = typeof _BubbleSizeMode[keyof typeof _BubbleSizeMode];
|
|
|
3595
3638
|
declare const BubbleSeriesType = "bubble";
|
|
3596
3639
|
/**
|
|
3597
3640
|
* Bubble 시리즈.<br/>
|
|
3598
|
-
* {@
|
|
3641
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'bubble'이다.<br/>
|
|
3599
3642
|
*
|
|
3600
3643
|
* @fiddle series/bubble-series Bubble 시리즈 데모
|
|
3601
3644
|
*
|
|
3602
|
-
*
|
|
3645
|
+
*
|
|
3603
3646
|
*/
|
|
3604
3647
|
interface BubbleSeriesOptions extends MarkerSeriesOptions {
|
|
3605
3648
|
type?: typeof BubbleSeriesType;
|
|
@@ -3610,13 +3653,13 @@ interface BubbleSeriesOptions extends MarkerSeriesOptions {
|
|
|
3610
3653
|
/**
|
|
3611
3654
|
* 데이터포인트 값들로 부터 계산된 최소값 보다
|
|
3612
3655
|
* 이 속성에 지정한 값이 작으면 그 값을 기준 최소값으로 한다.<br/>
|
|
3613
|
-
* 실시간 동적으로 데이터포인트를 추가하는 경우 이 속성과 {@
|
|
3656
|
+
* 실시간 동적으로 데이터포인트를 추가하는 경우 이 속성과 {@link maxValue}를 명시적으로 지정해야 한다.
|
|
3614
3657
|
*/
|
|
3615
3658
|
minValue?: number;
|
|
3616
3659
|
/**
|
|
3617
3660
|
* 데이터포인트 값들로 부터 계산된 최대값 보다
|
|
3618
3661
|
* 이 속성에 지정한 값이 크면 그 값을 기준 최대값으로 한다.<br/>
|
|
3619
|
-
* 실시간 동적으로 데이터포인트를 추가하는 경우 이 속성과 {@
|
|
3662
|
+
* 실시간 동적으로 데이터포인트를 추가하는 경우 이 속성과 {@link minValue}를 명시적으로 지정해야 한다.
|
|
3620
3663
|
*/
|
|
3621
3664
|
maxValue?: number;
|
|
3622
3665
|
/**
|
|
@@ -3678,15 +3721,16 @@ declare const _RouteArrowDisplay: {
|
|
|
3678
3721
|
type RouteArrowDisplay = typeof _RouteArrowDisplay[keyof typeof _RouteArrowDisplay];
|
|
3679
3722
|
declare const RouteSeriesType = "route";
|
|
3680
3723
|
/**
|
|
3681
|
-
* {@
|
|
3682
|
-
* {@
|
|
3724
|
+
* {@link coords}로 지정된 두 지점 사이를 곡선으로 연결하는 시리즈.<br/>
|
|
3725
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'route'이다.<br/>
|
|
3683
3726
|
* 데이터포인트 label을 표시하지 않는다.
|
|
3684
3727
|
*
|
|
3685
3728
|
* @fiddle series/route-series Route 시리즈 데모
|
|
3686
3729
|
*
|
|
3687
|
-
*
|
|
3730
|
+
*
|
|
3688
3731
|
*/
|
|
3689
3732
|
interface RouteSeriesOptions extends SeriesOptions {
|
|
3733
|
+
/** @dummy */
|
|
3690
3734
|
type?: typeof RouteSeriesType;
|
|
3691
3735
|
/**
|
|
3692
3736
|
* @ignore 미구현
|
|
@@ -3762,9 +3806,9 @@ interface InsetLabelOptions extends IconedTextOptions {
|
|
|
3762
3806
|
visible?: boolean;
|
|
3763
3807
|
/**
|
|
3764
3808
|
* 계산되는 기본 text 대신, data point label로 표시될 text 리턴.<br/>
|
|
3765
|
-
* undefined나 null을 리턴하면 {@
|
|
3809
|
+
* undefined나 null을 리턴하면 {@link textField} 등을 사용한 기존에 표시될 텍스트를 사용한다.
|
|
3766
3810
|
* 빈 문자열 등 정상적인 문자열을 리턴하면 그 문자열대로 표시된다.
|
|
3767
|
-
* {@
|
|
3811
|
+
* {@link prefix}나 포맷 속성 등은 적용되지 않는다.
|
|
3768
3812
|
*/
|
|
3769
3813
|
textCallback?: (args: InsetLabelArgs) => string;
|
|
3770
3814
|
/**
|
|
@@ -3786,17 +3830,18 @@ interface MapSeriesLabelOptions extends DataPointLabelOptions {
|
|
|
3786
3830
|
declare const MapSeriesType = "map";
|
|
3787
3831
|
/**
|
|
3788
3832
|
* 맵 소스에서 경계가 설정된 영역들을 표시하는 시리즈.<br/>
|
|
3789
|
-
* {@
|
|
3790
|
-
* {@link https://en.wikipedia.org/wiki/Choropleth_map choropleth map}(단계 구분도. 색상으로 area별 특성을 나타내는 지도)으로 사용된다.
|
|
3791
|
-
* 맵차트 설정에서 {@
|
|
3792
|
-
* 맵차트가 지도처럼 보이려면 반드시 하나 이상의 map 시리즈나 {@
|
|
3833
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'map'이다.<br/>
|
|
3834
|
+
* {@link https://en.wikipedia.org/wiki/Choropleth_map | choropleth map}(단계 구분도. 색상으로 area별 특성을 나타내는 지도)으로 사용된다.
|
|
3835
|
+
* 맵차트 설정에서 {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}을 지정하지 않으면 자동으로 생성되는 기본 시리즈이다.
|
|
3836
|
+
* 맵차트가 지도처럼 보이려면 반드시 하나 이상의 map 시리즈나 {@link https://realmap.co.kr/config/config/series/tiledweb tiledweb 시리즈}가 포함되어야 한다.<br/>
|
|
3793
3837
|
*
|
|
3794
|
-
*
|
|
3838
|
+
*
|
|
3795
3839
|
*/
|
|
3796
3840
|
interface MapSeriesOptions extends ValueSeriesOptions {
|
|
3841
|
+
/** @dummy */
|
|
3797
3842
|
type?: typeof MapSeriesType;
|
|
3798
3843
|
/**
|
|
3799
|
-
* {@
|
|
3844
|
+
* {@link https://realmap.co.kr/config/config/series/map/pointLabel#visible visible} 기본값이 false이다.
|
|
3800
3845
|
*/
|
|
3801
3846
|
pointLabel?: MapSeriesLabelOptions | boolean;
|
|
3802
3847
|
/**
|
|
@@ -3813,7 +3858,7 @@ interface MapSeriesOptions extends ValueSeriesOptions {
|
|
|
3813
3858
|
* 두 값을 배열로 지정하면 첫번째 문자열은 맵소스 "properties"의 속성명,
|
|
3814
3859
|
* 두번째는 데이터포인트의 속성명이다.
|
|
3815
3860
|
* 값을 하나만 지정하거나 문자열로 지정하면 양쪽 같은 속성명으로 연결한다.<br/>
|
|
3816
|
-
* 이 값이 지정되지 않으면 데이터포인트의 "id" 또는 {@
|
|
3861
|
+
* 이 값이 지정되지 않으면 데이터포인트의 "id" 또는 {@link idField} 속성으로 지정한 속성값과 맵소스의 "rm-id" 또는 "id" 속성값으로 연결한다.
|
|
3817
3862
|
*/
|
|
3818
3863
|
mapKeys?: string | [string, string];
|
|
3819
3864
|
/**
|
|
@@ -3844,17 +3889,21 @@ interface MapSeriesOptions extends ValueSeriesOptions {
|
|
|
3844
3889
|
hoverStyle?: SVGStyleOrClass;
|
|
3845
3890
|
/**
|
|
3846
3891
|
* true로 지정하면 마우스 클릭 등으로 area를 선택할 수 있다.<br/>
|
|
3847
|
-
* {@
|
|
3892
|
+
* {@link https://realmap.co.kr/config/config/options#clickAction clickAction} 또는 {@link https://realmap.co.kr/config/config/options#dbClickAction dbClickAction}이 'select'로 지정된 경우에만 적용된다.<br/>
|
|
3848
3893
|
*
|
|
3849
3894
|
* @default false
|
|
3850
3895
|
*/
|
|
3851
3896
|
selectable?: boolean;
|
|
3852
3897
|
/**
|
|
3853
|
-
*
|
|
3898
|
+
* @deprecated 대신 {@link selectStyle}을 사용한다.<br/>
|
|
3854
3899
|
*/
|
|
3855
3900
|
selectedStyle?: SVGStyleOrClass;
|
|
3856
3901
|
/**
|
|
3857
|
-
*
|
|
3902
|
+
* 선택된 area에 적용할 스타일셋.<br/>
|
|
3903
|
+
*/
|
|
3904
|
+
selectStyle?: SVGStyleOrClass;
|
|
3905
|
+
/**
|
|
3906
|
+
* true로 지정하면 data point가 설정되지 않은 area들도 {@link nullStyle}로 표시한다.<br/>
|
|
3858
3907
|
* 복수 개의 시리즈로 영역들을 그룹핑하려면 반드시 false로 지정해야 한다.
|
|
3859
3908
|
*
|
|
3860
3909
|
* @default true
|
|
@@ -3862,7 +3911,7 @@ interface MapSeriesOptions extends ValueSeriesOptions {
|
|
|
3862
3911
|
allAreas?: boolean;
|
|
3863
3912
|
/**
|
|
3864
3913
|
* 표시하지 않는 영역들을 지정한다.<br/>
|
|
3865
|
-
* {@
|
|
3914
|
+
* {@link mapKeys} 속성으로 지정된 key나 'id' 또는 {@link idField}로 지정된 값(들)로 지정한다.
|
|
3866
3915
|
*/
|
|
3867
3916
|
hiddenAreas?: string | string[];
|
|
3868
3917
|
/**
|
|
@@ -3904,21 +3953,37 @@ interface MapSeriesOptions extends ValueSeriesOptions {
|
|
|
3904
3953
|
*/
|
|
3905
3954
|
legend?: number | string;
|
|
3906
3955
|
}
|
|
3956
|
+
/**
|
|
3957
|
+
* Feature 종류.<br/>
|
|
3958
|
+
* @enum
|
|
3959
|
+
*/
|
|
3960
|
+
declare const _FeatureType: {
|
|
3961
|
+
/**
|
|
3962
|
+
* 영역.<br/>
|
|
3963
|
+
*/
|
|
3964
|
+
readonly AREA: "none";
|
|
3965
|
+
};
|
|
3966
|
+
/** @dummy */
|
|
3967
|
+
type FeatureType = typeof _FeatureType[keyof typeof _FeatureType];
|
|
3907
3968
|
interface FeatureSeriesLabelOptions extends DataPointLabelOptions {
|
|
3908
|
-
|
|
3969
|
+
/**
|
|
3970
|
+
* @default false
|
|
3971
|
+
*/
|
|
3972
|
+
visible?: boolean;
|
|
3909
3973
|
}
|
|
3910
3974
|
declare const FeatureSeriesType = "feature";
|
|
3911
3975
|
/**
|
|
3912
3976
|
* Feature area 영역들을 칠하는 시리즈.<br/>
|
|
3913
|
-
* {@
|
|
3977
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'feature'이다.<br/>
|
|
3914
3978
|
*
|
|
3915
|
-
*
|
|
3979
|
+
*
|
|
3916
3980
|
*/
|
|
3917
3981
|
interface FeatureSeriesOptions extends CoordBaseSeriesOptions {
|
|
3982
|
+
/** @dummy */
|
|
3918
3983
|
type?: typeof FeatureSeriesType;
|
|
3984
|
+
featureType?: FeatureType;
|
|
3919
3985
|
hoverColor?: string;
|
|
3920
3986
|
hoverStyle?: SVGStyleOrClass;
|
|
3921
|
-
selectable?: boolean;
|
|
3922
3987
|
colorRange?: ColorRange;
|
|
3923
3988
|
/**
|
|
3924
3989
|
* 차트에 설정된 color scale 아이디 혹은 인덱스.<br/>
|
|
@@ -3926,12 +3991,6 @@ interface FeatureSeriesOptions extends CoordBaseSeriesOptions {
|
|
|
3926
3991
|
* 다른 잘못된 값이면 첫번째 스케일에 연결된다.
|
|
3927
3992
|
*/
|
|
3928
3993
|
colorScale?: string | number | null;
|
|
3929
|
-
/**
|
|
3930
|
-
* @ignore
|
|
3931
|
-
*/
|
|
3932
|
-
detail?: FeatureSeriesOptions;
|
|
3933
|
-
detailKey?: string;
|
|
3934
|
-
detailZoom?: number;
|
|
3935
3994
|
/**
|
|
3936
3995
|
* true로 지정하면 데이터포인트가 설정된 area들이 설정되지 않은 area보다 위에 그려지게 한다.<br/>
|
|
3937
3996
|
*
|
|
@@ -3939,23 +3998,70 @@ interface FeatureSeriesOptions extends CoordBaseSeriesOptions {
|
|
|
3939
3998
|
*/
|
|
3940
3999
|
bringToFront?: boolean;
|
|
3941
4000
|
}
|
|
4001
|
+
interface PointClusterRange {
|
|
4002
|
+
from?: number;
|
|
4003
|
+
to?: number;
|
|
4004
|
+
radius?: number;
|
|
4005
|
+
color?: string;
|
|
4006
|
+
}
|
|
4007
|
+
interface PointClusterOptions extends ChartItemOptions {
|
|
4008
|
+
/**
|
|
4009
|
+
* @default false
|
|
4010
|
+
*/
|
|
4011
|
+
visible?: boolean;
|
|
4012
|
+
/**
|
|
4013
|
+
* @default undefined
|
|
4014
|
+
*/
|
|
4015
|
+
algorithm?: 'kmeans' | 'grid';
|
|
4016
|
+
/**
|
|
4017
|
+
* @default 40 픽셀
|
|
4018
|
+
*/
|
|
4019
|
+
distance?: number;
|
|
4020
|
+
/**
|
|
4021
|
+
* @default 2
|
|
4022
|
+
*/
|
|
4023
|
+
minDensity?: number;
|
|
4024
|
+
/**
|
|
4025
|
+
* @default 100
|
|
4026
|
+
*/
|
|
4027
|
+
maxIteration?: number;
|
|
4028
|
+
/**
|
|
4029
|
+
* @default 50 밀리초
|
|
4030
|
+
*/
|
|
4031
|
+
stepDuration?: number;
|
|
4032
|
+
/**
|
|
4033
|
+
* @default 300
|
|
4034
|
+
*/
|
|
4035
|
+
zoomLimit?: number;
|
|
4036
|
+
/**
|
|
4037
|
+
* @default 15
|
|
4038
|
+
*/
|
|
4039
|
+
radius?: number;
|
|
4040
|
+
ranges?: PointClusterRange[];
|
|
4041
|
+
/**
|
|
4042
|
+
* true면 cluster view를 클릭하면 포함된 데이터포인트들이 모두 표시되도록 zoom 시킨다.<br/>
|
|
4043
|
+
* 명시적 false로 설정하지 않으면 true로 적용된다.<br/>
|
|
4044
|
+
*/
|
|
4045
|
+
expandable?: boolean;
|
|
4046
|
+
}
|
|
3942
4047
|
declare const PointSeriesType = "point";
|
|
3943
4048
|
/**
|
|
3944
4049
|
* Point 시리즈. <br/>
|
|
3945
|
-
* {@
|
|
4050
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'point'이다.<br/>
|
|
3946
4051
|
*
|
|
3947
4052
|
* @fiddle series/point-series Point 시리즈 데모
|
|
3948
4053
|
*
|
|
3949
|
-
*
|
|
4054
|
+
*
|
|
3950
4055
|
*/
|
|
3951
4056
|
interface PointSeriesOptions extends MarkerSeriesOptions {
|
|
4057
|
+
/** @dummy */
|
|
3952
4058
|
type?: typeof PointSeriesType;
|
|
3953
4059
|
/**
|
|
3954
4060
|
* 명시적으로 지정하지 않으면 기본 제공되는 shape 목록 중 하나로 자동 설정된다.<br/>
|
|
3955
4061
|
*/
|
|
3956
4062
|
shape?: Shape;
|
|
3957
4063
|
/**
|
|
3958
|
-
* 데이터포인트 {@
|
|
4064
|
+
* 데이터포인트 {@link shape 도형}의 반지름.
|
|
3959
4065
|
*
|
|
3960
4066
|
* @default 5
|
|
3961
4067
|
*/
|
|
@@ -3964,9 +4070,10 @@ interface PointSeriesOptions extends MarkerSeriesOptions {
|
|
|
3964
4070
|
* @default 'center'
|
|
3965
4071
|
*/
|
|
3966
4072
|
position?: PointViewPosition;
|
|
4073
|
+
cluster?: PointClusterOptions;
|
|
3967
4074
|
}
|
|
3968
4075
|
/**
|
|
3969
|
-
*
|
|
4076
|
+
* Image 시리즈 label 설정 옵션. <br/>
|
|
3970
4077
|
*/
|
|
3971
4078
|
interface ImageSeriesLabelOptions extends DataPointLabelOptions {
|
|
3972
4079
|
/**
|
|
@@ -3977,16 +4084,17 @@ interface ImageSeriesLabelOptions extends DataPointLabelOptions {
|
|
|
3977
4084
|
declare const ImageSeriesType = "image";
|
|
3978
4085
|
/**
|
|
3979
4086
|
* 지정된 지점에 이미지를 표시하는 시리즈.<br/>
|
|
3980
|
-
* {@
|
|
4087
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'image'이다.<br/>
|
|
3981
4088
|
*
|
|
3982
4089
|
* @fiddle series/image-series Image 시리즈 데모
|
|
3983
4090
|
*
|
|
3984
|
-
*
|
|
4091
|
+
*
|
|
3985
4092
|
*/
|
|
3986
4093
|
interface ImageSeriesOptions extends SeriesOptions {
|
|
4094
|
+
/** @dummy */
|
|
3987
4095
|
type?: typeof ImageSeriesType;
|
|
3988
4096
|
/**
|
|
3989
|
-
* {@
|
|
4097
|
+
* {@link https://realmap.co.kr/config/config/series/image/pointLabel#visible visible} 기본값이 false이다.
|
|
3990
4098
|
*/
|
|
3991
4099
|
pointLabel?: ImageSeriesLabelOptions;
|
|
3992
4100
|
/**
|
|
@@ -4006,7 +4114,7 @@ interface ImageSeriesOptions extends SeriesOptions {
|
|
|
4006
4114
|
*/
|
|
4007
4115
|
imageHeight?: number;
|
|
4008
4116
|
/**
|
|
4009
|
-
* 데이터포인트 {@
|
|
4117
|
+
* 데이터포인트 {@link shape 도형} 회전 각도.<br/>
|
|
4010
4118
|
*/
|
|
4011
4119
|
rotation?: number;
|
|
4012
4120
|
/**
|
|
@@ -4022,11 +4130,12 @@ declare const PinSeriesType = "pin";
|
|
|
4022
4130
|
* 지정된 위치에 pin의 아래 부분이 위치한다.
|
|
4023
4131
|
* 내부 원을 특정 스타일로 표시할 수 있다.
|
|
4024
4132
|
* 또, 도형 안에 text를 표시할 수 있으며,
|
|
4025
|
-
* {@
|
|
4133
|
+
* {@link style}에 padding을 지정해서 text 위치를 조정할 수 있다.
|
|
4026
4134
|
*
|
|
4027
|
-
*
|
|
4135
|
+
*
|
|
4028
4136
|
*/
|
|
4029
4137
|
interface PinSeriesOptions extends MarkerSeriesOptions {
|
|
4138
|
+
/** @dummy */
|
|
4030
4139
|
type?: typeof PinSeriesType;
|
|
4031
4140
|
/**
|
|
4032
4141
|
* 원 반지름.<br/>
|
|
@@ -4038,7 +4147,7 @@ interface PinSeriesOptions extends MarkerSeriesOptions {
|
|
|
4038
4147
|
radius?: number;
|
|
4039
4148
|
/**
|
|
4040
4149
|
* 내부 원 크기.<br/>
|
|
4041
|
-
* {@
|
|
4150
|
+
* {@link radius 외부 원 크기}에 대한 비율을 0 ~ 1 사이의 값으로 지정한다.
|
|
4042
4151
|
*
|
|
4043
4152
|
* @default 0
|
|
4044
4153
|
*/
|
|
@@ -4081,22 +4190,37 @@ interface FigureSeriesImageOptions extends ChartItemOptions {
|
|
|
4081
4190
|
/**
|
|
4082
4191
|
* 이 값을 0보다 크고 1보다 작은 값으로 지정하면,
|
|
4083
4192
|
* 데이터포인트 최대값을 기준으로 기본 크기에 대한 상대 크기로 표시된다.<br/>
|
|
4084
|
-
*
|
|
4193
|
+
* //시리즈의 minSize가 설정된 경우에만 동작한다.<br/>
|
|
4085
4194
|
*/
|
|
4086
4195
|
minSize?: number;
|
|
4087
4196
|
}
|
|
4197
|
+
/**
|
|
4198
|
+
* 데이터포인트 figure로 표시할 svg path에 대한 객체. <br/>
|
|
4199
|
+
* 'path'와 'style'을 별도로 지정하는 객체로 지정할 수 있다.
|
|
4200
|
+
*/
|
|
4201
|
+
interface FigureObject {
|
|
4202
|
+
/**
|
|
4203
|
+
* svg path 설정.
|
|
4204
|
+
*/
|
|
4205
|
+
path: string;
|
|
4206
|
+
/**
|
|
4207
|
+
* svg style 또는 class 이름 설정.
|
|
4208
|
+
*/
|
|
4209
|
+
style: SVGStyleOrClass;
|
|
4210
|
+
}
|
|
4088
4211
|
declare const FigureSeriesType = "figure";
|
|
4089
4212
|
/**
|
|
4090
4213
|
* Figure 시리즈.<br/>
|
|
4091
|
-
* {@
|
|
4214
|
+
* {@link figure} 속성에 표시하려는 사용자 정의 도형의 svg path를 지정한다.
|
|
4092
4215
|
* 또, 도형 안에 text나 이미지를 표시할 수 있으며,
|
|
4093
|
-
* {@
|
|
4216
|
+
* {@link style}에 padding을 지정해서 text나 이미지 위치를 조정할 수 있다.
|
|
4094
4217
|
*
|
|
4095
4218
|
* @fiddle series/figure-series Figure 시리즈 데모
|
|
4096
4219
|
*
|
|
4097
|
-
*
|
|
4220
|
+
*
|
|
4098
4221
|
*/
|
|
4099
4222
|
interface FigureSeriesOptions extends CoordBaseSeriesOptions {
|
|
4223
|
+
/** @dummy */
|
|
4100
4224
|
type?: typeof FigureSeriesType;
|
|
4101
4225
|
figures?: {
|
|
4102
4226
|
[id: string]: {
|
|
@@ -4108,23 +4232,25 @@ interface FigureSeriesOptions extends CoordBaseSeriesOptions {
|
|
|
4108
4232
|
/**
|
|
4109
4233
|
* 데이터포인트 figure로 표시할 svg path 'd' 속성 값.<br/>
|
|
4110
4234
|
* 'path'와 'style'을 별도로 지정하는 객체로 지정할 수도 있다.
|
|
4111
|
-
* '#'로 시작하는 문자열은 차트나 {@
|
|
4235
|
+
* '#'로 시작하는 문자열은 차트나 {@link figures}에 등록한 figure id를 지정한다.
|
|
4112
4236
|
* 문자열 배열로 별도로 그려지는 두 path를 지정한다. 각 path에는 별도의 style을 지정할 수 있다.
|
|
4113
4237
|
*/
|
|
4114
|
-
figure?: string | (string |
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4238
|
+
figure?: string | (string | FigureObject)[];
|
|
4239
|
+
/**
|
|
4240
|
+
* {@link figure}의 좌표계를 [너비, 높이]로 지정한다.<br/>
|
|
4241
|
+
* 값을 하나만 지정하거나, 애초에 숫자값으로 지정하면 너비, 높이를 같은 값으로 설정한다.
|
|
4242
|
+
* 이 속성과 {@link width}나 {@link height}를 같이 지정하면 표시되는 크기를 조정할 수 있다.
|
|
4243
|
+
*/
|
|
4118
4244
|
figureBox?: [number, number] | number;
|
|
4119
4245
|
/**
|
|
4120
4246
|
* figure 표시 너비.<br/>
|
|
4121
|
-
* {@
|
|
4247
|
+
* {@link figureBox}에 figure의 원 크기를 지정하지 않으면 무시된다.
|
|
4122
4248
|
* 또, height를 지정하지 않으면 이 값과 figureBox의 비율에 맞게 height가 자동 설정된다.
|
|
4123
4249
|
*/
|
|
4124
4250
|
width?: number;
|
|
4125
4251
|
/**
|
|
4126
4252
|
* figure 표시 높이.<br/>
|
|
4127
|
-
* {@
|
|
4253
|
+
* {@link figureBox}에 figure의 원 크기를 지정하지 않으면 무시된다.
|
|
4128
4254
|
* 또, width를 지정하지 않으면 이 값과 figureBox의 비율에 맞게 width가 자동 설정된다.
|
|
4129
4255
|
*/
|
|
4130
4256
|
height?: number;
|
|
@@ -4164,19 +4290,19 @@ declare const _VectorHeadType: {
|
|
|
4164
4290
|
/**
|
|
4165
4291
|
* 머리를 따로 표시하지 않는다.
|
|
4166
4292
|
*
|
|
4167
|
-
*
|
|
4293
|
+
*
|
|
4168
4294
|
*/
|
|
4169
4295
|
readonly NONE: "none";
|
|
4170
4296
|
/**
|
|
4171
4297
|
* 닫힌 화살표.<br/>
|
|
4172
4298
|
*
|
|
4173
|
-
*
|
|
4299
|
+
*
|
|
4174
4300
|
*/
|
|
4175
4301
|
readonly CLOSED_ARROW: "closedArrow";
|
|
4176
4302
|
/**
|
|
4177
4303
|
* 열린 화살표.<br/>
|
|
4178
4304
|
*
|
|
4179
|
-
*
|
|
4305
|
+
*
|
|
4180
4306
|
*/
|
|
4181
4307
|
readonly OPEN_ARROW: "openArrow";
|
|
4182
4308
|
};
|
|
@@ -4186,9 +4312,10 @@ declare const VectorSeriesType = "vector";
|
|
|
4186
4312
|
/**
|
|
4187
4313
|
* Vector 시리즈. <br/>
|
|
4188
4314
|
*
|
|
4189
|
-
*
|
|
4315
|
+
*
|
|
4190
4316
|
*/
|
|
4191
4317
|
interface VectorSeriesOptions extends MarkerSeriesOptions {
|
|
4318
|
+
/** @dummy */
|
|
4192
4319
|
type?: typeof VectorSeriesType;
|
|
4193
4320
|
/**
|
|
4194
4321
|
* @default 'openArrow'
|
|
@@ -4214,57 +4341,102 @@ interface VectorSeriesOptions extends MarkerSeriesOptions {
|
|
|
4214
4341
|
*/
|
|
4215
4342
|
startAngle?: number;
|
|
4216
4343
|
}
|
|
4217
|
-
|
|
4344
|
+
/**
|
|
4345
|
+
* 'grid' 모드 'heatmap' 셀에 표시할 기준 값.<br/>
|
|
4346
|
+
* @enum
|
|
4347
|
+
*/
|
|
4348
|
+
declare const _HeatmapCellAggregation: {
|
|
4349
|
+
/**
|
|
4350
|
+
* 셀에 포함된 포인트 개수.<br/>
|
|
4351
|
+
*
|
|
4352
|
+
*
|
|
4353
|
+
*/
|
|
4354
|
+
readonly COUNT: "count";
|
|
4355
|
+
/**
|
|
4356
|
+
* 셀에 포함된 포이트 값들의 합.<br/>
|
|
4357
|
+
*
|
|
4358
|
+
*
|
|
4359
|
+
*/
|
|
4360
|
+
readonly SUM: "sum";
|
|
4361
|
+
/**
|
|
4362
|
+
* 셀에 포함된 포이트 값들의 평균.<br/>
|
|
4363
|
+
*
|
|
4364
|
+
*
|
|
4365
|
+
*/
|
|
4366
|
+
readonly AVG: "avg";
|
|
4367
|
+
};
|
|
4368
|
+
/** @dummy */
|
|
4369
|
+
type HeatmapCellAggregation = typeof _HeatmapCellAggregation[keyof typeof _HeatmapCellAggregation];
|
|
4370
|
+
interface HeatmapGridModeOptions {
|
|
4371
|
+
origin?: MapCoord;
|
|
4372
|
+
/**
|
|
4373
|
+
* 초(") 단위로 지정한다.<br/>
|
|
4374
|
+
* 1도(°)가 3600초이고, 1분(')은 60초이다.
|
|
4375
|
+
* 또, 10초(~30m), 30초(~1km), 60초(~2km) 정도가 된다.<br/>
|
|
4376
|
+
* 이 속성을 지정하지 않고 {@link cellHeight}가 지정되면 그 값을 따른다.
|
|
4377
|
+
*
|
|
4378
|
+
* @default 3600
|
|
4379
|
+
*/
|
|
4218
4380
|
cellWidth?: number;
|
|
4381
|
+
/**
|
|
4382
|
+
* 초(") 단위로 지정한다.<br/>
|
|
4383
|
+
* 1도(°)가 3600초이고, 1분(')은 60초이다.
|
|
4384
|
+
* 또, 10초(~30m), 30초(~1km), 60초(~2km) 정도가 된다.<br/>
|
|
4385
|
+
* 이 속성을 지정하지 않고 {@link cellWidth}가 지정되면 그 값을 따른다.
|
|
4386
|
+
*
|
|
4387
|
+
* @default 3600
|
|
4388
|
+
*/
|
|
4219
4389
|
cellHeight?: number;
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4390
|
+
blur?: number;
|
|
4391
|
+
/**
|
|
4392
|
+
* @default 'sum'
|
|
4393
|
+
*/
|
|
4394
|
+
aggregation?: HeatmapCellAggregation;
|
|
4223
4395
|
}
|
|
4224
|
-
interface
|
|
4396
|
+
interface HeatmapPointModeOptions {
|
|
4225
4397
|
}
|
|
4226
4398
|
/**
|
|
4227
4399
|
* @enum
|
|
4228
4400
|
* 히트맵 표시 방식<br/>
|
|
4229
4401
|
*/
|
|
4230
|
-
declare const
|
|
4402
|
+
declare const _HeatmapMode: {
|
|
4231
4403
|
readonly GRID: "grid";
|
|
4232
4404
|
readonly POINT: "point";
|
|
4233
|
-
readonly KDE: "kde";
|
|
4234
4405
|
};
|
|
4235
4406
|
/** @dummy */
|
|
4236
|
-
type
|
|
4407
|
+
type HeatmapMode = typeof _HeatmapMode[keyof typeof _HeatmapMode];
|
|
4237
4408
|
declare const HeatmapSeriesType = "heatmap";
|
|
4238
4409
|
/**
|
|
4239
4410
|
* @private 미구현
|
|
4240
4411
|
*
|
|
4241
4412
|
* 특정 위치를 중심으로 주변 영역을 칠하는 시리즈.<br/>
|
|
4242
|
-
* {@
|
|
4413
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'heatmap'이다.<br/>
|
|
4243
4414
|
*
|
|
4244
|
-
*
|
|
4415
|
+
*
|
|
4245
4416
|
*/
|
|
4246
4417
|
interface HeatmapSeriesOptions extends MarkerSeriesOptions {
|
|
4418
|
+
/** @dummy */
|
|
4247
4419
|
type?: typeof HeatmapSeriesType;
|
|
4248
4420
|
/**
|
|
4249
4421
|
* 히트맵 표시 방식.
|
|
4250
4422
|
*
|
|
4251
4423
|
* @default 'grid'
|
|
4252
4424
|
*/
|
|
4253
|
-
mode?:
|
|
4254
|
-
grid?:
|
|
4255
|
-
point?:
|
|
4256
|
-
kde?: HitmapKdeModeOptions;
|
|
4425
|
+
mode?: HeatmapMode;
|
|
4426
|
+
grid?: HeatmapGridModeOptions;
|
|
4427
|
+
point?: HeatmapPointModeOptions;
|
|
4257
4428
|
}
|
|
4258
4429
|
declare const RegionSeriesType = "region";
|
|
4259
4430
|
/**
|
|
4260
4431
|
* @private 미구현
|
|
4261
4432
|
*
|
|
4262
4433
|
* Region 시리즈.<br/>
|
|
4263
|
-
* {@
|
|
4434
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'region'이다.<br/>
|
|
4264
4435
|
*
|
|
4265
|
-
*
|
|
4436
|
+
*
|
|
4266
4437
|
*/
|
|
4267
4438
|
interface RegionSeriesOptions extends MarkerSeriesOptions {
|
|
4439
|
+
/** @dummy */
|
|
4268
4440
|
type?: typeof RegionSeriesType;
|
|
4269
4441
|
}
|
|
4270
4442
|
interface PanelSeriesSectionOptions extends ChartItemOptions {
|
|
@@ -4288,22 +4460,23 @@ interface PanelSeriesLabelOptions extends DataPointLabelOptions {
|
|
|
4288
4460
|
declare const PanelSeriesType = "panel";
|
|
4289
4461
|
/**
|
|
4290
4462
|
* 타이틀과 데이터포인트 관련 내용을 표시하는 두 영역을 표시하는 시리즈.<br/>
|
|
4291
|
-
* {@
|
|
4463
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'panel'이다.<br/>
|
|
4292
4464
|
*
|
|
4293
4465
|
* @fiddle series/panel-series Panel 시리즈 데모
|
|
4294
4466
|
*
|
|
4295
|
-
*
|
|
4467
|
+
*
|
|
4296
4468
|
*/
|
|
4297
4469
|
interface PanelSeriesOptions extends CoordBaseSeriesOptions {
|
|
4470
|
+
/** @dummy */
|
|
4298
4471
|
type?: typeof PanelSeriesType;
|
|
4299
4472
|
/**
|
|
4300
|
-
* {@
|
|
4473
|
+
* {@link header}와 본체를 배치하는 방향.<br />
|
|
4301
4474
|
*
|
|
4302
4475
|
* @default 'vertical'
|
|
4303
4476
|
*/
|
|
4304
4477
|
orientation?: 'vertical' | 'horizontal';
|
|
4305
4478
|
/**
|
|
4306
|
-
* {@
|
|
4479
|
+
* {@link https://realmap.co.kr/config/config/series/panel/pointLabel#visible visible} 기본값이 false이다.
|
|
4307
4480
|
*/
|
|
4308
4481
|
pointLabel?: PanelSeriesLabelOptions;
|
|
4309
4482
|
header?: PanelSeriesHeaderOptions;
|
|
@@ -4333,11 +4506,12 @@ interface TileWebProvider {
|
|
|
4333
4506
|
declare const TiledWebSeriesType = "tiledweb";
|
|
4334
4507
|
/**
|
|
4335
4508
|
* 지도 해상도에 맞는 조각 그림들로 맵 배경을 채우는 시리즈.<br/>
|
|
4336
|
-
* {@
|
|
4509
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'tiledweb'이다.<br/>
|
|
4337
4510
|
*
|
|
4338
|
-
*
|
|
4511
|
+
*
|
|
4339
4512
|
*/
|
|
4340
4513
|
interface TiledWebSeriesOptions extends SeriesOptions {
|
|
4514
|
+
/** @dummy */
|
|
4341
4515
|
type?: typeof TiledWebSeriesType;
|
|
4342
4516
|
/**
|
|
4343
4517
|
* @default 'osm'
|
|
@@ -4352,6 +4526,43 @@ interface TiledWebSeriesOptions extends SeriesOptions {
|
|
|
4352
4526
|
*/
|
|
4353
4527
|
subdomain?: string;
|
|
4354
4528
|
}
|
|
4529
|
+
interface HtmlSeriesLabelOptions extends DataPointLabelOptions {
|
|
4530
|
+
/**
|
|
4531
|
+
* @append
|
|
4532
|
+
* @default false
|
|
4533
|
+
*/
|
|
4534
|
+
visible?: boolean;
|
|
4535
|
+
}
|
|
4536
|
+
declare const HtmlSeriesType = "html";
|
|
4537
|
+
/**
|
|
4538
|
+
* 지정된 지점에 html을 표시하는 시리즈.<br/>
|
|
4539
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'html'이다.<br/>
|
|
4540
|
+
*
|
|
4541
|
+
* @fiddle series/html-series Html 시리즈 데모
|
|
4542
|
+
*
|
|
4543
|
+
*
|
|
4544
|
+
*/
|
|
4545
|
+
interface HtmlSeriesOptions extends ValueSeriesOptions {
|
|
4546
|
+
type?: typeof HtmlSeriesType;
|
|
4547
|
+
/**
|
|
4548
|
+
* {@link https://realmap.co.kr/config/config/series/map/pointLabel#visible visible} 기본값이 false이다.
|
|
4549
|
+
*/
|
|
4550
|
+
pointLabel?: HtmlSeriesLabelOptions | boolean;
|
|
4551
|
+
htmlField?: string;
|
|
4552
|
+
html?: string;
|
|
4553
|
+
htmlWidth?: number;
|
|
4554
|
+
htmlHeight?: number;
|
|
4555
|
+
/**
|
|
4556
|
+
* @default 'center'
|
|
4557
|
+
*/
|
|
4558
|
+
position?: PointViewPosition;
|
|
4559
|
+
/**
|
|
4560
|
+
* {@link html}로 지정된 html 텍스트에 포함된 param 값을 지정하는 객체나 콜백. #311<br/>
|
|
4561
|
+
*/
|
|
4562
|
+
params?: {
|
|
4563
|
+
[key: string]: any;
|
|
4564
|
+
} | ((param: string) => any);
|
|
4565
|
+
}
|
|
4355
4566
|
/**
|
|
4356
4567
|
* track 시리즈 outline 설정 옵션.<br/>
|
|
4357
4568
|
*/
|
|
@@ -4360,11 +4571,12 @@ interface TrackSeriesOutlineOptions extends ChartItemOptions {
|
|
|
4360
4571
|
declare const TrackSeriesType = "track";
|
|
4361
4572
|
/**
|
|
4362
4573
|
* 출발 지점에서 도착 지점까지 복수 지점으로 이어지는 경로를 표시하는 시리즈.<br/>
|
|
4363
|
-
* {@
|
|
4574
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'track'이다.<br/>
|
|
4364
4575
|
*
|
|
4365
|
-
*
|
|
4576
|
+
*
|
|
4366
4577
|
*/
|
|
4367
4578
|
interface TrackSeriesOptions extends SeriesOptions {
|
|
4579
|
+
/** @dummy */
|
|
4368
4580
|
type?: typeof TrackSeriesType;
|
|
4369
4581
|
/**
|
|
4370
4582
|
* 각 지점을 표시하는 모양.<br/>
|
|
@@ -4372,7 +4584,7 @@ interface TrackSeriesOptions extends SeriesOptions {
|
|
|
4372
4584
|
*/
|
|
4373
4585
|
shape?: Shape;
|
|
4374
4586
|
/**
|
|
4375
|
-
* 지점 표시 {@
|
|
4587
|
+
* 지점 표시 {@link shape 도형}의 반지름.<br/>
|
|
4376
4588
|
*
|
|
4377
4589
|
* @default 3 픽셀
|
|
4378
4590
|
*/
|
|
@@ -4387,9 +4599,9 @@ declare const BandSeriesType = "band";
|
|
|
4387
4599
|
* @private 미구현
|
|
4388
4600
|
*
|
|
4389
4601
|
* Band Series<br/>
|
|
4390
|
-
* {@
|
|
4602
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'band'이다.<br/>
|
|
4391
4603
|
*
|
|
4392
|
-
*
|
|
4604
|
+
*
|
|
4393
4605
|
*/
|
|
4394
4606
|
interface BandSeriesOptions extends SeriesOptions {
|
|
4395
4607
|
type?: typeof BandSeriesType;
|
|
@@ -4399,9 +4611,9 @@ declare const TableSeriesType = "table";
|
|
|
4399
4611
|
* @private 미구현
|
|
4400
4612
|
*
|
|
4401
4613
|
* Table Series<br/>
|
|
4402
|
-
* {@
|
|
4614
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'table'이다.<br/>
|
|
4403
4615
|
*
|
|
4404
|
-
*
|
|
4616
|
+
*
|
|
4405
4617
|
*/
|
|
4406
4618
|
interface TableSeriesOptions extends SeriesOptions {
|
|
4407
4619
|
type?: typeof TableSeriesType;
|
|
@@ -4411,20 +4623,21 @@ declare const SankeySeriesType = "sankey";
|
|
|
4411
4623
|
* @private 미구현
|
|
4412
4624
|
*
|
|
4413
4625
|
* Sankey Series<br/>
|
|
4414
|
-
* {@
|
|
4626
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'sankey'이다.<br/>
|
|
4415
4627
|
*
|
|
4416
|
-
*
|
|
4628
|
+
*
|
|
4417
4629
|
*/
|
|
4418
4630
|
interface SankeySeriesOptions extends SeriesOptions {
|
|
4631
|
+
/** @dummy */
|
|
4419
4632
|
type?: typeof SankeySeriesType;
|
|
4420
4633
|
}
|
|
4421
4634
|
/**
|
|
4422
4635
|
* @private 미구현
|
|
4423
4636
|
*
|
|
4424
4637
|
* WebGL 시리즈 옵션 base.<br/>
|
|
4425
|
-
* {@
|
|
4638
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'table'이다.<br/>
|
|
4426
4639
|
*
|
|
4427
|
-
*
|
|
4640
|
+
*
|
|
4428
4641
|
* @module gl
|
|
4429
4642
|
*/
|
|
4430
4643
|
interface GLSeriesOptions extends ValueSeriesOptions {
|
|
@@ -4434,14 +4647,15 @@ declare const GLPointSeriesType = "glpoint";
|
|
|
4434
4647
|
* @private 미구현
|
|
4435
4648
|
*
|
|
4436
4649
|
* WebGL 포인트 시리즈 옵션.<br/>
|
|
4437
|
-
* {@
|
|
4650
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 'glpoint'이다.<br/>
|
|
4438
4651
|
*
|
|
4439
|
-
*
|
|
4652
|
+
*
|
|
4440
4653
|
*/
|
|
4441
4654
|
interface GLPointSeriesOptions extends GLSeriesOptions {
|
|
4655
|
+
/** @dummy */
|
|
4442
4656
|
type?: typeof GLPointSeriesType;
|
|
4443
4657
|
/**
|
|
4444
|
-
* 데이터포인트 {@
|
|
4658
|
+
* 데이터포인트 {@link shape 도형}의 반지름.
|
|
4445
4659
|
*
|
|
4446
4660
|
* @default 5
|
|
4447
4661
|
*/
|
|
@@ -4471,7 +4685,7 @@ interface CircleGaugeRimOptions extends ChartItemOptions {
|
|
|
4471
4685
|
interface CircleGaugeValueRimOptions extends CircleGaugeRimOptions {
|
|
4472
4686
|
/**
|
|
4473
4687
|
* 테두리 굵기.
|
|
4474
|
-
* 픽셀 단위의 크기나, {@
|
|
4688
|
+
* 픽셀 단위의 크기나, {@link CircularGaugeOptions.radius radius}와 {@link CircularGaugeOptions.innerRadius innerRadius}로 결정된 원호 굵기에 대한 상대적 크기로 지정할 수 있다.
|
|
4475
4689
|
* 예) 지정하지 않거나 '100%'로 지정하면 게이지 원호 굵기와 동일하게 표시된다.
|
|
4476
4690
|
*
|
|
4477
4691
|
*/
|
|
@@ -4543,9 +4757,10 @@ interface CircleGaugeLabelOptions extends ChartTextOptions {
|
|
|
4543
4757
|
declare const CircleGaugeType = "gauge";
|
|
4544
4758
|
/**
|
|
4545
4759
|
* 원행 게이지 설정 모델.<br/>
|
|
4546
|
-
*
|
|
4760
|
+
*
|
|
4547
4761
|
*/
|
|
4548
4762
|
interface CircleGaugeOptions extends ValueGaugeOptions {
|
|
4763
|
+
/** @dummy */
|
|
4549
4764
|
type?: typeof CircleGaugeType;
|
|
4550
4765
|
/**
|
|
4551
4766
|
* 게이지 내부 원 설정 모델.<br/>
|
|
@@ -4581,7 +4796,7 @@ interface CircleGaugeOptions extends ValueGaugeOptions {
|
|
|
4581
4796
|
/**
|
|
4582
4797
|
* 게이지 중심 수직 위치.
|
|
4583
4798
|
* 픽셀 단위의 크기나,
|
|
4584
|
-
* {@
|
|
4799
|
+
* {@link width}, {@link height}, {@link size} 등으로 지정한
|
|
4585
4800
|
* 데이터포인터 게이지 영역 전체 높이에 대한 상대적 크기로 지정할 수 있다.
|
|
4586
4801
|
*
|
|
4587
4802
|
* @default '50%'
|
|
@@ -4590,7 +4805,7 @@ interface CircleGaugeOptions extends ValueGaugeOptions {
|
|
|
4590
4805
|
/**
|
|
4591
4806
|
* 게이지 원호의 반지름.
|
|
4592
4807
|
* 픽셀 단위의 크기나,
|
|
4593
|
-
* {@
|
|
4808
|
+
* {@link width}, {@link height}, {@link size} 등으로 지정한
|
|
4594
4809
|
* 데이터포인터 게이지 영역 전체 크기(너비와 높이 중 작은 값)에 대한 상대적 크기로 지정할 수 있다.
|
|
4595
4810
|
* '50%'로 지정하면 데이터포인터 게이지 영역의 width나 height중 작은 크기와 동일한 반지름으로 표시된다.
|
|
4596
4811
|
*
|
|
@@ -4600,8 +4815,8 @@ interface CircleGaugeOptions extends ValueGaugeOptions {
|
|
|
4600
4815
|
/**
|
|
4601
4816
|
* 내부 원호의 반지름.
|
|
4602
4817
|
* 픽셀 단위의 크기나,
|
|
4603
|
-
* {@
|
|
4604
|
-
* {@
|
|
4818
|
+
* {@link width}, {@link height}, {@link size} 등으로 지정한
|
|
4819
|
+
* {@link radius}에 대한 상대적 크기로 지정할 수 있다.
|
|
4605
4820
|
* '100%'이면 게이지 원호의 반지름과 동일하다.
|
|
4606
4821
|
*
|
|
4607
4822
|
*/
|
|
@@ -4609,8 +4824,8 @@ interface CircleGaugeOptions extends ValueGaugeOptions {
|
|
|
4609
4824
|
/**
|
|
4610
4825
|
* 값을 나타내는 원호의 반지름.
|
|
4611
4826
|
* 픽셀 단위의 크기나,
|
|
4612
|
-
* {@
|
|
4613
|
-
* 지정하지 않거나 '100%'이고 {@
|
|
4827
|
+
* {@link radius}와 {@link innerRadius}로 결정된 기본 rim의 중점에 대한 상대적 크기로 지정할 수 있다.
|
|
4828
|
+
* 지정하지 않거나 '100%'이고 {@link valueRim}의 {@link valueRim.thickness 두께}가
|
|
4614
4829
|
* 기본 rim의 두께와 동일하면 게이지 원호의 반지름과 동일하게 표시된다.
|
|
4615
4830
|
*/
|
|
4616
4831
|
valueRadius?: PercentSize;
|
|
@@ -4685,7 +4900,7 @@ interface ClockGaugeSecondHandOptions extends ClockGaugeHandOptions {
|
|
|
4685
4900
|
*/
|
|
4686
4901
|
animatable?: boolean;
|
|
4687
4902
|
/**
|
|
4688
|
-
* {@
|
|
4903
|
+
* {@link animatable}이 true일 때 애니메이션 기간.
|
|
4689
4904
|
* 밀리초 단위로 지정한다.
|
|
4690
4905
|
*
|
|
4691
4906
|
*/
|
|
@@ -4753,9 +4968,10 @@ interface ClockGaugeLabelOptions extends ChartTextOptions {
|
|
|
4753
4968
|
declare const ClockGaugeType = "clock";
|
|
4754
4969
|
/**
|
|
4755
4970
|
* 시계 게이지 설정 모델.<br/>
|
|
4756
|
-
*
|
|
4971
|
+
*
|
|
4757
4972
|
*/
|
|
4758
4973
|
interface ClockGaugeOptions extends GaugeOptions {
|
|
4974
|
+
/** @dummy */
|
|
4759
4975
|
type?: typeof ClockGaugeType;
|
|
4760
4976
|
/**
|
|
4761
4977
|
* @default 90
|
|
@@ -4764,7 +4980,7 @@ interface ClockGaugeOptions extends GaugeOptions {
|
|
|
4764
4980
|
/**
|
|
4765
4981
|
* 게이지 중심 수평 위치.
|
|
4766
4982
|
* 픽셀 단위의 크기나,
|
|
4767
|
-
* {@
|
|
4983
|
+
* {@link width}, {@link height}, {@link size} 등으로 지정한
|
|
4768
4984
|
* 데이터포인터 게이지 영역 전체 너비에 대한 상대적 크기로 지정할 수 있다.
|
|
4769
4985
|
*
|
|
4770
4986
|
* @default '50%'
|
|
@@ -4773,7 +4989,7 @@ interface ClockGaugeOptions extends GaugeOptions {
|
|
|
4773
4989
|
/**
|
|
4774
4990
|
* 게이지 중심 수직 위치.
|
|
4775
4991
|
* 픽셀 단위의 크기나,
|
|
4776
|
-
* {@
|
|
4992
|
+
* {@link width}, {@link height}, {@link size} 등으로 지정한
|
|
4777
4993
|
* 데이터포인터 게이지 영역 전체 높이에 대한 상대적 크기로 지정할 수 있다.
|
|
4778
4994
|
*
|
|
4779
4995
|
* @default '50%'
|
|
@@ -4782,7 +4998,7 @@ interface ClockGaugeOptions extends GaugeOptions {
|
|
|
4782
4998
|
/**
|
|
4783
4999
|
* 게이지 원호의 반지름.
|
|
4784
5000
|
* 픽셀 단위의 크기나,
|
|
4785
|
-
* {@
|
|
5001
|
+
* {@link width}, {@link height}, {@link size} 등으로 지정한
|
|
4786
5002
|
* 데이터포인터 게이지 크기(너비와 높이 중 작은 값)에 대한 상대적 크기로 지정할 수 있다.
|
|
4787
5003
|
* '50%'로 지정하면 데이터포인터 게이지의 width나 height중 작은 크기와 동일한 반지름으로 표시된다.
|
|
4788
5004
|
*
|
|
@@ -4848,7 +5064,7 @@ interface ClockGaugeOptions extends GaugeOptions {
|
|
|
4848
5064
|
*/
|
|
4849
5065
|
active?: boolean;
|
|
4850
5066
|
}
|
|
4851
|
-
type SeriesOptionsType = MapSeriesOptions | FeatureSeriesOptions | PointSeriesOptions | PinSeriesOptions | FigureSeriesOptions | VectorSeriesOptions | RouteSeriesOptions | ImageSeriesOptions | BarSeriesOptions | PieSeriesOptions | WaffleSeriesOptions | LineSeriesOptions | BubbleSeriesOptions | HeatmapSeriesOptions | PanelSeriesOptions | TiledWebSeriesOptions | TrackSeriesOptions | SankeySeriesOptions | CircleGaugeOptions | ClockGaugeOptions | RegionSeriesOptions | GLPointSeriesOptions;
|
|
5067
|
+
type SeriesOptionsType = MapSeriesOptions | FeatureSeriesOptions | PointSeriesOptions | PinSeriesOptions | FigureSeriesOptions | VectorSeriesOptions | RouteSeriesOptions | ImageSeriesOptions | BarSeriesOptions | PieSeriesOptions | WaffleSeriesOptions | LineSeriesOptions | BubbleSeriesOptions | HeatmapSeriesOptions | FeatureSeriesOptions | PanelSeriesOptions | TiledWebSeriesOptions | HtmlSeriesOptions | TrackSeriesOptions | SankeySeriesOptions | CircleGaugeOptions | ClockGaugeOptions | RegionSeriesOptions | GLPointSeriesOptions;
|
|
4852
5068
|
|
|
4853
5069
|
/**
|
|
4854
5070
|
* 시리즈 load animation 타입.
|
|
@@ -4911,9 +5127,9 @@ type LegendLayout = typeof _LegendLayout[keyof typeof _LegendLayout];
|
|
|
4911
5127
|
* 맵차트 시리즈 구성을 직관적으로 이해할 수 있도록 도와주는 범례 설정 모델.<br/>
|
|
4912
5128
|
* visible 기본값이 undefined이고,
|
|
4913
5129
|
* 따로 지정하지 않으면 시리즈가 둘 이상 포함돼야 legend가 표시된다.<br/>
|
|
4914
|
-
* {@link guide
|
|
5130
|
+
* {@link https://realmap.co.kr/guide/legend 범례 개요} 페이지를 참조한다.
|
|
4915
5131
|
*
|
|
4916
|
-
*
|
|
5132
|
+
*
|
|
4917
5133
|
*/
|
|
4918
5134
|
interface LegendOptions extends MapSimpleWidgetOptions {
|
|
4919
5135
|
/**
|
|
@@ -4999,7 +5215,7 @@ interface LegendOptions extends MapSimpleWidgetOptions {
|
|
|
4999
5215
|
}
|
|
5000
5216
|
|
|
5001
5217
|
/**
|
|
5002
|
-
* @
|
|
5218
|
+
* @private
|
|
5003
5219
|
*/
|
|
5004
5220
|
interface ILegendSource {
|
|
5005
5221
|
visible: boolean;
|
|
@@ -5010,7 +5226,7 @@ interface ILegendSource {
|
|
|
5010
5226
|
setLegendMarkerStyle?(marker: RmElement): void;
|
|
5011
5227
|
}
|
|
5012
5228
|
/**
|
|
5013
|
-
* @
|
|
5229
|
+
* @private
|
|
5014
5230
|
*/
|
|
5015
5231
|
declare class LegendItem extends ChartItem<ChartItemOptions> {
|
|
5016
5232
|
legend: Legend;
|
|
@@ -5023,9 +5239,9 @@ declare class LegendItem extends ChartItem<ChartItemOptions> {
|
|
|
5023
5239
|
* 맵차트 시리즈 구성을 직관적으로 이해할 수 있도록 도와주는 범례 설정 모델.<br/>
|
|
5024
5240
|
* visible 기본값이 undefined이고,
|
|
5025
5241
|
* 따로 지정하지 않으면 시리즈가 둘 이상 포함돼야 legend가 표시된다.<br/>
|
|
5026
|
-
* {@link guide
|
|
5242
|
+
* {@link https://realmap.co.kr/guide/legend 범례 개요} 페이지를 참조한다.
|
|
5027
5243
|
*
|
|
5028
|
-
*
|
|
5244
|
+
*
|
|
5029
5245
|
*/
|
|
5030
5246
|
declare class Legend extends MapSimpleWidget<LegendOptions> {
|
|
5031
5247
|
static defaults: LegendOptions;
|
|
@@ -5073,6 +5289,7 @@ interface MapProjection {
|
|
|
5073
5289
|
getYRange(latFrom: number, latTo: number): MapCoord;
|
|
5074
5290
|
project(coord: MapCoord): MapCoord;
|
|
5075
5291
|
backward(coord: MapCoord): MapCoord;
|
|
5292
|
+
projectCoord(coord: MapCoord): MapCoord;
|
|
5076
5293
|
clip(pts: MapCoord[]): MapCoord[];
|
|
5077
5294
|
isVisible(coord: MapCoord): boolean;
|
|
5078
5295
|
getVisible(coord: MapCoord): MapCoord;
|
|
@@ -5267,6 +5484,38 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
|
|
|
5267
5484
|
protected _doApply(options: TooltipOptions): void;
|
|
5268
5485
|
}
|
|
5269
5486
|
|
|
5487
|
+
interface IPoint {
|
|
5488
|
+
px: number;
|
|
5489
|
+
py: number;
|
|
5490
|
+
moves?: number;
|
|
5491
|
+
cluster?: any;
|
|
5492
|
+
}
|
|
5493
|
+
interface ICluster {
|
|
5494
|
+
cx: number;
|
|
5495
|
+
cy: number;
|
|
5496
|
+
points: IPoint[];
|
|
5497
|
+
prevs: IPoint[];
|
|
5498
|
+
}
|
|
5499
|
+
/**
|
|
5500
|
+
* Point custering 모델.<br/>
|
|
5501
|
+
*/
|
|
5502
|
+
declare class PointCluster extends ChartItem<PointClusterOptions> {
|
|
5503
|
+
static defaults: PointClusterOptions;
|
|
5504
|
+
private _runner;
|
|
5505
|
+
private _ranges;
|
|
5506
|
+
get acitve(): boolean;
|
|
5507
|
+
get clusters(): ICluster[];
|
|
5508
|
+
run(points: IPoint[], width: number, height: number, onPrepare: (clusters: ICluster[]) => void, onStep: (step: number, clusters: ICluster[]) => void, onComplete?: (clusters: ICluster[]) => void): void;
|
|
5509
|
+
stop(): void;
|
|
5510
|
+
updateClusters(): void;
|
|
5511
|
+
clear(): void;
|
|
5512
|
+
isVisible(cluster: ICluster): boolean;
|
|
5513
|
+
getRange(cluster: ICluster): PointClusterRange;
|
|
5514
|
+
isExpandable(): boolean;
|
|
5515
|
+
protected _doApply(op: PointClusterOptions): void;
|
|
5516
|
+
private $_parseRanges;
|
|
5517
|
+
}
|
|
5518
|
+
|
|
5270
5519
|
type GetLabelPositionFn = (p: DataPoint) => PointLabelPosition;
|
|
5271
5520
|
/**
|
|
5272
5521
|
* Series data point label options.
|
|
@@ -5317,6 +5566,8 @@ interface ISeries<T extends DataPoint = DataPoint> {
|
|
|
5317
5566
|
};
|
|
5318
5567
|
select(p: ISelectionSource): void;
|
|
5319
5568
|
unselect(p: ISelectionSource): void;
|
|
5569
|
+
selectList(p: ISelectionSource[]): void;
|
|
5570
|
+
unselectList(p: ISelectionSource[]): void;
|
|
5320
5571
|
}
|
|
5321
5572
|
/**
|
|
5322
5573
|
* MapChart series base.
|
|
@@ -5381,22 +5632,23 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5381
5632
|
* 맵차트의 다른 구성 요소에서 이 시리즈를 참조할 때 사용되며,
|
|
5382
5633
|
* 레전드나 툴팁에서 시리즈를 나타내는 텍스트로도 사용된다.
|
|
5383
5634
|
*
|
|
5384
|
-
*
|
|
5635
|
+
*
|
|
5385
5636
|
*/
|
|
5386
5637
|
get name(): string;
|
|
5387
5638
|
/**
|
|
5388
5639
|
* 데이터포인트 label 설정 모델.
|
|
5389
5640
|
*
|
|
5390
|
-
*
|
|
5641
|
+
*
|
|
5391
5642
|
*/
|
|
5392
5643
|
get pointLabel(): DataPointLabel<DataPointLabelOptions>;
|
|
5393
5644
|
get map(): MapModel;
|
|
5394
5645
|
get callout(): DataPointCallout<DataPointCalloutOptions>;
|
|
5646
|
+
get cluster(): PointCluster;
|
|
5395
5647
|
displayName(): string;
|
|
5396
5648
|
/**
|
|
5397
5649
|
* 데이터포인터들을 생성하는 데 사용되는 값 목록.
|
|
5398
5650
|
*
|
|
5399
|
-
*
|
|
5651
|
+
*
|
|
5400
5652
|
*/
|
|
5401
5653
|
get data(): any;
|
|
5402
5654
|
private $_setData;
|
|
@@ -5445,7 +5697,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5445
5697
|
loadData(data: any, animate?: boolean): this;
|
|
5446
5698
|
/**
|
|
5447
5699
|
* 데이터포인트를 하나 추가한다.<br/>
|
|
5448
|
-
* 데이터포인트 하나를 제거하라면 {@
|
|
5700
|
+
* 데이터포인트 하나를 제거하라면 {@link removePoint}를 사용한다.
|
|
5449
5701
|
*
|
|
5450
5702
|
* @param source 데이터포인트 정보
|
|
5451
5703
|
* @param index 추가 위치. 0보다 적으면 마지막에 추가된다.
|
|
@@ -5455,7 +5707,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5455
5707
|
addPoint(source: any, index?: number, duration?: number): DataPoint;
|
|
5456
5708
|
/**
|
|
5457
5709
|
* 데이터포인트를 하나 이상 추가한다.<br/>
|
|
5458
|
-
* 여러 데이터포인트 한꺼번에 제거하라면 {@
|
|
5710
|
+
* 여러 데이터포인트 한꺼번에 제거하라면 {@link removePointList}를 사용한다.
|
|
5459
5711
|
*
|
|
5460
5712
|
* @param source 데이터포인트 정보 목록
|
|
5461
5713
|
* @param index 추가 위치. 0보다 적으면 마지막에 추가된다.
|
|
@@ -5465,7 +5717,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5465
5717
|
addPointList(source: any[], index?: number, duration?: number): DataPoint[];
|
|
5466
5718
|
/**
|
|
5467
5719
|
* 지정한 데이터포인트를 제거한다.<br/>
|
|
5468
|
-
* 데이터포인트 하나를 추가하라면 {@
|
|
5720
|
+
* 데이터포인트 하나를 추가하라면 {@link addPoint}를 사용한다.
|
|
5469
5721
|
*
|
|
5470
5722
|
* @param p 삭제할 데이터포인트 객체나 인덱스 또는 문자열 id
|
|
5471
5723
|
* @param duration 0보다 크면 삭제 애니메이션 표시
|
|
@@ -5475,7 +5727,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5475
5727
|
private $_remove;
|
|
5476
5728
|
/**
|
|
5477
5729
|
* 복수 개 데이터포인트를 제거한다.<br/>
|
|
5478
|
-
* 데이터포인트를 여러개 동시에 추가하라면 {@
|
|
5730
|
+
* 데이터포인트를 여러개 동시에 추가하라면 {@link addPointList}를 사용한다.
|
|
5479
5731
|
*
|
|
5480
5732
|
* @param p 삭제할 데이터포인트 객체나 인덱스 또는 문자열 id 목록.
|
|
5481
5733
|
* @param duration 0보다 크면 삭제 애니메이션 표시
|
|
@@ -5500,6 +5752,8 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5500
5752
|
canSelect(): boolean;
|
|
5501
5753
|
select(p: ISelectionSource): void;
|
|
5502
5754
|
unselect(p: ISelectionSource): void;
|
|
5755
|
+
selectList(list: ISelectionSource[]): void;
|
|
5756
|
+
unselectList(list: ISelectionSource[]): void;
|
|
5503
5757
|
private $_bringToFront;
|
|
5504
5758
|
/**
|
|
5505
5759
|
* rendering lock.<br/>
|
|
@@ -5508,6 +5762,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5508
5762
|
unlock(): void;
|
|
5509
5763
|
_setLegend(legend: object): void;
|
|
5510
5764
|
protected _doApply(op: OP): void;
|
|
5765
|
+
protected _isPointsDirty(): boolean;
|
|
5511
5766
|
_prepareRender(): void;
|
|
5512
5767
|
protected _doAfterRender(): void;
|
|
5513
5768
|
protected _doMapChanged(): void;
|
|
@@ -5651,9 +5906,9 @@ interface ISelectionSource {
|
|
|
5651
5906
|
setSelected(selected: boolean): void;
|
|
5652
5907
|
}
|
|
5653
5908
|
interface ISelectionOwner {
|
|
5654
|
-
selectionChanged(selection: MapSelection): void;
|
|
5655
|
-
selectionItemAdded(item: ISelectionSource): void;
|
|
5656
|
-
selectionItemRemoved(item: ISelectionSource): void;
|
|
5909
|
+
selectionChanged(selection: MapSelection[]): void;
|
|
5910
|
+
selectionItemAdded(item: ISelectionSource[]): void;
|
|
5911
|
+
selectionItemRemoved(item: ISelectionSource[]): void;
|
|
5657
5912
|
selectionCleared(): void;
|
|
5658
5913
|
}
|
|
5659
5914
|
declare class MapSelection extends RmObject {
|
|
@@ -5666,7 +5921,7 @@ declare class MapSelection extends RmObject {
|
|
|
5666
5921
|
get(index: number): ISelectionSource;
|
|
5667
5922
|
contains(source: ISelectionSource): boolean;
|
|
5668
5923
|
clear(): boolean;
|
|
5669
|
-
add(series: ISeries,
|
|
5924
|
+
add(series: ISeries, _list: ISelectionSource[], clear?: boolean): boolean;
|
|
5670
5925
|
remove(series: ISeries, source: ISelectionSource): boolean;
|
|
5671
5926
|
toggle(series: ISeries, source: ISelectionSource): boolean;
|
|
5672
5927
|
protected _changed(): void;
|
|
@@ -5718,6 +5973,10 @@ declare class DataPoint implements ISelectionSource {
|
|
|
5718
5973
|
private _selected;
|
|
5719
5974
|
_prev: any;
|
|
5720
5975
|
_vr: number;
|
|
5976
|
+
cluster: any;
|
|
5977
|
+
px: number;
|
|
5978
|
+
py: number;
|
|
5979
|
+
moves: number;
|
|
5721
5980
|
constructor(source?: any);
|
|
5722
5981
|
setSelected(selected: boolean): void;
|
|
5723
5982
|
isSelected(): boolean;
|
|
@@ -5818,7 +6077,7 @@ interface GradientOptions extends AssetItemOptions {
|
|
|
5818
6077
|
* 시작점과 끝점 사이에 색상이 서서히 변경되는 효과를 표시한다.<br/>
|
|
5819
6078
|
* 채우기 색이나 선 색으로 사용될 수 있다.
|
|
5820
6079
|
*
|
|
5821
|
-
*
|
|
6080
|
+
*
|
|
5822
6081
|
*/
|
|
5823
6082
|
interface LinearGradientOptions extends GradientOptions {
|
|
5824
6083
|
/**
|
|
@@ -5831,7 +6090,7 @@ interface LinearGradientOptions extends GradientOptions {
|
|
|
5831
6090
|
* 원 중심에서 바깥으로 색상이 변해가는 효과를 표시한다.<br/>
|
|
5832
6091
|
* 채우기 색이나 선 색으로 사용될 수 있다.
|
|
5833
6092
|
*
|
|
5834
|
-
*
|
|
6093
|
+
*
|
|
5835
6094
|
*/
|
|
5836
6095
|
interface RadialGradientOptions extends GradientOptions {
|
|
5837
6096
|
/**
|
|
@@ -5887,10 +6146,10 @@ interface ImageListOptions extends AssetItemOptions {
|
|
|
5887
6146
|
*/
|
|
5888
6147
|
type PaletteMode = 'normal' | 'shuffle' | 'random';
|
|
5889
6148
|
/**
|
|
5890
|
-
* 색상 목록을 미리 지정하고 {@link config
|
|
6149
|
+
* 색상 목록을 미리 지정하고 {@link https://realmap.co.kr/config/config/base/series#pointcolors pointcolors} 등에 적용할 수 있다.<br/>
|
|
5891
6150
|
* 목록에서 색상을 꺼내오는 방식은 {@link mode} 속성으로 지정한다.
|
|
5892
6151
|
*
|
|
5893
|
-
*
|
|
6152
|
+
*
|
|
5894
6153
|
*/
|
|
5895
6154
|
interface ColorListOptions extends AssetItemOptions {
|
|
5896
6155
|
/**
|
|
@@ -5945,12 +6204,12 @@ declare class Credits extends ChartItem<CreditsOptions> {
|
|
|
5945
6204
|
/**
|
|
5946
6205
|
* 컬러, 버블 스케일 등의 스케일 기반 설정.<br/>
|
|
5947
6206
|
*
|
|
5948
|
-
*
|
|
6207
|
+
*
|
|
5949
6208
|
*/
|
|
5950
6209
|
interface ScaleOptions extends MapSimpleWidgetOptions {
|
|
5951
6210
|
/**
|
|
5952
|
-
* {@
|
|
5953
|
-
* 시리즈의 {@
|
|
6211
|
+
* {@link minValue}나 {@link maxValue}를 지정하지 않는 경우 범위 기준값을 계산할
|
|
6212
|
+
* 시리즈의 {@link https://realmap.co.kr/config/config/base/series#name 이름}이나 {@link Series#index}.<br />
|
|
5954
6213
|
* 이 속성을 지정하지 않으면 첫 번째 map 시리즈의 범위를 계산한다.
|
|
5955
6214
|
*/
|
|
5956
6215
|
series?: string | number;
|
|
@@ -6072,12 +6331,12 @@ interface ColorScaleTickOptions extends ChartItemOptions {
|
|
|
6072
6331
|
}
|
|
6073
6332
|
interface ColorScaleStep {
|
|
6074
6333
|
/**
|
|
6075
|
-
* 첫 step인 경우 설정하지 않으면 {@
|
|
6334
|
+
* 첫 step인 경우 설정하지 않으면 {@link steps.minValue minValue}로 지정된다.<br />
|
|
6076
6335
|
* 숫자나 '%'로 끝나는 백분율로 지정할 수 있다.
|
|
6077
6336
|
*/
|
|
6078
6337
|
from?: number | string;
|
|
6079
6338
|
/**
|
|
6080
|
-
* 마지막 step인 경우 설정하지 않으면 {@
|
|
6339
|
+
* 마지막 step인 경우 설정하지 않으면 {@link steps.maxValue maxValue}로 지정된다.<br />
|
|
6081
6340
|
* 숫자나 '%'로 끝나는 백분율로 지정할 수 있다.
|
|
6082
6341
|
*/
|
|
6083
6342
|
to?: number | string;
|
|
@@ -6087,18 +6346,18 @@ interface ColorScaleStep {
|
|
|
6087
6346
|
label?: string;
|
|
6088
6347
|
/**
|
|
6089
6348
|
* 구간 색상.<br/>
|
|
6090
|
-
* {@
|
|
6091
|
-
* '%'로 끝나는 백분율을 지정하면 {@
|
|
6349
|
+
* {@link fromColor}를 지정하면 이 step에 포함된 영역의 값에 따라 두 색상 사이의 중간 색상으로 표시된다.<br/>
|
|
6350
|
+
* '%'로 끝나는 백분율을 지정하면 {@link minColor}와 {@link maxColor} 사이의 중간 색상으로 설정할 수 있다.
|
|
6092
6351
|
*/
|
|
6093
6352
|
color: string;
|
|
6094
6353
|
/**
|
|
6095
|
-
* 이 속성 값이 지정되면 {@
|
|
6096
|
-
* '%'로 끝나는 백분율을 지정하면 {@
|
|
6354
|
+
* 이 속성 값이 지정되면 {@link toColor}나 {@link color} 값 사이의 색상으로 데이터포인트의 색상이 결정된다.<br/>
|
|
6355
|
+
* '%'로 끝나는 백분율을 지정하면 {@link minColor}와 {@link maxColor} 사이의 중간 색상으로 설정할 수 있다.
|
|
6097
6356
|
*/
|
|
6098
6357
|
fromColor?: string;
|
|
6099
6358
|
/**
|
|
6100
|
-
* {@
|
|
6101
|
-
* '%'로 끝나는 백분율을 지정하면 {@
|
|
6359
|
+
* {@link fromColor}가 지정된 경우 이 속성 값이 {@link color}보다 우선적으로 사용된다.
|
|
6360
|
+
* '%'로 끝나는 백분율을 지정하면 {@link minColor}와 {@link maxColor} 사이의 중간 색상으로 설정할 수 있다.
|
|
6102
6361
|
*/
|
|
6103
6362
|
toColor?: string;
|
|
6104
6363
|
}
|
|
@@ -6131,7 +6390,7 @@ interface ColorScaleNullOptions extends ChartItemOptions {
|
|
|
6131
6390
|
/**
|
|
6132
6391
|
* 맵 area 등에 표시되는 색상 범위를 표시한다.<br/>
|
|
6133
6392
|
*
|
|
6134
|
-
*
|
|
6393
|
+
*
|
|
6135
6394
|
*/
|
|
6136
6395
|
interface ColorScaleOptions extends ScaleOptions {
|
|
6137
6396
|
/**
|
|
@@ -6166,30 +6425,30 @@ interface ColorScaleOptions extends ScaleOptions {
|
|
|
6166
6425
|
inverted?: boolean;
|
|
6167
6426
|
/**
|
|
6168
6427
|
* 기준 최소값.<br/>
|
|
6169
|
-
* 이 값을 지정하지 않고 {@
|
|
6428
|
+
* 이 값을 지정하지 않고 {@link series}가 설정되면 그 시리즈의 최소값을 사용한다.<br/>
|
|
6170
6429
|
*/
|
|
6171
6430
|
minValue?: number;
|
|
6172
6431
|
/**
|
|
6173
6432
|
* 기준 최대값.<br/>
|
|
6174
|
-
* 이 값을 지정하지 않고 {@
|
|
6433
|
+
* 이 값을 지정하지 않고 {@link series}가 설정되면 그 시리즈의 최대값을 사용한다.<br/>
|
|
6175
6434
|
*/
|
|
6176
6435
|
maxValue?: number;
|
|
6177
6436
|
/**
|
|
6178
|
-
* {@
|
|
6179
|
-
* {@
|
|
6180
|
-
* {@
|
|
6437
|
+
* {@link minValue}, {@link maxValue}로 지정한 값이나, 계산된 최소/최대 값을 기준으로
|
|
6438
|
+
* {@link stepCount} 속성 등에 따라 정수 배수로 분리한다.<br/>
|
|
6439
|
+
* {@link steps}가 지정되면 이 속성은 무시된다.
|
|
6181
6440
|
*
|
|
6182
6441
|
* @default undefined
|
|
6183
6442
|
*/
|
|
6184
6443
|
integralSteps?: boolean;
|
|
6185
6444
|
/**
|
|
6186
6445
|
* 1 이상 지정한 값으로 scale을 구분해서 표시한다.<br/>
|
|
6187
|
-
* {@
|
|
6446
|
+
* {@link steps}가 지정되면 이 속성은 무시된다.
|
|
6188
6447
|
*/
|
|
6189
6448
|
stepCount?: number;
|
|
6190
6449
|
/**
|
|
6191
6450
|
* 명시적으로 색상 스텝들을 지정한다.<br/>
|
|
6192
|
-
* 이 속성이 지정되면 {@
|
|
6451
|
+
* 이 속성이 지정되면 {@link stepMode}를 포함, step 관련된 속성들이 모두 무시된다.
|
|
6193
6452
|
* 가능한 연속된 값 배치로 지정해야 한다.
|
|
6194
6453
|
* 겹치는 경우 나중에 지정된 step이 우선하고,
|
|
6195
6454
|
* 어느 step에도 포함되지 않는 값일 경우 series 기본 색상이 적용된다.
|
|
@@ -6198,15 +6457,15 @@ interface ColorScaleOptions extends ScaleOptions {
|
|
|
6198
6457
|
/**
|
|
6199
6458
|
* 2 이상의 값으로 지정하면 이 속성값을 base로 하는 log 값을 기준으로 step을 생성한다.<br/>
|
|
6200
6459
|
* step label은 log를 취하지 않은 원 값을 표시한다.
|
|
6201
|
-
* {@
|
|
6460
|
+
* {@link steps}가 지정된 경우 각 step의 from/to 값이 log로 계산된 값으로
|
|
6202
6461
|
*
|
|
6203
6462
|
* @default undefined
|
|
6204
6463
|
*/
|
|
6205
6464
|
logBase?: number;
|
|
6206
6465
|
/**
|
|
6207
6466
|
* 최소값 쪽 color.<br/>
|
|
6208
|
-
* {@
|
|
6209
|
-
* 또, {@
|
|
6467
|
+
* {@link colors}를 지정하면 이 속성은 무시된다.
|
|
6468
|
+
* 또, {@link steps}가 지정되면 각 step에 지정된 색 범위가 우선 적용된다.
|
|
6210
6469
|
* 지정하지 않으면 'white'로 적용된다.
|
|
6211
6470
|
*
|
|
6212
6471
|
* @default '#fff'
|
|
@@ -6214,16 +6473,16 @@ interface ColorScaleOptions extends ScaleOptions {
|
|
|
6214
6473
|
minColor?: string;
|
|
6215
6474
|
/**
|
|
6216
6475
|
* 최대값 쪽 color.<br/>
|
|
6217
|
-
* {@
|
|
6218
|
-
* 또, {@
|
|
6476
|
+
* {@link colors}를 지정하면 이 속성은 무시된다.
|
|
6477
|
+
* 또, {@link steps}가 지정되면 각 step에 지정된 색 범위가 우선 적용된다.
|
|
6219
6478
|
* 지정하지 않으면 'black'로 적용된다.
|
|
6220
6479
|
*/
|
|
6221
6480
|
maxColor?: string;
|
|
6222
6481
|
/**
|
|
6223
6482
|
* @ignore 미구현
|
|
6224
6483
|
* 단계별 색상 분포를 지정한다.<br/>
|
|
6225
|
-
* 둘 이상의 색상으로 이 속성이 지정되면 {@
|
|
6226
|
-
* 또, {@
|
|
6484
|
+
* 둘 이상의 색상으로 이 속성이 지정되면 {@link minColor}, {@link maxColor} 속성은 무시된다.
|
|
6485
|
+
* 또, {@link steps}가 지정되면 각 step에 지정된 색 범위가 우선 적용된다.
|
|
6227
6486
|
*/
|
|
6228
6487
|
colors?: ColorStop[];
|
|
6229
6488
|
/**
|
|
@@ -6254,7 +6513,7 @@ interface ColorScaleOptions extends ScaleOptions {
|
|
|
6254
6513
|
interface BubbleScaleTickLineOptions extends ChartItemOptions {
|
|
6255
6514
|
/**
|
|
6256
6515
|
* 가장 큰 원에서 tick label 표시까지의 간격.<br/>
|
|
6257
|
-
* {@
|
|
6516
|
+
* {@link visible}이 false이면 무시된다.
|
|
6258
6517
|
*
|
|
6259
6518
|
* @default 10
|
|
6260
6519
|
*/
|
|
@@ -6286,7 +6545,7 @@ interface BubbleScaleStep {
|
|
|
6286
6545
|
* 버블,파이 시리즈의 데이터포인트 값에 따라 설정되는
|
|
6287
6546
|
* 원 크기를 몇 단계로 나누어 원 크기와 값 사이의 관계를 개략적으로 표시한다.<br/>
|
|
6288
6547
|
|
|
6289
|
-
*
|
|
6548
|
+
*
|
|
6290
6549
|
*/
|
|
6291
6550
|
interface BubbleScaleOptions extends ScaleOptions {
|
|
6292
6551
|
tick?: BubbleScaleTickOptions;
|
|
@@ -6318,6 +6577,9 @@ interface MapScaleOptions extends ScaleOptions {
|
|
|
6318
6577
|
label?: MapScaleLabelOptions;
|
|
6319
6578
|
}
|
|
6320
6579
|
|
|
6580
|
+
/**
|
|
6581
|
+
* 경위도선에 대한 옵션
|
|
6582
|
+
*/
|
|
6321
6583
|
interface MapAxisGridLineOptions extends ChartItemOptions {
|
|
6322
6584
|
/**
|
|
6323
6585
|
* 경위도 선의 간격을 도(°) 단위로 지정한다.<br/>
|
|
@@ -6336,6 +6598,9 @@ declare const _MapAxisGridFitTo: {
|
|
|
6336
6598
|
readonly Body: "body";
|
|
6337
6599
|
};
|
|
6338
6600
|
type MapAxisGridFitTo = typeof _MapAxisGridFitTo[keyof typeof _MapAxisGridFitTo];
|
|
6601
|
+
/**
|
|
6602
|
+
* 경위도선 표시 설정.<br/>
|
|
6603
|
+
*/
|
|
6339
6604
|
interface MapAxisGridOptions extends ChartItemOptions {
|
|
6340
6605
|
/**
|
|
6341
6606
|
* @default false
|
|
@@ -6347,15 +6612,15 @@ interface MapAxisGridOptions extends ChartItemOptions {
|
|
|
6347
6612
|
*/
|
|
6348
6613
|
fitTo?: MapAxisGridFitTo;
|
|
6349
6614
|
/**
|
|
6350
|
-
* 숫자로 지정하면 {@
|
|
6615
|
+
* 숫자로 지정하면 {@link https://realmap.co.kr/config/config/axis/grid/line#step step}으로 설정된다.<br/>
|
|
6351
6616
|
*/
|
|
6352
6617
|
line?: MapAxisGridLineOptions | number;
|
|
6353
6618
|
/**
|
|
6354
|
-
* 숫자로 지정하면 {@
|
|
6619
|
+
* 숫자로 지정하면 {@link https://realmap.co.kr/config/config/axis/grid/line#step step}으로 설정된다.<br/>
|
|
6355
6620
|
*/
|
|
6356
6621
|
lonLine?: MapAxisGridLineOptions | number;
|
|
6357
6622
|
/**
|
|
6358
|
-
* 숫자로 지정하면 {@
|
|
6623
|
+
* 숫자로 지정하면 {@link https://realmap.co.kr/config/config/axis/grid/line#step step}으로 설정된다.<br/>
|
|
6359
6624
|
*/
|
|
6360
6625
|
latLine?: MapAxisGridLineOptions | number;
|
|
6361
6626
|
}
|
|
@@ -6379,7 +6644,7 @@ interface MapAxisTickLabelOptions extends ChartTextOptions {
|
|
|
6379
6644
|
*/
|
|
6380
6645
|
dirSymbols?: string;
|
|
6381
6646
|
/**
|
|
6382
|
-
* '°°'로 지정하면 두 번째 자리에 방위에 해당하는 {@
|
|
6647
|
+
* '°°'로 지정하면 두 번째 자리에 방위에 해당하는 {@link position} 문자 표시.
|
|
6383
6648
|
*
|
|
6384
6649
|
* @default '°°'
|
|
6385
6650
|
*/
|
|
@@ -6406,19 +6671,19 @@ interface MapAxisTickOptions extends ChartItemOptions {
|
|
|
6406
6671
|
positions?: Positions[];
|
|
6407
6672
|
/**
|
|
6408
6673
|
* 위경도 그리드 선 배치를 기준으로 tick 라인과 라벨을 표시하는 간격.<br/>
|
|
6409
|
-
* {@
|
|
6674
|
+
* {@link latInterval}, {@link lonInterval}로 위경도 간격을 별도로 지정할 수도 있다.
|
|
6410
6675
|
*
|
|
6411
6676
|
* @default 1
|
|
6412
6677
|
*/
|
|
6413
6678
|
interval?: number;
|
|
6414
6679
|
/**
|
|
6415
6680
|
* 경도 그리드 선 배치를 기준으로 tick 라인과 라벨을 표시하는 간격.<br/>
|
|
6416
|
-
* {@
|
|
6681
|
+
* {@link interval}로 지정한 값보다 우선한다.
|
|
6417
6682
|
*/
|
|
6418
6683
|
lonInterval?: number;
|
|
6419
6684
|
/**
|
|
6420
6685
|
* 위도 그리드 선 배치를 기준으로 tick 라인과 라벨을 표시하는 간격.<br/>
|
|
6421
|
-
* {@
|
|
6686
|
+
* {@link interval}로 지정한 값보다 우선한다.
|
|
6422
6687
|
*/
|
|
6423
6688
|
latInterval?: number;
|
|
6424
6689
|
}
|
|
@@ -6480,7 +6745,7 @@ interface MapAxisGuideOptions extends ChartItemOptions {
|
|
|
6480
6745
|
/**
|
|
6481
6746
|
* 가이드 종류.<br/>
|
|
6482
6747
|
* //이 속성을 지정하지 않은 경우,
|
|
6483
|
-
* //{@
|
|
6748
|
+
* //{@link https://realmap.co.kr/config/config/base/axis/guide guide}
|
|
6484
6749
|
*/
|
|
6485
6750
|
type?: MapAxisGuideType;
|
|
6486
6751
|
/**
|
|
@@ -6584,49 +6849,49 @@ interface MapCrosshairOptions extends ChartItemOptions {
|
|
|
6584
6849
|
onChange?: CrosshairChangeCallback;
|
|
6585
6850
|
}
|
|
6586
6851
|
/**
|
|
6587
|
-
*
|
|
6852
|
+
*
|
|
6588
6853
|
*/
|
|
6589
6854
|
interface MapAxisOptions extends ChartItemOptions {
|
|
6590
6855
|
/**
|
|
6591
6856
|
* 축 line 기본 설정 옵션.<br/>
|
|
6592
6857
|
*/
|
|
6593
|
-
line?: MapAxisLineOptions;
|
|
6858
|
+
line?: MapAxisLineOptions | boolean;
|
|
6594
6859
|
/**
|
|
6595
6860
|
* Orthographic 투영에서는 표시되지 않는다.
|
|
6596
6861
|
*/
|
|
6597
|
-
leftLine?: MapAxisLineOptions;
|
|
6862
|
+
leftLine?: MapAxisLineOptions | boolean;
|
|
6598
6863
|
/**
|
|
6599
6864
|
* Orthographic 투영에서는 표시되지 않는다.
|
|
6600
6865
|
*/
|
|
6601
|
-
rightLine?: MapAxisLineOptions;
|
|
6866
|
+
rightLine?: MapAxisLineOptions | boolean;
|
|
6602
6867
|
/**
|
|
6603
6868
|
* Orthographic 투영에서는 표시되지 않는다.
|
|
6604
6869
|
*/
|
|
6605
|
-
topLine?: MapAxisLineOptions;
|
|
6870
|
+
topLine?: MapAxisLineOptions | boolean;
|
|
6606
6871
|
/**
|
|
6607
6872
|
* Orthographic 투영에서는 표시되지 않는다.
|
|
6608
6873
|
*/
|
|
6609
|
-
bottomLine?: MapAxisLineOptions;
|
|
6874
|
+
bottomLine?: MapAxisLineOptions | boolean;
|
|
6610
6875
|
/**
|
|
6611
6876
|
* 적도선 설정.<br/>
|
|
6612
6877
|
*/
|
|
6613
|
-
equatorLine?: MapAxisLineOptions;
|
|
6878
|
+
equatorLine?: MapAxisLineOptions | boolean;
|
|
6614
6879
|
/**
|
|
6615
6880
|
* 본초자오선(prime meridian) 설정.<br/>
|
|
6616
6881
|
*/
|
|
6617
|
-
meridianLine?: MapAxisLineOptions;
|
|
6882
|
+
meridianLine?: MapAxisLineOptions | boolean;
|
|
6618
6883
|
/**
|
|
6619
|
-
*
|
|
6884
|
+
* 경위도선 표시 설정.<br/>
|
|
6620
6885
|
*/
|
|
6621
6886
|
grid?: MapAxisGridOptions | boolean;
|
|
6622
6887
|
/**
|
|
6623
|
-
*
|
|
6888
|
+
* 경위도선 좌표 표서 설정.<br/>
|
|
6624
6889
|
*/
|
|
6625
6890
|
tick?: MapAxisTickOptions | boolean;
|
|
6626
6891
|
/**
|
|
6627
6892
|
* 마우스 현재 위치를 표시하는 crosshair 설정.<br/>
|
|
6628
6893
|
*/
|
|
6629
|
-
crosshair?: MapCrosshairOptions;
|
|
6894
|
+
crosshair?: MapCrosshairOptions | boolean;
|
|
6630
6895
|
/**
|
|
6631
6896
|
* 축 가이드 목록.<br/>
|
|
6632
6897
|
* 하나만 지정할 때는 배열로 지정하지 않아도 된다.
|
|
@@ -6672,11 +6937,11 @@ interface MapRegionOptions extends PositionableItemOptions {
|
|
|
6672
6937
|
*/
|
|
6673
6938
|
target?: MapRegionTargetOptions;
|
|
6674
6939
|
/**
|
|
6675
|
-
* {@
|
|
6940
|
+
* {@link target}과의 연결 표시 옵션.<br/>
|
|
6676
6941
|
*/
|
|
6677
6942
|
connector?: MapRegionConnectorOptions;
|
|
6678
6943
|
/**
|
|
6679
|
-
* 이 맵리전에 표시될 {@
|
|
6944
|
+
* 이 맵리전에 표시될 {@link series}로 지정한 맵시리즈의 일부 영역을 지정한다.<br/>
|
|
6680
6945
|
*/
|
|
6681
6946
|
bounds?: [MapCoord, MapCoord];
|
|
6682
6947
|
/**
|
|
@@ -6692,7 +6957,7 @@ interface MapRegionOptions extends PositionableItemOptions {
|
|
|
6692
6957
|
}
|
|
6693
6958
|
|
|
6694
6959
|
/**
|
|
6695
|
-
*
|
|
6960
|
+
*
|
|
6696
6961
|
*/
|
|
6697
6962
|
interface MapSourceOptions extends MapSource {
|
|
6698
6963
|
}
|
|
@@ -6707,7 +6972,7 @@ interface MapSourceOptions extends MapSource {
|
|
|
6707
6972
|
* });
|
|
6708
6973
|
* ```
|
|
6709
6974
|
*
|
|
6710
|
-
* {@
|
|
6975
|
+
* {@link https://www.typescriptlang.org/ typescript} 환경에서는 타입을 명시적으로 지정하여
|
|
6711
6976
|
* 개발 편집기의 typescript 지원을 받을 수 있으므로
|
|
6712
6977
|
* 설정 객체를 별도로 정의할 수 있다.
|
|
6713
6978
|
*
|
|
@@ -6718,12 +6983,12 @@ interface MapSourceOptions extends MapSource {
|
|
|
6718
6983
|
* const chart = RealMap.createChart(doc, 'div', config);
|
|
6719
6984
|
* ```
|
|
6720
6985
|
*
|
|
6721
|
-
*
|
|
6986
|
+
*
|
|
6722
6987
|
*/
|
|
6723
6988
|
interface ChartConfiguration {
|
|
6724
6989
|
templates?: ConfigObject;
|
|
6725
6990
|
/**
|
|
6726
|
-
* 기본 {@
|
|
6991
|
+
* 기본 {@link https://realmap.co.kr/guide/series 시리즈} type.<br/>
|
|
6727
6992
|
* 시리즈에 type을 지정하지 않으면 이 값으로 지정된 type의 시리즈가 생성된다.
|
|
6728
6993
|
*
|
|
6729
6994
|
* @default 'map'
|
|
@@ -6740,21 +7005,21 @@ interface ChartConfiguration {
|
|
|
6740
7005
|
/**
|
|
6741
7006
|
* 맵차트 영역 전체에 연관되는 속성들을 설정한다.<br/>
|
|
6742
7007
|
*/
|
|
6743
|
-
chart?:
|
|
7008
|
+
chart?: ChartGlobalOptions;
|
|
6744
7009
|
/**
|
|
6745
7010
|
* Asset 목록.<br/>
|
|
6746
7011
|
*/
|
|
6747
7012
|
asset?: AssetOptionsType | AssetOptionsType[];
|
|
6748
7013
|
/**
|
|
6749
|
-
* {@
|
|
7014
|
+
* {@link asset}과 동일하고, 이 항목이 우선한다.<br/>
|
|
6750
7015
|
*/
|
|
6751
7016
|
assets?: AssetOptionsType | AssetOptionsType[];
|
|
6752
7017
|
/**
|
|
6753
|
-
* {@
|
|
7018
|
+
* {@link https://realmap.co.kr/guide/title 맵차트 타이틀} 표시 영역.<br/>
|
|
6754
7019
|
*/
|
|
6755
7020
|
title?: TitleOptions | string;
|
|
6756
7021
|
/**
|
|
6757
|
-
* {@
|
|
7022
|
+
* {@link https://realmap.co.kr/guide/title 맵차트 타이틀} 주변에 추가롤 표시되는 부제목 영역.<br/>
|
|
6758
7023
|
*/
|
|
6759
7024
|
subtitle?: SubtitleOptions | string;
|
|
6760
7025
|
/**
|
|
@@ -6763,7 +7028,7 @@ interface ChartConfiguration {
|
|
|
6763
7028
|
*/
|
|
6764
7029
|
map?: MapSourceOptions | MapSourceOptions[];
|
|
6765
7030
|
/**
|
|
6766
|
-
* {@
|
|
7031
|
+
* {@link https://realmap.co.kr/guide/axis 축} 관련 설정.<br/>
|
|
6767
7032
|
*/
|
|
6768
7033
|
axis?: MapAxisOptions;
|
|
6769
7034
|
/**
|
|
@@ -6775,65 +7040,65 @@ interface ChartConfiguration {
|
|
|
6775
7040
|
*/
|
|
6776
7041
|
widgetGroup?: MapWidgetGroupOptions | MapWidgetGroupOptions[];
|
|
6777
7042
|
/**
|
|
6778
|
-
* 시리즈 구성을 직관적으로 이해할 수 있도록 도와주는 {@
|
|
7043
|
+
* 시리즈 구성을 직관적으로 이해할 수 있도록 도와주는 {@link https://realmap.co.kr/guide/legend 범례}.<br/>
|
|
6779
7044
|
*/
|
|
6780
7045
|
legend?: LegendOptions | LegendOptions[] | boolean;
|
|
6781
7046
|
/**
|
|
6782
|
-
* {@
|
|
7047
|
+
* {@link https://realmap.co.kr/guide/colorscale 색상자}를 하나 이상 설정한다.
|
|
6783
7048
|
*/
|
|
6784
7049
|
colorScale?: ColorScaleOptions | ColorScaleOptions[];
|
|
6785
7050
|
/**
|
|
6786
7051
|
* @ignore
|
|
6787
|
-
* {@
|
|
7052
|
+
* {@link colorScale}과 동일하고, 이 속성이 우선한다.<br/>
|
|
6788
7053
|
*/
|
|
6789
7054
|
colorScales?: ColorScaleOptions | ColorScaleOptions[];
|
|
6790
7055
|
/**
|
|
6791
|
-
* {@
|
|
7056
|
+
* {@link https://realmap.co.kr/guide/bubblescale 색상자}를 하나 이상 설정한다.
|
|
6792
7057
|
*/
|
|
6793
7058
|
bubbleScale?: BubbleScaleOptions | BubbleScaleOptions[];
|
|
6794
7059
|
/**
|
|
6795
7060
|
* @ignore
|
|
6796
|
-
* {@
|
|
7061
|
+
* {@link bubbleScale}과 동일하고, 이 속성이 우선한다.<br/>
|
|
6797
7062
|
*/
|
|
6798
7063
|
bubbleScales?: BubbleScaleOptions | BubbleScaleOptions[];
|
|
6799
7064
|
mapScale?: MapScale;
|
|
6800
7065
|
/**
|
|
6801
|
-
* 맵차트가 {@
|
|
7066
|
+
* 맵차트가 {@link https://realmap.co.kr/guide/zoom zoom} 가능할 때 zomm 버튼들이 표시되는 패널.<br/>
|
|
6802
7067
|
*/
|
|
6803
7068
|
zoomPanel?: ZoomPanelOptions | boolean;
|
|
6804
7069
|
/**
|
|
6805
|
-
* 맵차트가 {@
|
|
7070
|
+
* 맵차트가 {@link https://realmap.co.kr/guide/drilldown 드릴다운} 상태일 때 뒤로 가기 버튼(들)이 표시되는 패널.<br/>
|
|
6806
7071
|
*/
|
|
6807
7072
|
drilldownPanel?: DrilldownPanelOptions | boolean;
|
|
6808
7073
|
/**
|
|
6809
|
-
* 데이터포인트 뷰에 마우스 올라갈 때 표시되는 {@
|
|
7074
|
+
* 데이터포인트 뷰에 마우스 올라갈 때 표시되는 {@link https://realmap.co.kr/guide/tooltip 툴팁} 상자.<br/>
|
|
6810
7075
|
*/
|
|
6811
7076
|
tooltip?: TooltipOptions | boolean;
|
|
6812
7077
|
/**
|
|
6813
|
-
* 지도나 데이터 원작자 정보 등을 표시하는 {@
|
|
7078
|
+
* 지도나 데이터 원작자 정보 등을 표시하는 {@link https://realmap.co.kr/guide/credits 서명} 영역.<br/>
|
|
6814
7079
|
*/
|
|
6815
7080
|
credits?: CreditsOptions | boolean;
|
|
6816
7081
|
/**
|
|
6817
|
-
* {@
|
|
7082
|
+
* {@link https://realmap.co.kr/guide/series 시리즈}나 {@link https://realmap.co.kr/guide/gauge 게이지}들을 하나 이상 설정한다.
|
|
6818
7083
|
*/
|
|
6819
7084
|
series?: SeriesOptionsType | SeriesOptionsType[];
|
|
6820
7085
|
/**
|
|
6821
|
-
* {@
|
|
7086
|
+
* {@link https://realmap.co.kr/guide/annotations 어노테이션} 또는 어노테이션 목록.<br/>
|
|
6822
7087
|
* 이 항목이 지정되지 않고 'annotations'가 지정되면 그 항목에 지정된 설정들로 부터 어노테이션들을 생성한다.
|
|
6823
7088
|
*/
|
|
6824
7089
|
annotation?: AnnotationOptionsType | AnnotationOptionsType[];
|
|
6825
7090
|
/**
|
|
6826
7091
|
* @ignore
|
|
6827
|
-
* {@
|
|
7092
|
+
* {@link annotation}과 동일하고, 이 속성이 우선한다.<br/>
|
|
6828
7093
|
*/
|
|
6829
7094
|
annotations?: AnnotationOptionsType | AnnotationOptionsType[];
|
|
6830
7095
|
/**
|
|
6831
|
-
* {@
|
|
7096
|
+
* {@link https://realmap.co.kr/guide/mapregion 멥리젼} 또는 맵리젼 목록.<br/>
|
|
6832
7097
|
*/
|
|
6833
7098
|
mapRegion?: MapRegionOptions | MapRegionOptions[];
|
|
6834
7099
|
/**
|
|
6835
7100
|
* @ignore
|
|
6836
|
-
* {@
|
|
7101
|
+
* {@link mapRegion}과 동일하고, 이 속성이 우선한다.<br/>
|
|
6837
7102
|
*/
|
|
6838
7103
|
mapRegions?: MapRegionOptions | MapRegionOptions[];
|
|
6839
7104
|
/**
|
|
@@ -6890,7 +7155,7 @@ interface IColorRanger {
|
|
|
6890
7155
|
getColor(min: number, max: number, value: number, color: Color): string;
|
|
6891
7156
|
}
|
|
6892
7157
|
/**
|
|
6893
|
-
* @
|
|
7158
|
+
* @private
|
|
6894
7159
|
*/
|
|
6895
7160
|
declare class ColorRanger implements IColorRanger {
|
|
6896
7161
|
private _color1;
|
|
@@ -7007,14 +7272,14 @@ declare class Exporter extends ChartItem<ExporterOptions> {
|
|
|
7007
7272
|
}
|
|
7008
7273
|
|
|
7009
7274
|
/**
|
|
7010
|
-
* @
|
|
7275
|
+
* @private
|
|
7011
7276
|
*/
|
|
7012
7277
|
declare class MapAxisGridLine extends ChartItem<MapAxisGridLineOptions> {
|
|
7013
7278
|
static defaults: MapAxisGridLineOptions;
|
|
7014
7279
|
protected _doSetSimple(op: MapAxisGridLineOptions, src: any): boolean;
|
|
7015
7280
|
}
|
|
7016
7281
|
/**
|
|
7017
|
-
*
|
|
7282
|
+
*
|
|
7018
7283
|
*/
|
|
7019
7284
|
declare class MapAxisGrid extends ChartItem<MapAxisGridOptions> {
|
|
7020
7285
|
static defaults: MapAxisGridOptions;
|
|
@@ -7030,11 +7295,10 @@ declare class MapAxisGrid extends ChartItem<MapAxisGridOptions> {
|
|
|
7030
7295
|
getLonStep(): number;
|
|
7031
7296
|
getLatStep(): number;
|
|
7032
7297
|
protected _doApply(options: MapAxisGridOptions): void;
|
|
7033
|
-
protected _doPrepareRender(chart: IChart, op: MapAxisOptions): void;
|
|
7034
7298
|
private $_defaultStep;
|
|
7035
7299
|
}
|
|
7036
7300
|
/**
|
|
7037
|
-
* @
|
|
7301
|
+
* @private
|
|
7038
7302
|
*/
|
|
7039
7303
|
declare class MapAxisLine extends ChartItem<MapAxisLineOptions> {
|
|
7040
7304
|
static defaults: MapAxisLineOptions;
|
|
@@ -7073,7 +7337,7 @@ declare class MapAxisTick extends ChartItem<MapAxisTickOptions> {
|
|
|
7073
7337
|
}
|
|
7074
7338
|
/**
|
|
7075
7339
|
* 가이드 label 설정 모델.<br/>
|
|
7076
|
-
* {@
|
|
7340
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/MapAxisGuideLabelOptions MapAxisGuideLabelOptions}이다.
|
|
7077
7341
|
*/
|
|
7078
7342
|
declare class MapAxisGuideLabel extends IconedText<MapAxisGuideLabelOptions> {
|
|
7079
7343
|
static defaults: MapAxisGuideLabelOptions;
|
|
@@ -7082,7 +7346,7 @@ declare class MapAxisGuideLabel extends IconedText<MapAxisGuideLabelOptions> {
|
|
|
7082
7346
|
/**
|
|
7083
7347
|
* 축 가이드 설정 기반 모델.<br/>
|
|
7084
7348
|
*
|
|
7085
|
-
* {@
|
|
7349
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/AxisGuideOptions AxisGuideOptions}이다.
|
|
7086
7350
|
*/
|
|
7087
7351
|
declare abstract class MapAxisGuide<OP extends MapAxisGuideOptions = MapAxisGuideOptions> extends ChartItem<OP> {
|
|
7088
7352
|
static defaults: MapAxisGuideOptions;
|
|
@@ -7095,21 +7359,21 @@ declare abstract class MapAxisGuide<OP extends MapAxisGuideOptions = MapAxisGuid
|
|
|
7095
7359
|
}
|
|
7096
7360
|
/**
|
|
7097
7361
|
* 축 위의 특정한 값에 수평 혹은 수직 선분을 표시한다.<br/>
|
|
7098
|
-
* {@
|
|
7362
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/MapAxisLineGuideOptions MapAxisLineGuideOptions}이다.
|
|
7099
7363
|
*/
|
|
7100
7364
|
declare class MapAxisLineGuide extends MapAxisGuide<MapAxisLineGuideOptions> {
|
|
7101
7365
|
static defaults: MapAxisLineGuideOptions;
|
|
7102
7366
|
}
|
|
7103
7367
|
/**
|
|
7104
7368
|
* 특정 범위를 수평 혹은 수직 밴드 영역으로 표시한다.<br/>
|
|
7105
|
-
* {@
|
|
7369
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/MapAxisBandGuideOptions MapAxisBandGuideOptions}이다.
|
|
7106
7370
|
*/
|
|
7107
7371
|
declare class MapAxisBandGuide extends MapAxisGuide<MapAxisBandGuideOptions> {
|
|
7108
7372
|
static defaults: MapAxisBandGuideOptions;
|
|
7109
7373
|
}
|
|
7110
7374
|
/**
|
|
7111
7375
|
* 특정 영역 두 값 사이의 영역을 구분 표시한다.<br/>
|
|
7112
|
-
* {@
|
|
7376
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/MapAxisBandGuideOptions MapAxisBandGuideOptions}이다.
|
|
7113
7377
|
*/
|
|
7114
7378
|
declare class MapAxisRangeGuide extends MapAxisGuide<MapAxisRangeGuideOptions> {
|
|
7115
7379
|
static defaults: MapAxisRangeGuideOptions;
|
|
@@ -7135,7 +7399,7 @@ declare class MapCrosshair extends ChartItem<MapCrosshairOptions> {
|
|
|
7135
7399
|
*/
|
|
7136
7400
|
get flag(): CrosshairFlag;
|
|
7137
7401
|
getFlag(pos: number): string;
|
|
7138
|
-
moved(pos: IPoint, flag: string, points: DataPoint[]): void;
|
|
7402
|
+
moved(pos: IPoint$1, flag: string, points: DataPoint[]): void;
|
|
7139
7403
|
protected _doSetSimple(op: MapCrosshairOptions, source: any): boolean;
|
|
7140
7404
|
}
|
|
7141
7405
|
declare class MapAxis extends ChartItem<MapAxisOptions> {
|
|
@@ -7193,9 +7457,9 @@ declare class DrilldownPanel extends BodyPanel<DrilldownPanelOptions> {
|
|
|
7193
7457
|
/**
|
|
7194
7458
|
* 맵차트 제목(title) 설정 모델.<br/>
|
|
7195
7459
|
* 기본적으로 맵차트 중앙 상단에 표시되지만 {@link align}, {@link verticalAlign} 등으로 위치를 변경할 수 있다.<br/>
|
|
7196
|
-
* {@link guide
|
|
7460
|
+
* {@link https://realmap.co.kr/guide/title 타이틀 개요} 페이지를 참조한다.
|
|
7197
7461
|
*
|
|
7198
|
-
*
|
|
7462
|
+
*
|
|
7199
7463
|
*/
|
|
7200
7464
|
declare class Title<OP extends TitleOptions = TitleOptions> extends ChartItem<OP> {
|
|
7201
7465
|
static defaults: TitleOptions;
|
|
@@ -7205,9 +7469,9 @@ declare class Title<OP extends TitleOptions = TitleOptions> extends ChartItem<OP
|
|
|
7205
7469
|
/**
|
|
7206
7470
|
* 맵차트 부제목(subtitle) 설정 모델.<br/>
|
|
7207
7471
|
* 기본적으로 주 제목(title)의 설정을 따르고, 몇가지 속성들이 추가된다.<br/>
|
|
7208
|
-
* {@link guide
|
|
7472
|
+
* {@link https://realmap.co.kr/guide/subtitle 부제목 개요} 페이지를 참조한다.
|
|
7209
7473
|
*
|
|
7210
|
-
*
|
|
7474
|
+
*
|
|
7211
7475
|
*/
|
|
7212
7476
|
declare class Subtitle extends Title<SubtitleOptions> {
|
|
7213
7477
|
static defaults: SubtitleOptions;
|
|
@@ -7252,8 +7516,8 @@ declare class InsetLabel extends IconedText<InsetLabelOptions> {
|
|
|
7252
7516
|
}
|
|
7253
7517
|
/**
|
|
7254
7518
|
* Map 시리즈 모델.<br/>
|
|
7255
|
-
* {@
|
|
7256
|
-
* {@
|
|
7519
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/map map}이고,
|
|
7520
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/MapSeriesOptions MapSeriesOptions}이다.
|
|
7257
7521
|
*/
|
|
7258
7522
|
declare class MapSeries extends ValueSeries<MapSeriesOptions> {
|
|
7259
7523
|
static type: string;
|
|
@@ -7319,6 +7583,7 @@ declare class MapSeries extends ValueSeries<MapSeriesOptions> {
|
|
|
7319
7583
|
getColorScale(): string | number;
|
|
7320
7584
|
canSelect(): boolean;
|
|
7321
7585
|
select(p: ISelectionSource): void;
|
|
7586
|
+
selectList(list: ISelectionSource[]): void;
|
|
7322
7587
|
private $_loadBorders;
|
|
7323
7588
|
}
|
|
7324
7589
|
|
|
@@ -7328,8 +7593,8 @@ declare class MapRegionConnector extends ChartItem<MapRegionConnectorOptions> {
|
|
|
7328
7593
|
}
|
|
7329
7594
|
/**
|
|
7330
7595
|
* 맵리젼 모델.<br/>
|
|
7331
|
-
* {@
|
|
7332
|
-
* {@
|
|
7596
|
+
* {@link options 옵션} 모델은 {@link https://realmap.co.kr/docs/api/options/MapRegionOptions MapRegionOptions}이고,
|
|
7597
|
+
* {@link https://realmap.co.kr/config 맵차트 설정}에서 {@link https://realmap.co.kr/config/config/mapregion mapRegion} 항목으로 설정한다.
|
|
7333
7598
|
* ```js
|
|
7334
7599
|
* const config = {
|
|
7335
7600
|
* mapRegion: [{
|
|
@@ -7338,13 +7603,13 @@ declare class MapRegionConnector extends ChartItem<MapRegionConnectorOptions> {
|
|
|
7338
7603
|
* }],
|
|
7339
7604
|
* };
|
|
7340
7605
|
* ```
|
|
7341
|
-
* 또, Chart.{@
|
|
7606
|
+
* 또, Chart.{@link https://realmap.co.kr/docs/api/classes/Chart#getmapregion getMapRegion}으로
|
|
7342
7607
|
* 모델 객체를 가져올 수 있다.
|
|
7343
7608
|
* ```js
|
|
7344
7609
|
* const region = chart.getMapRegion('region1');
|
|
7345
7610
|
* region.visible = false;
|
|
7346
7611
|
* ```
|
|
7347
|
-
* {@
|
|
7612
|
+
* {@link https://realmap.co.kr/guide/mapregions MapRegion 개요} 페이지를 참조한다.
|
|
7348
7613
|
*
|
|
7349
7614
|
*/
|
|
7350
7615
|
declare class MapRegion extends PositioanbleItem<MapRegionOptions> {
|
|
@@ -7378,7 +7643,7 @@ declare class MapRegion extends PositioanbleItem<MapRegionOptions> {
|
|
|
7378
7643
|
private $_prepareLayout;
|
|
7379
7644
|
}
|
|
7380
7645
|
/**
|
|
7381
|
-
* @
|
|
7646
|
+
* @private
|
|
7382
7647
|
*/
|
|
7383
7648
|
declare class MapRegionCollection extends PositionalItemCollection<MapRegion> {
|
|
7384
7649
|
getRegion(name: string): MapRegion;
|
|
@@ -7398,7 +7663,7 @@ interface IBodyTransform {
|
|
|
7398
7663
|
}
|
|
7399
7664
|
/**
|
|
7400
7665
|
* 시리즈, annotation, axis grid 및 guide 등이 표시되는 맵차트 주 영역 모델.<br/>
|
|
7401
|
-
* {@
|
|
7666
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/BodyOptions BodyOptions}이다.
|
|
7402
7667
|
*/
|
|
7403
7668
|
declare class Body extends ChartItem<BodyOptions> implements IAnnotationOwner {
|
|
7404
7669
|
static defaults: BodyOptions;
|
|
@@ -7546,15 +7811,15 @@ interface IMapChartEvents {
|
|
|
7546
7811
|
onDataChanged(chart: ChartObject, series: Series): void;
|
|
7547
7812
|
onMapChanged(chart: ChartObject, map: MapModel): void;
|
|
7548
7813
|
onProjectionChanged(chart: ChartObject, projection: MapProjection): void;
|
|
7549
|
-
onZoomChanged(chart: ChartObject, oldZoom: number): void;
|
|
7814
|
+
onZoomChanged(chart: ChartObject, zoom: number, oldZoom: number): void;
|
|
7550
7815
|
onRequestRender(chart: ChartObject, now: boolean): void;
|
|
7551
7816
|
onRequestShowSeries(chart: ChartObject, series: Series, visible: boolean): void;
|
|
7552
7817
|
}
|
|
7553
|
-
declare class
|
|
7554
|
-
static defaults:
|
|
7818
|
+
declare class ChartGlobal extends ChartItem<ChartGlobalOptions> {
|
|
7819
|
+
static defaults: ChartGlobalOptions;
|
|
7555
7820
|
protected _widgetGaps: Sides;
|
|
7556
7821
|
getWidgetSectionGap(loc: ChartItemLocation): any;
|
|
7557
|
-
protected _doApply(options:
|
|
7822
|
+
protected _doApply(options: ChartGlobalOptions): void;
|
|
7558
7823
|
}
|
|
7559
7824
|
/**
|
|
7560
7825
|
* @ignore
|
|
@@ -7565,13 +7830,13 @@ declare class ChartOptions extends ChartItem<ChartOptionsOptions> {
|
|
|
7565
7830
|
declare class ChartObject extends RmEventProvider<IMapChartEvents> implements IChart, IMapOwner, IAnnotationOwner, ITooltipOwner, ISelectionOwner {
|
|
7566
7831
|
private static defaults;
|
|
7567
7832
|
_wrapper: any;
|
|
7568
|
-
|
|
7833
|
+
_op: ChartConfiguration;
|
|
7569
7834
|
private _bases;
|
|
7570
7835
|
_templates: {
|
|
7571
7836
|
[key: string]: any;
|
|
7572
7837
|
};
|
|
7573
7838
|
_assets: AssetCollection;
|
|
7574
|
-
private
|
|
7839
|
+
private _global;
|
|
7575
7840
|
private _axis;
|
|
7576
7841
|
private _body;
|
|
7577
7842
|
_title: Title;
|
|
@@ -7609,6 +7874,8 @@ declare class ChartObject extends RmEventProvider<IMapChartEvents> implements IC
|
|
|
7609
7874
|
constructor(config?: ChartConfiguration, wrapper?: any);
|
|
7610
7875
|
private _initOptions;
|
|
7611
7876
|
get wrapper(): any;
|
|
7877
|
+
get options(): ChartConfiguration;
|
|
7878
|
+
get global(): ChartGlobal;
|
|
7612
7879
|
get isGlobe(): boolean;
|
|
7613
7880
|
get selection(): MapSelection;
|
|
7614
7881
|
getFirstSeries(type: string): Series;
|
|
@@ -7620,21 +7887,20 @@ declare class ChartObject extends RmEventProvider<IMapChartEvents> implements IC
|
|
|
7620
7887
|
animatable(): boolean;
|
|
7621
7888
|
loadAnimatable(): boolean;
|
|
7622
7889
|
requestShowSeries(series: Series, visible: boolean): void;
|
|
7623
|
-
_selectionChanged(series: ISeries,
|
|
7890
|
+
_selectionChanged(series: ISeries, points: DataPoint[]): void;
|
|
7624
7891
|
getNextPointShape(): Shape;
|
|
7625
7892
|
getProjection(): MapProjection;
|
|
7626
7893
|
projectionChanged(): void;
|
|
7627
|
-
zoomChanged(oldZoom: number): void;
|
|
7894
|
+
zoomChanged(zoom: number, oldZoom: number): void;
|
|
7628
7895
|
mapChanged(map: MapModel): void;
|
|
7629
7896
|
anchorByName(name: string): ChartItem<ChartItemOptions>;
|
|
7630
7897
|
get chart(): IChart;
|
|
7631
7898
|
getTooltipContext(scope: TooltipScope, series: ISeries, point: DataPoint): ITooltipContext;
|
|
7632
|
-
selectionChanged(selection: MapSelection): void;
|
|
7633
|
-
selectionItemAdded(item: ISelectionSource): void;
|
|
7634
|
-
selectionItemRemoved(item: ISelectionSource): void;
|
|
7899
|
+
selectionChanged(selection: MapSelection[]): void;
|
|
7900
|
+
selectionItemAdded(item: ISelectionSource[]): void;
|
|
7901
|
+
selectionItemRemoved(item: ISelectionSource[]): void;
|
|
7635
7902
|
selectionCleared(): void;
|
|
7636
|
-
get type(): "map" | "point" | "
|
|
7637
|
-
get chartOptions(): ChartOptions;
|
|
7903
|
+
get type(): "map" | "point" | "line" | "image" | "figure" | "bar" | "pie" | "waffle" | "bubble" | "route" | "feature" | "pin" | "vector" | "heatmap" | "panel" | "gauge" | "clock";
|
|
7638
7904
|
get legend(): Legend;
|
|
7639
7905
|
get credits(): Credits;
|
|
7640
7906
|
/**
|
|
@@ -7690,9 +7956,9 @@ declare class ChartObject extends RmEventProvider<IMapChartEvents> implements IC
|
|
|
7690
7956
|
setParam(param: string, value: any, redraw?: boolean): ChartObject;
|
|
7691
7957
|
addSeries(source: any, animate: boolean): Series;
|
|
7692
7958
|
removeSeries(series: string | Series, animate: boolean): Series<SeriesOptions>;
|
|
7693
|
-
/** @
|
|
7959
|
+
/** @private */
|
|
7694
7960
|
_dataChanged(series: Series): void;
|
|
7695
|
-
/** @
|
|
7961
|
+
/** @private */
|
|
7696
7962
|
_isDataChanged(): boolean;
|
|
7697
7963
|
getColorScale(scale: string | number): ColorScale;
|
|
7698
7964
|
getBubbleScale(scale: string | number): BubbleScale;
|
|
@@ -7710,6 +7976,7 @@ declare class ChartObject extends RmEventProvider<IMapChartEvents> implements IC
|
|
|
7710
7976
|
interface IChart {
|
|
7711
7977
|
wrapper: any;
|
|
7712
7978
|
options: ChartConfiguration;
|
|
7979
|
+
global: ChartGlobal;
|
|
7713
7980
|
type?: string;
|
|
7714
7981
|
_loading: boolean;
|
|
7715
7982
|
map: MapModel;
|
|
@@ -7735,7 +8002,7 @@ interface IChart {
|
|
|
7735
8002
|
loadBase(source: any, model: string, type: string): any;
|
|
7736
8003
|
assignTemplates(target: any): any;
|
|
7737
8004
|
projectionChanged(): void;
|
|
7738
|
-
zoomChanged(oldZoom: number): void;
|
|
8005
|
+
zoomChanged(zoom: number, oldZoom: number): void;
|
|
7739
8006
|
coordOfArea(id: string): MapCoord;
|
|
7740
8007
|
seriesByName(series: string): Series;
|
|
7741
8008
|
seriesAt(index: number): Series;
|
|
@@ -7759,7 +8026,7 @@ interface IChart {
|
|
|
7759
8026
|
_isDataChanged(): boolean;
|
|
7760
8027
|
lockOptionsDirty(): void;
|
|
7761
8028
|
freeOptionsDirty(): void;
|
|
7762
|
-
_selectionChanged(series: ISeries, p: ISelectionSource): void;
|
|
8029
|
+
_selectionChanged(series: ISeries, p: ISelectionSource[]): void;
|
|
7763
8030
|
getNextPointShape(): Shape;
|
|
7764
8031
|
}
|
|
7765
8032
|
declare const extend: <O extends ChartItemOptions>(base: any, source: O) => O;
|
|
@@ -7800,14 +8067,20 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
7800
8067
|
*/
|
|
7801
8068
|
updateOptions(source?: OP, render?: boolean): this;
|
|
7802
8069
|
/**
|
|
7803
|
-
*
|
|
8070
|
+
* 하나의 속성 값을 설정한다.<br/>
|
|
8071
|
+
* 여러 속성들을 한꺼번에 변경할 때는 {@link updateOptions}를 사용한다.
|
|
8072
|
+
* 기본적으로 이전 값과 다른 경우에만 적용된다.
|
|
8073
|
+
* 특히, 속성값이 객체인 경우 객체 속성만 바뀐 경우 적용되지 않는다.
|
|
8074
|
+
* 바꾸고 싶다면 force 매개변수를 true로 지정해서 호출한다.<br/>
|
|
8075
|
+
* 또, prop 매개변수가 하위 모델 이름인 경우 하위 모델의 {@link updateOptions}를 호출한 것과 동일하다.
|
|
7804
8076
|
*
|
|
7805
8077
|
* @param prop 설정 항목 이름
|
|
7806
8078
|
* @param value 설정 값
|
|
7807
8079
|
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다. 기본값: true
|
|
8080
|
+
* @param force 지정한 값이 이전 값과 동일한 경우에도 적용한다. 기본값: false
|
|
7808
8081
|
* @returns 모델 객체 자신
|
|
7809
8082
|
*/
|
|
7810
|
-
updateOption(prop: keyof OP, value: any, render?: boolean): this;
|
|
8083
|
+
updateOption(prop: keyof OP, value: any, render?: boolean, force?: boolean): this;
|
|
7811
8084
|
/**
|
|
7812
8085
|
* boolean 타입의 모델 설정 값을 반대 값으로 변경한다.<br/>
|
|
7813
8086
|
*
|
|
@@ -7825,7 +8098,7 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
7825
8098
|
*/
|
|
7826
8099
|
removeOption(prop: keyof OP, render?: boolean): this;
|
|
7827
8100
|
/**
|
|
7828
|
-
* 명시적으로 설정된 모든 모델 설정 값들을
|
|
8101
|
+
* 명시적으로 설정된 모든 모델 설정 값들을 제거한다.<br/>
|
|
7829
8102
|
*
|
|
7830
8103
|
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다. 기본갑 true
|
|
7831
8104
|
* @returns 모델 객체 자신
|
|
@@ -7834,7 +8107,7 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
7834
8107
|
/**
|
|
7835
8108
|
* 명시적으로 모델에 설정된 모든 style 값들을 제거한다.<br/>
|
|
7836
8109
|
*
|
|
7837
|
-
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다.
|
|
8110
|
+
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다. 기본값 false
|
|
7838
8111
|
* @returns
|
|
7839
8112
|
*/
|
|
7840
8113
|
clearStyle(render?: boolean): this;
|
|
@@ -7843,7 +8116,7 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
7843
8116
|
*
|
|
7844
8117
|
* @param prop css 스타일 항목 이름.
|
|
7845
8118
|
* @param value 적용할 스타일 값.
|
|
7846
|
-
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다.
|
|
8119
|
+
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다. 기본값 true
|
|
7847
8120
|
* @returns
|
|
7848
8121
|
*/
|
|
7849
8122
|
setStyle(prop: string, value: any, render?: boolean): this;
|
|
@@ -7851,7 +8124,7 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
7851
8124
|
* 여러 항목의 모델 css style 값들을 json 객체로 지정해서 동시에 변경한다.<br/>
|
|
7852
8125
|
*
|
|
7853
8126
|
* @param styles 스타일 항목들과 값들이 설정된 json 객체
|
|
7854
|
-
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다.
|
|
8127
|
+
* @param render true로 지정하면 옵션 변경 시 맵차트를 다시 그린다. 기본값 true
|
|
7855
8128
|
* @returns
|
|
7856
8129
|
*/
|
|
7857
8130
|
setStyles(styles: any, render?: boolean): this;
|
|
@@ -7860,15 +8133,13 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
7860
8133
|
_optionChanged(tag?: any): void;
|
|
7861
8134
|
protected _doLoad(options: ChartItemOptions, source: any): void;
|
|
7862
8135
|
protected _doSetSimple(op: OP, src: any): boolean;
|
|
7863
|
-
/** @
|
|
8136
|
+
/** @private */
|
|
7864
8137
|
protected _doLoadProp(prop: string, value: any): boolean;
|
|
7865
8138
|
private $_applyOptions;
|
|
7866
|
-
protected _setDim(
|
|
7867
|
-
protected _setDims(
|
|
7868
|
-
protected _doApply(
|
|
8139
|
+
protected _setDim(op: ChartItemOptions, prop: string): void;
|
|
8140
|
+
protected _setDims(op: ChartItemOptions, ...props: string[]): void;
|
|
8141
|
+
protected _doApply(op: ChartItemOptions): void;
|
|
7869
8142
|
protected _doSave(target: object): void;
|
|
7870
|
-
/** @internal */
|
|
7871
|
-
protected _doUpdate(source: any): void;
|
|
7872
8143
|
protected _doPrepareRender(chart: IChart, op: OP): void;
|
|
7873
8144
|
protected _doAfterRender(): void;
|
|
7874
8145
|
}
|
|
@@ -7999,15 +8270,15 @@ declare abstract class PositioanbleItem<OP extends PositionableItemOptions = Pos
|
|
|
7999
8270
|
* 동적으로 아이템을 다루기 위해서는 반드시 지정해야 한다.
|
|
8000
8271
|
*/
|
|
8001
8272
|
get name(): string;
|
|
8002
|
-
getOffset(w: number, h: number): IPoint;
|
|
8273
|
+
getOffset(w: number, h: number): IPoint$1;
|
|
8003
8274
|
getSize(wDomain: number, hDomain: number): ISize;
|
|
8004
|
-
getPosition(left: number, top: number, wDomain: number, hDomain: number, width: number, height: number): IPoint;
|
|
8275
|
+
getPosition(left: number, top: number, wDomain: number, hDomain: number, width: number, height: number): IPoint$1;
|
|
8005
8276
|
protected _doApply(options: PositionableItemOptions): void;
|
|
8006
8277
|
protected abstract _getNamePrefix(): string;
|
|
8007
8278
|
protected _getDefaultAlign(): string;
|
|
8008
8279
|
}
|
|
8009
8280
|
/**
|
|
8010
|
-
* @
|
|
8281
|
+
* @private
|
|
8011
8282
|
*/
|
|
8012
8283
|
declare abstract class PositionalItemCollection<T extends PositioanbleItem> extends ChartItemCollection<T> {
|
|
8013
8284
|
protected _map: {
|
|
@@ -8033,8 +8304,8 @@ declare abstract class ScaleBase<OP extends ScaleOptions = ScaleOptions> extends
|
|
|
8033
8304
|
|
|
8034
8305
|
/**
|
|
8035
8306
|
* Annotation 모델들의 기반 클래스.<br/>
|
|
8036
|
-
* {@
|
|
8037
|
-
* {@
|
|
8307
|
+
* {@link options 옵션} 모델은 {@link https://realmap.co.kr/docs/api/options/AnnotationOptions AnnotationOptions}이고,
|
|
8308
|
+
* {@link https://realmap.co.kr/config 맵차트 설정}에서 {@link https://realmap.co.kr/config/config/annotation annotation} 항목으로 설정한다.
|
|
8038
8309
|
* ```js
|
|
8039
8310
|
* const config = {
|
|
8040
8311
|
* annotation: [{
|
|
@@ -8043,13 +8314,13 @@ declare abstract class ScaleBase<OP extends ScaleOptions = ScaleOptions> extends
|
|
|
8043
8314
|
* }],
|
|
8044
8315
|
* };
|
|
8045
8316
|
* ```
|
|
8046
|
-
* 또, Chart.{@
|
|
8317
|
+
* 또, Chart.{@link https://realmap.co.kr/docs/api/classes/MapChart#getannotation getAnnotation}으로
|
|
8047
8318
|
* 모델 객체를 가져올 수 있다.
|
|
8048
8319
|
* ```js
|
|
8049
8320
|
* const annotation = chart.getAnnotation('image1');
|
|
8050
8321
|
* annotation.visible = false;
|
|
8051
8322
|
* ```
|
|
8052
|
-
* {@
|
|
8323
|
+
* {@link https://realmap.co.kr/guide/annotations Annotation 개요} 페이지를 참조한다.
|
|
8053
8324
|
*
|
|
8054
8325
|
*/
|
|
8055
8326
|
declare abstract class Annotation<OP extends AnnotationOptions = AnnotationOptions> extends PositioanbleItem<OP> {
|
|
@@ -8070,7 +8341,7 @@ declare abstract class Annotation<OP extends AnnotationOptions = AnnotationOptio
|
|
|
8070
8341
|
protected _getDefaultAlign(): string;
|
|
8071
8342
|
}
|
|
8072
8343
|
/**
|
|
8073
|
-
* @
|
|
8344
|
+
* @private
|
|
8074
8345
|
*/
|
|
8075
8346
|
interface IAnnotationOwner {
|
|
8076
8347
|
chart: IChart;
|
|
@@ -8080,7 +8351,7 @@ interface IAnnotationOwner {
|
|
|
8080
8351
|
anchorByName(name: string): ChartItem;
|
|
8081
8352
|
}
|
|
8082
8353
|
/**
|
|
8083
|
-
* @
|
|
8354
|
+
* @private
|
|
8084
8355
|
*/
|
|
8085
8356
|
declare class AnnotationCollection extends PositionalItemCollection<Annotation> {
|
|
8086
8357
|
owner: IAnnotationOwner;
|
|
@@ -8120,7 +8391,7 @@ declare class MapChart {
|
|
|
8120
8391
|
get body(): Body;
|
|
8121
8392
|
get assets(): AssetCollection;
|
|
8122
8393
|
/**
|
|
8123
|
-
* {@
|
|
8394
|
+
* {@link setBaseMap}으로 지정되거나,
|
|
8124
8395
|
* 기본적으로 첫번째 enabled인 맵 모델.<br />
|
|
8125
8396
|
*/
|
|
8126
8397
|
get map(): MapModel;
|
|
@@ -8134,14 +8405,14 @@ declare class MapChart {
|
|
|
8134
8405
|
get subtitle(): Subtitle;
|
|
8135
8406
|
/**
|
|
8136
8407
|
* 맵차트에 설정된 첫번째 시리즈.<br/>
|
|
8137
|
-
* {@link guide
|
|
8138
|
-
* {@link config
|
|
8408
|
+
* {@link https://realmap.co.kr/guide/series 시리즈 개요} 및
|
|
8409
|
+
* {@link https://realmap.co.kr/config/config/base/series 시리즈 설정}을 참조한다.
|
|
8139
8410
|
*/
|
|
8140
8411
|
get series(): Series;
|
|
8141
8412
|
/**
|
|
8142
8413
|
* 맵차트에 설정된 첫번째 맵시리즈.<br/>
|
|
8143
|
-
* {@link guide
|
|
8144
|
-
* {@link config
|
|
8414
|
+
* {@link https://realmap.co.kr/guide/series 시리즈 개요} 및
|
|
8415
|
+
* {@link https://realmap.co.kr/config/config/base/series 시리즈 설정}을 참조한다.
|
|
8145
8416
|
*/
|
|
8146
8417
|
get firstMapSeries(): MapSeries;
|
|
8147
8418
|
/**
|
|
@@ -8184,6 +8455,7 @@ declare class MapChart {
|
|
|
8184
8455
|
* 맵차트 내보내기 관련 설정 모델.
|
|
8185
8456
|
*/
|
|
8186
8457
|
get exporter(): Exporter;
|
|
8458
|
+
get global(): ChartGlobal;
|
|
8187
8459
|
/**
|
|
8188
8460
|
* 맵차트 축의 기준이 되는 맵 모델을 지정한다.<br/>
|
|
8189
8461
|
* 매개변수를 지정하지 않거나 잘못된 값을 넘기면 첫번째 enabled인 맵으로 설정된다.
|
|
@@ -8210,6 +8482,12 @@ declare class MapChart {
|
|
|
8210
8482
|
* @returns 시리즈 객체
|
|
8211
8483
|
*/
|
|
8212
8484
|
seriesByType(type: string): Series;
|
|
8485
|
+
/**
|
|
8486
|
+
* Annotation 이름에 해당하는 Annotation 객체를 리턴한다.<br/>
|
|
8487
|
+
*
|
|
8488
|
+
* @param name Annotation 이름
|
|
8489
|
+
* @returns Annotation 객체
|
|
8490
|
+
*/
|
|
8213
8491
|
getAnnotation(name: string): Annotation;
|
|
8214
8492
|
/**
|
|
8215
8493
|
* 기존 모델 설정을 모두 제거하고 초기화 한 후,
|
|
@@ -8343,7 +8621,7 @@ declare class Globals {
|
|
|
8343
8621
|
*/
|
|
8344
8622
|
static getDistance(p1: [number, number], p2: [number, number]): number;
|
|
8345
8623
|
/**
|
|
8346
|
-
* @
|
|
8624
|
+
* @private
|
|
8347
8625
|
*/
|
|
8348
8626
|
static setGlobals(globals: any): void;
|
|
8349
8627
|
/**
|
|
@@ -8406,7 +8684,7 @@ declare class MapTool extends RmTool<ChartControl> {
|
|
|
8406
8684
|
protected _doWheel(ev: WheelEvent): boolean;
|
|
8407
8685
|
protected _isPinchTarget(dom: Element): boolean;
|
|
8408
8686
|
protected _doPinch(dist: number): void;
|
|
8409
|
-
protected _getDragTracker(dom: Element, dx: number, dy: number): DragTracker;
|
|
8687
|
+
protected _getDragTracker(dom: Element, dx: number, dy: number, shift: boolean): DragTracker;
|
|
8410
8688
|
private $_chart;
|
|
8411
8689
|
private $_chartView;
|
|
8412
8690
|
private $_drildown;
|
|
@@ -8512,7 +8790,7 @@ declare abstract class BoundableElement<T extends ChartItem = ChartItem> extends
|
|
|
8512
8790
|
protected _deflatePaddings(size: ISize): void;
|
|
8513
8791
|
}
|
|
8514
8792
|
/**
|
|
8515
|
-
* @
|
|
8793
|
+
* @private
|
|
8516
8794
|
*/
|
|
8517
8795
|
declare abstract class SectionView extends GroupElement {
|
|
8518
8796
|
protected _inverted: boolean;
|
|
@@ -8564,11 +8842,11 @@ declare abstract class AnnotationView<T extends Annotation = Annotation> extends
|
|
|
8564
8842
|
protected _marginable(): boolean;
|
|
8565
8843
|
protected _resetBackBounds(): boolean;
|
|
8566
8844
|
protected _setBackgroundStyle(back: RectElement): void;
|
|
8567
|
-
protected _doLayout(p: IPoint): void;
|
|
8845
|
+
protected _doLayout(p: IPoint$1): void;
|
|
8568
8846
|
}
|
|
8569
8847
|
|
|
8570
8848
|
/**
|
|
8571
|
-
* @
|
|
8849
|
+
* @private
|
|
8572
8850
|
*/
|
|
8573
8851
|
declare class ColorScaleView extends MapWidgetView<ColorScale> {
|
|
8574
8852
|
static readonly SCALE_CLASS = "rm-color-scale";
|
|
@@ -8628,7 +8906,7 @@ declare class ColorScaleView extends MapWidgetView<ColorScale> {
|
|
|
8628
8906
|
}
|
|
8629
8907
|
|
|
8630
8908
|
type Visitor<T extends RmElement> = (element: T, index?: number, count?: number) => void;
|
|
8631
|
-
/** @
|
|
8909
|
+
/** @private */
|
|
8632
8910
|
declare class ElementPool<T extends RmElement> extends RmObject {
|
|
8633
8911
|
private _reversed;
|
|
8634
8912
|
removeDelay: number;
|
|
@@ -8641,6 +8919,7 @@ declare class ElementPool<T extends RmElement> extends RmObject {
|
|
|
8641
8919
|
new (doc: Document, styleName?: string): T;
|
|
8642
8920
|
}, styleName?: string, removeDelay?: number);
|
|
8643
8921
|
protected _doDestory(): void;
|
|
8922
|
+
get owner(): RmElement;
|
|
8644
8923
|
/**
|
|
8645
8924
|
* reversed.
|
|
8646
8925
|
*/
|
|
@@ -8675,16 +8954,16 @@ declare class PathBuilder {
|
|
|
8675
8954
|
clear(): PathBuilder;
|
|
8676
8955
|
end(close?: boolean): string;
|
|
8677
8956
|
close(): string;
|
|
8678
|
-
move(x: number | IPoint, y?: number): PathBuilder;
|
|
8679
|
-
moveBy(x: number | IPoint, y?: number): PathBuilder;
|
|
8680
|
-
movep(x: number | IPoint, y?: number): PathBuilder;
|
|
8681
|
-
line(x: number | IPoint, y?: number): PathBuilder;
|
|
8682
|
-
linep(x: number | IPoint, y?: number): PathBuilder;
|
|
8957
|
+
move(x: number | IPoint$1, y?: number): PathBuilder;
|
|
8958
|
+
moveBy(x: number | IPoint$1, y?: number): PathBuilder;
|
|
8959
|
+
movep(x: number | IPoint$1, y?: number): PathBuilder;
|
|
8960
|
+
line(x: number | IPoint$1, y?: number): PathBuilder;
|
|
8961
|
+
linep(x: number | IPoint$1, y?: number): PathBuilder;
|
|
8683
8962
|
curve(cx1: number, cy1: number, cx2: number, cy2: number, x: number, y: number): PathBuilder;
|
|
8684
8963
|
q(x1: number, y1: number, x2: number, y2: number): PathBuilder;
|
|
8685
8964
|
rect(x: number, y: number, width: number, height: number): PathBuilder;
|
|
8686
|
-
lines(...pts: (number | IPoint)[]): PathBuilder;
|
|
8687
|
-
polygon(...pts: (number | IPoint)[]): PathBuilder;
|
|
8965
|
+
lines(...pts: (number | IPoint$1)[]): PathBuilder;
|
|
8966
|
+
polygon(...pts: (number | IPoint$1)[]): PathBuilder;
|
|
8688
8967
|
circle(cx: number, cy: number, rd: number): PathBuilder;
|
|
8689
8968
|
}
|
|
8690
8969
|
|
|
@@ -8703,14 +8982,14 @@ declare class LineElement extends PathElement {
|
|
|
8703
8982
|
setHLineC(y: number, x1: number, x2: number): void;
|
|
8704
8983
|
}
|
|
8705
8984
|
declare class PolyLineElement extends PathElement {
|
|
8706
|
-
constructor(doc: Document, styleName?: string, lines?: (number | IPoint)[], curved?: boolean);
|
|
8707
|
-
setLines(pts: (number | MapCoord | IPoint)[], curved: boolean): void;
|
|
8985
|
+
constructor(doc: Document, styleName?: string, lines?: (number | IPoint$1)[], curved?: boolean);
|
|
8986
|
+
setLines(pts: (number | MapCoord | IPoint$1)[], curved: boolean): void;
|
|
8708
8987
|
}
|
|
8709
8988
|
|
|
8710
8989
|
interface IPointView {
|
|
8711
8990
|
point: DataPoint;
|
|
8712
8991
|
tooltipColor(): string;
|
|
8713
|
-
tooltipPos?(): IPoint;
|
|
8992
|
+
tooltipPos?(): IPoint$1;
|
|
8714
8993
|
saveStyles(): void;
|
|
8715
8994
|
restoreStyles(): void;
|
|
8716
8995
|
}
|
|
@@ -8790,10 +9069,10 @@ declare abstract class PointElement<T extends DataPoint = DataPoint> extends Pat
|
|
|
8790
9069
|
}
|
|
8791
9070
|
declare class PointContainer extends LayerElement {
|
|
8792
9071
|
}
|
|
8793
|
-
type PointPositioner = (x: number, y: number, wPoint: number, hPoint: number) => IPoint;
|
|
8794
|
-
type LabelPositioner = (x: number, y: number, rLabel: IRect, wPoint: number, hPoint: number, off: number) => IPoint;
|
|
9072
|
+
type PointPositioner = (x: number, y: number, wPoint: number, hPoint: number) => IPoint$1;
|
|
9073
|
+
type LabelPositioner = (x: number, y: number, rLabel: IRect, wPoint: number, hPoint: number, off: number) => IPoint$1;
|
|
8795
9074
|
/**
|
|
8796
|
-
* @
|
|
9075
|
+
* @private
|
|
8797
9076
|
*
|
|
8798
9077
|
* View base for map chart series.
|
|
8799
9078
|
*/
|
|
@@ -8854,15 +9133,17 @@ declare abstract class SeriesView<T extends Series = Series> extends ChartElemen
|
|
|
8854
9133
|
setGrowRate(rate: number): void;
|
|
8855
9134
|
setPosRate(rate: number): void;
|
|
8856
9135
|
setPrevRate(rate: number): void;
|
|
8857
|
-
pointByDom(elt: Element, p: IPoint): IPointView;
|
|
8858
|
-
click(elt: Element, p: IPoint): void;
|
|
8859
|
-
|
|
8860
|
-
|
|
9136
|
+
pointByDom(elt: Element, p: IPoint$1): IPointView;
|
|
9137
|
+
click(elt: Element, p: IPoint$1): void;
|
|
9138
|
+
protected _clusterOfDom(elt: Element): PointClusterView;
|
|
9139
|
+
select(elt: Element, p: IPoint$1, clear: boolean): void;
|
|
9140
|
+
toggleSelect(elt: Element, p: IPoint$1): void;
|
|
8861
9141
|
runPointAddAnimation(p: DataPoint): void;
|
|
8862
9142
|
/**
|
|
8863
9143
|
* 데이터포인트와 연결된 라벨 표시/숨김 처리 #361
|
|
8864
9144
|
*/
|
|
8865
9145
|
setPointLabelVisible(point: DataPoint, visible: boolean): void;
|
|
9146
|
+
zoomChanged(zoom: number, oldZoom: number): void;
|
|
8866
9147
|
protected abstract _doPrepeare(doc: Document, model: T, dataDirty: boolean): void;
|
|
8867
9148
|
protected abstract _doRender(width: number, height: number): void;
|
|
8868
9149
|
protected abstract _doReset(): void;
|
|
@@ -8891,6 +9172,16 @@ declare abstract class SeriesView<T extends Series = Series> extends ChartElemen
|
|
|
8891
9172
|
protected _legendColorProp(): string;
|
|
8892
9173
|
protected _doPointClicked(view: IPointView): void;
|
|
8893
9174
|
}
|
|
9175
|
+
declare class PointClusterView extends RmElement {
|
|
9176
|
+
private static readonly CLASS_NAME;
|
|
9177
|
+
static isClusterView(dom: Element): Element;
|
|
9178
|
+
private _shape;
|
|
9179
|
+
private _label;
|
|
9180
|
+
_cluster: ICluster;
|
|
9181
|
+
constructor(doc: Document);
|
|
9182
|
+
setCluster(cluster: ICluster): void;
|
|
9183
|
+
render(rd: number, color: string): void;
|
|
9184
|
+
}
|
|
8894
9185
|
declare abstract class MarkerSeriesPointView<T extends MarkerSeriesPoint = MarkerSeriesPoint> extends PointElement<T> implements IPointView {
|
|
8895
9186
|
beginHover(series: SeriesView, focused: boolean): void;
|
|
8896
9187
|
setHoverRate(series: SeriesView, focused: boolean, rate: number): void;
|
|
@@ -8906,10 +9197,77 @@ declare abstract class MarkerSeriesView<T extends MarkerSeries = MarkerSeries> e
|
|
|
8906
9197
|
protected _getPointPool(): PointViewPool<PointElement>;
|
|
8907
9198
|
}
|
|
8908
9199
|
|
|
9200
|
+
declare class AreaView extends PointElement<MapSeriesPoint> {
|
|
9201
|
+
static idClass(area: MapArea): string;
|
|
9202
|
+
static getId(dom: Element): string;
|
|
9203
|
+
constructor(doc: Document);
|
|
9204
|
+
model: MapArea;
|
|
9205
|
+
strokeView: AreaStrokeView;
|
|
9206
|
+
setModel(model: MapArea): void;
|
|
9207
|
+
render(nullStyle: SVGStyleOrClass, dummyStyle: SVGStyleOrClass, selectStyle: SVGStyleOrClass, pointContainer: PointContainer, dirty: boolean, isHovering: boolean): void;
|
|
9208
|
+
reset(): void;
|
|
9209
|
+
}
|
|
9210
|
+
declare class AreaStrokeView extends PathElement {
|
|
9211
|
+
private _owner;
|
|
9212
|
+
private _area;
|
|
9213
|
+
constructor(doc: Document, owner: PointContainer);
|
|
9214
|
+
render(targetArea: AreaView, style: SVGStyleOrClass): void;
|
|
9215
|
+
refresh(): void;
|
|
9216
|
+
attachToOwner(): void;
|
|
9217
|
+
detachFromOwner(): void;
|
|
9218
|
+
protected _doInitStyles(): void;
|
|
9219
|
+
private copyPath;
|
|
9220
|
+
}
|
|
9221
|
+
/**
|
|
9222
|
+
* View for map series.
|
|
9223
|
+
*/
|
|
9224
|
+
declare class MapSeriesView extends SeriesView<MapSeries> {
|
|
9225
|
+
private static readonly DefaultHoverFilter;
|
|
9226
|
+
private static readonly DefaultHoverStrokeWidth;
|
|
9227
|
+
private static readonly DefaultLabelHoverFill;
|
|
9228
|
+
private _hoverArea;
|
|
9229
|
+
private _internalContainer;
|
|
9230
|
+
private _externalContainer;
|
|
9231
|
+
private _borderContainer;
|
|
9232
|
+
private _insetLabelContainer;
|
|
9233
|
+
private _areaPool;
|
|
9234
|
+
private _areas;
|
|
9235
|
+
private _internalPool;
|
|
9236
|
+
private _externalPool;
|
|
9237
|
+
private _borderPool;
|
|
9238
|
+
private _insetPool;
|
|
9239
|
+
private _insets;
|
|
9240
|
+
private _hoverStrokeView;
|
|
9241
|
+
constructor(doc: Document);
|
|
9242
|
+
get hoverArea(): AreaView;
|
|
9243
|
+
set hoverArea(value: AreaView);
|
|
9244
|
+
get insets(): MapInset[];
|
|
9245
|
+
areaOfDom(dom: Element): AreaView;
|
|
9246
|
+
getIntersectedAreas(rect: SVGGeometryElement): AreaView[];
|
|
9247
|
+
needClip(): boolean;
|
|
9248
|
+
secondLabelContainer(): LayerElement;
|
|
9249
|
+
protected _getPointPool(): PointViewPool<PointElement>;
|
|
9250
|
+
protected _setModelColor(color: string): void;
|
|
9251
|
+
protected _setPointColor(v: RmElement, color: string): void;
|
|
9252
|
+
prepareModel(doc: Document, model: MapSeries, scroll: number): void;
|
|
9253
|
+
protected _doPrepeare(doc: Document, model: MapSeries, dataDirty: boolean): void;
|
|
9254
|
+
protected _doRender(width: number, height: number): void;
|
|
9255
|
+
protected _doReset(): void;
|
|
9256
|
+
protected _doPointerMoved(x: number, y: number, dom: Element): boolean;
|
|
9257
|
+
protected _doPointClicked(view: IPointView): void;
|
|
9258
|
+
protected _runShowEffect(firstTime: boolean): void;
|
|
9259
|
+
protected _doViewRateChanged(rate: number): void;
|
|
9260
|
+
onScrollStart(): void;
|
|
9261
|
+
onScrollEnd(): void;
|
|
9262
|
+
private $_layoutAreas;
|
|
9263
|
+
private getPointLabel;
|
|
9264
|
+
private setHoverStyle;
|
|
9265
|
+
}
|
|
9266
|
+
|
|
8909
9267
|
interface IBodyViewOwner {
|
|
8910
9268
|
tx: number;
|
|
8911
9269
|
ty: number;
|
|
8912
|
-
showTooltip(series: Series, pv: IPointView, map: RmElement, p: IPoint): void;
|
|
9270
|
+
showTooltip(series: Series, pv: IPointView, map: RmElement, p: IPoint$1): void;
|
|
8913
9271
|
hideTooltip(): void;
|
|
8914
9272
|
tooltipVisible(): boolean;
|
|
8915
9273
|
getScaleView(scale: ColorScale): ColorScaleView;
|
|
@@ -8938,8 +9296,10 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
8938
9296
|
private _transformInfo;
|
|
8939
9297
|
private _mousePos;
|
|
8940
9298
|
private _prevPrj;
|
|
9299
|
+
private _zoom;
|
|
8941
9300
|
constructor(doc: Document, owner: IBodyViewOwner);
|
|
8942
9301
|
getAnnotationAnchor(model: any): RmElement;
|
|
9302
|
+
get firstMap(): MapSeriesView;
|
|
8943
9303
|
get transformInfo(): IBodyTransform;
|
|
8944
9304
|
get isProjectionChanged(): boolean;
|
|
8945
9305
|
getSeries(series: Series): SeriesView<Series<SeriesOptions>>;
|
|
@@ -8947,13 +9307,14 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
8947
9307
|
afterRender(): void;
|
|
8948
9308
|
clean(): void;
|
|
8949
9309
|
reset(): void;
|
|
8950
|
-
getTooltipPos(): IPoint;
|
|
9310
|
+
getTooltipPos(): IPoint$1;
|
|
8951
9311
|
pointerMoved(x: number, y: number, target: EventTarget): boolean;
|
|
8952
9312
|
seriesByDom(dom: Element): SeriesView;
|
|
8953
9313
|
showSeries(series: Series): void;
|
|
8954
9314
|
hideSeries(series: Series): void;
|
|
8955
9315
|
getBackBounds(): DOMRect;
|
|
8956
9316
|
addFeedback(view: RmElement): void;
|
|
9317
|
+
zoomChanged(zoom: number, oldZoom: number): void;
|
|
8957
9318
|
onScrollStart(): void;
|
|
8958
9319
|
onScrollEnd(): void;
|
|
8959
9320
|
protected _doMeasure(doc: Document, model: Body, hintWidth: number, hintHeight: number): ISize;
|
|
@@ -8974,13 +9335,13 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
8974
9335
|
* @param point 픽셀 좌표
|
|
8975
9336
|
* @returns 경위도 좌표
|
|
8976
9337
|
*/
|
|
8977
|
-
mouseToMap(point: IPoint, ignoreScroll?: boolean, ignorePadding?: boolean): MapCoord;
|
|
9338
|
+
mouseToMap(point: IPoint$1, ignoreScroll?: boolean, ignorePadding?: boolean): MapCoord;
|
|
8978
9339
|
boundsToMap(r: IRect, ignoreScroll?: boolean, ignorePadding?: boolean): {
|
|
8979
9340
|
from: MapCoord;
|
|
8980
9341
|
to: MapCoord;
|
|
8981
9342
|
};
|
|
8982
9343
|
pointToMap(x: number, y: number, ignoreScroll: boolean): MapCoord;
|
|
8983
|
-
mapToPoint(coord: MapCoord): IPoint;
|
|
9344
|
+
mapToPoint(coord: MapCoord): IPoint$1;
|
|
8984
9345
|
boundsByCoord(coordFrom: MapCoord, coordTo: MapCoord): {
|
|
8985
9346
|
x: number;
|
|
8986
9347
|
y: number;
|
|
@@ -9052,7 +9413,7 @@ declare class DrilldownPanelView extends BodyPanelView<DrilldownPanel> {
|
|
|
9052
9413
|
}
|
|
9053
9414
|
|
|
9054
9415
|
/**
|
|
9055
|
-
* @
|
|
9416
|
+
* @private
|
|
9056
9417
|
*/
|
|
9057
9418
|
declare class CreditsView extends ChartElement<Credits> {
|
|
9058
9419
|
private _textView;
|
|
@@ -9100,7 +9461,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
9100
9461
|
getWidgetViews(loc: ChartItemLocation, widgets: MapWidget[]): MapWidgetView<MapWidget<MapWidgetOptions>>[];
|
|
9101
9462
|
measure(doc: Document, m: ChartObject, hintWidth: number, hintHeight: number): void;
|
|
9102
9463
|
layout(): void;
|
|
9103
|
-
showTooltip(series: Series, pv: IPointView, map: BodyView, p: IPoint): void;
|
|
9464
|
+
showTooltip(series: Series, pv: IPointView, map: BodyView, p: IPoint$1): void;
|
|
9104
9465
|
tooltipVisible(): boolean;
|
|
9105
9466
|
hideTooltip(): void;
|
|
9106
9467
|
clean(): void;
|
|
@@ -9115,6 +9476,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
9115
9476
|
getButton(dom: Element): ButtonElement;
|
|
9116
9477
|
buttonClicked(button: ButtonElement): void;
|
|
9117
9478
|
updateAnnotation(anno: Annotation): void;
|
|
9479
|
+
zoomChanged(zoom: number, oldZoom: number): void;
|
|
9118
9480
|
isAnimating(): void;
|
|
9119
9481
|
onScrollStart(): void;
|
|
9120
9482
|
private $_prepareAnnotations;
|
|
@@ -9125,7 +9487,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
9125
9487
|
}
|
|
9126
9488
|
|
|
9127
9489
|
/**
|
|
9128
|
-
* @
|
|
9490
|
+
* @private
|
|
9129
9491
|
*/
|
|
9130
9492
|
declare class ChartControl extends RmControl implements IMapChartEvents {
|
|
9131
9493
|
private static readonly LOADING_VIEW_LENGTH;
|
|
@@ -9140,7 +9502,7 @@ declare class ChartControl extends RmControl implements IMapChartEvents {
|
|
|
9140
9502
|
onDataChanged(chart: ChartObject, series: Series): void;
|
|
9141
9503
|
onProjectionChanged(chart: ChartObject, projection: MapProjection): void;
|
|
9142
9504
|
onMapChanged(chart: ChartObject, map: MapModel): void;
|
|
9143
|
-
onZoomChanged(chart: ChartObject, oldZoom: number): void;
|
|
9505
|
+
onZoomChanged(chart: ChartObject, zoom: number, oldZoom: number): void;
|
|
9144
9506
|
onPointAdded(chart: ChartObject, series: Series, p: DataPoint, animate: boolean): void;
|
|
9145
9507
|
onRequestRender(chart: ChartObject, now: boolean): void;
|
|
9146
9508
|
onRequestShowSeries(chart: ChartObject, series: Series, visible: boolean): void;
|
|
@@ -9185,8 +9547,8 @@ declare class BarSeriesPoint extends OrthogonalSparkSeriesPoint {
|
|
|
9185
9547
|
}
|
|
9186
9548
|
/**
|
|
9187
9549
|
* Bar 시리즈 모델.<br/>
|
|
9188
|
-
* {@
|
|
9189
|
-
* {@
|
|
9550
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/bar bar}이고,
|
|
9551
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/BarSeriesOptions BarSeriesOptions}이다.
|
|
9190
9552
|
*/
|
|
9191
9553
|
declare class BarSeries extends OrthogonalSparkSeries<BarSeriesOptions> {
|
|
9192
9554
|
static type: string;
|
|
@@ -9212,8 +9574,8 @@ declare class BubbleSeriesPoint extends MarkerSeriesPoint {
|
|
|
9212
9574
|
}
|
|
9213
9575
|
/**
|
|
9214
9576
|
* Bubble 시리즈 모델.<br/>
|
|
9215
|
-
* {@
|
|
9216
|
-
* {@
|
|
9577
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/bubble bubble}이고,
|
|
9578
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/BubbleSeriesOptions BubbleSeriesOptions}이다.
|
|
9217
9579
|
*/
|
|
9218
9580
|
declare class BubbleSeries extends MarkerSeries<BubbleSeriesOptions> {
|
|
9219
9581
|
static type: string;
|
|
@@ -9251,14 +9613,14 @@ declare class CircleGaugeItem<OP extends ChartItemOptions> extends ChartItem<OP>
|
|
|
9251
9613
|
}
|
|
9252
9614
|
/**
|
|
9253
9615
|
* 원형게이지 내부 원 모델.<br/>
|
|
9254
|
-
* {@
|
|
9616
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/CircleGaugeFaceptions CircleGaugeFaceptions}이다.
|
|
9255
9617
|
*/
|
|
9256
9618
|
declare class CircleGaugeFace extends CircleGaugeItem<CircleGaugeFaceOptions> {
|
|
9257
9619
|
static defaults: CircleGaugeFaceOptions;
|
|
9258
9620
|
}
|
|
9259
9621
|
/**
|
|
9260
9622
|
* 원형게이지 테두리(rim) 모델.<br/>
|
|
9261
|
-
* {@
|
|
9623
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/CircleGaugeRimOptions CircleGaugeRimOptions}이다.
|
|
9262
9624
|
*/
|
|
9263
9625
|
declare class CircleGaugeRim extends CircleGaugeItem<CircleGaugeRimOptions> {
|
|
9264
9626
|
static defaults: CircleGaugeRimOptions;
|
|
@@ -9267,7 +9629,7 @@ declare class CircleGaugeRim extends CircleGaugeItem<CircleGaugeRimOptions> {
|
|
|
9267
9629
|
}
|
|
9268
9630
|
/**
|
|
9269
9631
|
* 값을 표시하는 테두리(rim) 모델.<br/>
|
|
9270
|
-
* {@
|
|
9632
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/CircleGaugeValueRimOptions CircleGaugeValueRimOptions}이다.
|
|
9271
9633
|
*/
|
|
9272
9634
|
declare class CircleGaugeValueRim extends CircleGaugeItem<CircleGaugeValueRimOptions> {
|
|
9273
9635
|
static defaults: CircleGaugeValueRimOptions;
|
|
@@ -9277,7 +9639,7 @@ declare class CircleGaugeValueRim extends CircleGaugeItem<CircleGaugeValueRimOpt
|
|
|
9277
9639
|
}
|
|
9278
9640
|
/**
|
|
9279
9641
|
* 원형게이지 침(hand) 모델.<br/>
|
|
9280
|
-
* {@
|
|
9642
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/CircleGaugeHandOptions CircleGaugeHandOptions}이다.
|
|
9281
9643
|
*/
|
|
9282
9644
|
declare class CircleGaugeHand extends CircleGaugeItem<CircleGaugeHandOptions> {
|
|
9283
9645
|
static defaults: CircleGaugeHandOptions;
|
|
@@ -9293,7 +9655,7 @@ declare class CircleGaugeHand extends CircleGaugeItem<CircleGaugeHandOptions> {
|
|
|
9293
9655
|
}
|
|
9294
9656
|
/**
|
|
9295
9657
|
* 원형게이지 핀 모델.<br/>
|
|
9296
|
-
* {@
|
|
9658
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/CircleGaugePinOptions CircleGaugePinOptions}이다.
|
|
9297
9659
|
*/
|
|
9298
9660
|
declare class CircleGaugePin extends CircleGaugeItem<CircleGaugePinOptions> {
|
|
9299
9661
|
static defaults: CircleGaugePinOptions;
|
|
@@ -9306,7 +9668,7 @@ declare class CircleGaugeLabel extends ChartText<CircleGaugeLabelOptions> {
|
|
|
9306
9668
|
private _offsetXDim;
|
|
9307
9669
|
private _offsetYDim;
|
|
9308
9670
|
_domain: IRichTextDomain;
|
|
9309
|
-
getOffset(width: number, height: number): IPoint;
|
|
9671
|
+
getOffset(width: number, height: number): IPoint$1;
|
|
9310
9672
|
protected _doApply(options: CircleGaugeLabelOptions): void;
|
|
9311
9673
|
}
|
|
9312
9674
|
interface ICircleGaugeExtents {
|
|
@@ -9356,8 +9718,8 @@ declare class CircleGaugePoint extends GaugePoint {
|
|
|
9356
9718
|
}
|
|
9357
9719
|
/**
|
|
9358
9720
|
* Circle 게이지 모델.<br/>
|
|
9359
|
-
* {@
|
|
9360
|
-
* {@
|
|
9721
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/gauge gauge}이고,
|
|
9722
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/CircleGaugeOptions CircleGaugeOptions}이다.
|
|
9361
9723
|
*/
|
|
9362
9724
|
declare class CircleGauge extends ValueGauge<CircleGaugeOptions> {
|
|
9363
9725
|
static readonly DEF_CENTER = "50%";
|
|
@@ -9390,7 +9752,7 @@ declare class ClockGaugeItem<OP extends ChartItemOptions> extends ChartItem<OP>
|
|
|
9390
9752
|
}
|
|
9391
9753
|
/**
|
|
9392
9754
|
* Clock 게이지 테두리(rim) 설정 모델.<br/>
|
|
9393
|
-
* {@
|
|
9755
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeRimOptions ClockGaugeRimOptions}이다.
|
|
9394
9756
|
*/
|
|
9395
9757
|
declare class ClockGaugeRim extends ClockGaugeItem<ClockGaugeRimOptions> {
|
|
9396
9758
|
static defaults: ClockGaugeRimOptions;
|
|
@@ -9400,7 +9762,7 @@ declare class ClockGaugeRim extends ClockGaugeItem<ClockGaugeRimOptions> {
|
|
|
9400
9762
|
}
|
|
9401
9763
|
/**
|
|
9402
9764
|
* Clock 게이지 시/분침(hand) 설정 모델.<br/>
|
|
9403
|
-
* {@
|
|
9765
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeHandOptions ClockGaugeHandOptions}이다.
|
|
9404
9766
|
*/
|
|
9405
9767
|
declare class ClockGaugeHand<OP extends ClockGaugeHandOptions = ClockGaugeHandOptions> extends ClockGaugeItem<OP> {
|
|
9406
9768
|
static defaults: ClockGaugeHandOptions;
|
|
@@ -9410,42 +9772,42 @@ declare class ClockGaugeHand<OP extends ClockGaugeHandOptions = ClockGaugeHandOp
|
|
|
9410
9772
|
}
|
|
9411
9773
|
/**
|
|
9412
9774
|
* Clock 게이지 분침 모델.<br/>
|
|
9413
|
-
* {@
|
|
9775
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeHandOptions ClockGaugeHandOptions}이다.
|
|
9414
9776
|
*/
|
|
9415
9777
|
declare class ClockGaugeMinuteHand extends ClockGaugeHand<ClockGaugeHandOptions> {
|
|
9416
9778
|
static defaults: ClockGaugeHandOptions;
|
|
9417
9779
|
}
|
|
9418
9780
|
/**
|
|
9419
9781
|
* Clock 게이지 초침(hand) 설정 모델.<br/>
|
|
9420
|
-
* {@
|
|
9782
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeSecondHandOptions ClockGaugeSecondHandOptions}이다.
|
|
9421
9783
|
*/
|
|
9422
9784
|
declare class ClockGaugeSecondHand extends ClockGaugeHand<ClockGaugeSecondHandOptions> {
|
|
9423
9785
|
static defaults: ClockGaugeSecondHandOptions;
|
|
9424
9786
|
}
|
|
9425
9787
|
/**
|
|
9426
9788
|
* Clock 게이지 tick 설정 모델.<br/>
|
|
9427
|
-
* {@
|
|
9789
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeTickOptions ClockGaugeTickOptions}이다.
|
|
9428
9790
|
*/
|
|
9429
9791
|
declare class ClockGaugeTick extends ClockGaugeItem<ClockGaugeTickOptions> {
|
|
9430
9792
|
static defaults: ClockGaugeTickOptions;
|
|
9431
9793
|
}
|
|
9432
9794
|
/**
|
|
9433
9795
|
* Clock 게이지 tick 라벨 설정 모델.<br/>
|
|
9434
|
-
* {@
|
|
9796
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeTickLabelOptions ClockGaugeTickLabelOptions}이다.
|
|
9435
9797
|
*/
|
|
9436
9798
|
declare class ClockGaugeTickLabel extends ClockGaugeItem<ClockGaugeTickLabelOptions> {
|
|
9437
9799
|
static defaults: ClockGaugeTickLabelOptions;
|
|
9438
9800
|
}
|
|
9439
9801
|
/**
|
|
9440
9802
|
* Clock 게이지 중심 pin 설정 모델.<br/>
|
|
9441
|
-
* {@
|
|
9803
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugePinOptions ClockGaugePinOptions}이다.
|
|
9442
9804
|
*/
|
|
9443
9805
|
declare class ClockGaugePin extends ClockGaugeItem<ClockGaugePinOptions> {
|
|
9444
9806
|
static defaults: ClockGaugePinOptions;
|
|
9445
9807
|
}
|
|
9446
9808
|
/**
|
|
9447
9809
|
* Clock 게이지 내부에 표시되는 라벨 설정 모델.<br/>
|
|
9448
|
-
* {@
|
|
9810
|
+
* {@link options} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeLabelOptions ClockGaugeLabelOptions}이다.
|
|
9449
9811
|
*/
|
|
9450
9812
|
declare class ClockGaugeLabel extends ChartText<ClockGaugeLabelOptions> {
|
|
9451
9813
|
static defaults: ClockGaugeLabelOptions;
|
|
@@ -9462,8 +9824,8 @@ declare class ClockGaugePoint extends GaugePoint {
|
|
|
9462
9824
|
}
|
|
9463
9825
|
/**
|
|
9464
9826
|
* Clock 게이지 모델.<br/>
|
|
9465
|
-
* {@
|
|
9466
|
-
* {@
|
|
9827
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/clock clock}이고,
|
|
9828
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/ClockGaugeOptions ClockGaugeOptions}이다.
|
|
9467
9829
|
*/
|
|
9468
9830
|
declare class ClockGauge extends Gauge<ClockGaugeOptions> {
|
|
9469
9831
|
static readonly DEF_CENTER = "50%";
|
|
@@ -9522,8 +9884,8 @@ declare class FigureSeriesImage extends ChartItem<FigureSeriesImageOptions> {
|
|
|
9522
9884
|
}
|
|
9523
9885
|
/**
|
|
9524
9886
|
* Figure 시리즈 모델.<br/>
|
|
9525
|
-
* {@
|
|
9526
|
-
* {@
|
|
9887
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/figure figure}이고,
|
|
9888
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/FigureSeriesOptions FigureSeriesOptions}이다.
|
|
9527
9889
|
*/
|
|
9528
9890
|
declare class FigureSeries extends CoordBaseSeries<FigureSeriesOptions> {
|
|
9529
9891
|
static type: string;
|
|
@@ -9531,20 +9893,23 @@ declare class FigureSeries extends CoordBaseSeries<FigureSeriesOptions> {
|
|
|
9531
9893
|
private _innerLabel;
|
|
9532
9894
|
private _innerImage;
|
|
9533
9895
|
private _figureBox;
|
|
9896
|
+
private _minValue;
|
|
9897
|
+
private _maxValue;
|
|
9534
9898
|
protected _doInit(op: FigureSeriesOptions): void;
|
|
9535
9899
|
get innerLabel(): DataPointLabel<DataPointLabelOptions>;
|
|
9536
9900
|
get innerImage(): FigureSeriesImage;
|
|
9537
|
-
get path(): string | (string |
|
|
9538
|
-
path: string;
|
|
9539
|
-
style: SVGStyleOrClass;
|
|
9540
|
-
})[];
|
|
9901
|
+
get path(): string | (string | FigureObject)[];
|
|
9541
9902
|
get figureBox(): [number, number];
|
|
9542
9903
|
getFigureSize(): ISize;
|
|
9543
9904
|
getImageSize(): ISize;
|
|
9544
9905
|
protected _doApply(options: FigureSeriesOptions): void;
|
|
9545
9906
|
protected _createPoint(source: any): FigureSeriesPoint;
|
|
9546
9907
|
protected _defLabelOff(): number;
|
|
9547
|
-
|
|
9908
|
+
getValueRange(): {
|
|
9909
|
+
min: number;
|
|
9910
|
+
max: number;
|
|
9911
|
+
};
|
|
9912
|
+
protected _doPrepareRender(chart: IChart, op: FigureSeriesOptions): void;
|
|
9548
9913
|
private $_calcBox;
|
|
9549
9914
|
}
|
|
9550
9915
|
|
|
@@ -9558,11 +9923,11 @@ declare class ImageSeriesPoint extends DataPoint {
|
|
|
9558
9923
|
}
|
|
9559
9924
|
/**
|
|
9560
9925
|
* Image 시리즈 모델.<br/>
|
|
9561
|
-
* {@
|
|
9562
|
-
* {@
|
|
9926
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/image image}이고,
|
|
9927
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/ImageSeriesOptions ImageSeriesOptions}이다.<br/>
|
|
9563
9928
|
*
|
|
9564
9929
|
* 데이터포인트에 imageUrl 속성이 지정되면 그 값을,
|
|
9565
|
-
* 아니면 {@
|
|
9930
|
+
* 아니면 {@link imageField}에 지정한 속성의 값을 {@link rootUrl}에 더해 이미지 경로를 만든다.
|
|
9566
9931
|
*/
|
|
9567
9932
|
declare class ImageSeries extends Series<ImageSeriesOptions> {
|
|
9568
9933
|
static type: string;
|
|
@@ -9584,8 +9949,8 @@ declare class LineSeriesArea extends ChartItem<LineSeriesAreaOptions> {
|
|
|
9584
9949
|
}
|
|
9585
9950
|
/**
|
|
9586
9951
|
* Line 시리즈 모델.<br/>
|
|
9587
|
-
* {@
|
|
9588
|
-
* {@
|
|
9952
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/line line}이고,
|
|
9953
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/LineSeriesOptions LineSeriesOptions}이다.
|
|
9589
9954
|
*/
|
|
9590
9955
|
declare class LineSeries extends OrthogonalSparkSeries<LineSeriesOptions> {
|
|
9591
9956
|
static type: string;
|
|
@@ -9627,8 +9992,8 @@ declare class PanelSeriesBody extends PanelSeriesSection<PanelSeriesBodyOptions>
|
|
|
9627
9992
|
}
|
|
9628
9993
|
/**
|
|
9629
9994
|
* Panel 시리즈 모델.<br/>
|
|
9630
|
-
* {@
|
|
9631
|
-
* {@
|
|
9995
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/point panel}이고,
|
|
9996
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/PanelSeriesOptions PanelSeriesOptions}이다.
|
|
9632
9997
|
*/
|
|
9633
9998
|
declare class PanelSeries extends CoordBaseSeries<PanelSeriesOptions> {
|
|
9634
9999
|
static readonly DEF_MIN_WIDTH = 80;
|
|
@@ -9667,8 +10032,8 @@ declare class PieSeriesThresholdImpl implements PieSeriesThreshold {
|
|
|
9667
10032
|
}
|
|
9668
10033
|
/**
|
|
9669
10034
|
* Pie 시리즈 모델.<br/>
|
|
9670
|
-
* {@
|
|
9671
|
-
* {@
|
|
10035
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/pie pie}이고,
|
|
10036
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/PieSeriesOptions PieSeriesOptions}이다.
|
|
9672
10037
|
*/
|
|
9673
10038
|
declare class PieSeries extends SparkSeries<PieSeriesOptions> {
|
|
9674
10039
|
static type: string;
|
|
@@ -9701,8 +10066,8 @@ declare class PinSeriesPoint extends MarkerSeriesPoint {
|
|
|
9701
10066
|
}
|
|
9702
10067
|
/**
|
|
9703
10068
|
* Point 시리즈 모델.<br/>
|
|
9704
|
-
* {@
|
|
9705
|
-
* {@
|
|
10069
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/point point}이고,
|
|
10070
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/PinSeriesOptions PinSeriesOptions}이다.
|
|
9706
10071
|
*/
|
|
9707
10072
|
declare class PinSeries extends MarkerSeries<PinSeriesOptions> {
|
|
9708
10073
|
private static readonly DEF_RADIUS;
|
|
@@ -9724,7 +10089,6 @@ declare class PinSeries extends MarkerSeries<PinSeriesOptions> {
|
|
|
9724
10089
|
protected _doApply(options: PinSeriesOptions): void;
|
|
9725
10090
|
protected _createPoint(source: any): PinSeriesPoint;
|
|
9726
10091
|
protected _defLabelOff(): number;
|
|
9727
|
-
protected _doLoadPoints(src: any): void;
|
|
9728
10092
|
protected _createLegendMarker(doc: Document, size: number): RmElement;
|
|
9729
10093
|
setCalcedColor(cs: CSSStyleDeclaration, prop: string): void;
|
|
9730
10094
|
getColorScale(): string | number;
|
|
@@ -9742,27 +10106,31 @@ declare class PinSeries extends MarkerSeries<PinSeriesOptions> {
|
|
|
9742
10106
|
*/
|
|
9743
10107
|
declare class PointSeriesPoint extends MarkerSeriesPoint {
|
|
9744
10108
|
position: PointViewPosition;
|
|
10109
|
+
x: number;
|
|
10110
|
+
y: number;
|
|
9745
10111
|
protected _readObject(series: ISeries<PointSeriesPoint>, v: any): void;
|
|
9746
10112
|
protected _valuesChanged(prev: any): boolean;
|
|
9747
10113
|
}
|
|
9748
10114
|
/**
|
|
9749
10115
|
* Point 시리즈 모델.<br/>
|
|
9750
|
-
* {@
|
|
9751
|
-
* {@
|
|
10116
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/point point}이고,
|
|
10117
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/PointSeriesOptions PointSeriesOptions}이다.
|
|
9752
10118
|
*/
|
|
9753
10119
|
declare class PointSeries extends MarkerSeries<PointSeriesOptions> {
|
|
9754
10120
|
static type: string;
|
|
9755
10121
|
static defaults: PointSeriesOptions;
|
|
10122
|
+
private _cluster;
|
|
9756
10123
|
private _shape;
|
|
9757
10124
|
private _stroke;
|
|
9758
10125
|
private _strokeWidth;
|
|
9759
10126
|
constructor(chart: IChart);
|
|
10127
|
+
protected _doInit(op: PointSeriesOptions): void;
|
|
9760
10128
|
getShape(): Shape;
|
|
9761
10129
|
getRadius(): number;
|
|
9762
10130
|
setLegendMarkerStyle(marker: RmElement): void;
|
|
10131
|
+
get cluster(): PointCluster;
|
|
9763
10132
|
protected _createPoint(source: any): PointSeriesPoint;
|
|
9764
10133
|
protected _defLabelOff(): number;
|
|
9765
|
-
protected _doLoadPoints(src: any): void;
|
|
9766
10134
|
setCalcedColor(cs: CSSStyleDeclaration, prop: string): void;
|
|
9767
10135
|
protected _createLegendMarker(doc: Document, size: number): RmElement;
|
|
9768
10136
|
legendMarker(doc: Document, size: number): RmElement;
|
|
@@ -9780,8 +10148,8 @@ declare class RouteSeriesPoint extends DataPoint {
|
|
|
9780
10148
|
}
|
|
9781
10149
|
/**
|
|
9782
10150
|
* Route 시리즈 모델.<br/>
|
|
9783
|
-
* {@
|
|
9784
|
-
* {@
|
|
10151
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/route route}이고,
|
|
10152
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/RouteSeriesOptions RouteSeriesOptions}이다.
|
|
9785
10153
|
*/
|
|
9786
10154
|
declare class RouteSeries extends Series<RouteSeriesOptions> {
|
|
9787
10155
|
static type: string;
|
|
@@ -9799,8 +10167,8 @@ declare class WaffleSeriesPoint extends SparkSeriesPoint {
|
|
|
9799
10167
|
}
|
|
9800
10168
|
/**
|
|
9801
10169
|
* Waffle 시리즈 모델.<br/>
|
|
9802
|
-
* {@
|
|
9803
|
-
* {@
|
|
10170
|
+
* {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/Waffle waffle}이고,
|
|
10171
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/WaffleSeriesOptions WaffleSeriesOptions}이다.
|
|
9804
10172
|
*/
|
|
9805
10173
|
declare class WaffleSeries extends SparkSeries<WaffleSeriesOptions> {
|
|
9806
10174
|
static readonly ROW_COUNT = 10;
|
|
@@ -9846,8 +10214,8 @@ declare class WaffleSeries extends SparkSeries<WaffleSeriesOptions> {
|
|
|
9846
10214
|
|
|
9847
10215
|
/**
|
|
9848
10216
|
* Text Annotation 모델.<br/>
|
|
9849
|
-
* {@
|
|
9850
|
-
* {@
|
|
10217
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 {@link https://realmap.co.kr/config/config/annotation/image shape}이고,
|
|
10218
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/ShapeAnnotationOptions ShapeAnnotationOptions}이다.
|
|
9851
10219
|
*/
|
|
9852
10220
|
declare class TextAnnotation extends Annotation<TextAnnotationOptions> {
|
|
9853
10221
|
static readonly type = "text";
|
|
@@ -9862,8 +10230,8 @@ declare class TextAnnotation extends Annotation<TextAnnotationOptions> {
|
|
|
9862
10230
|
|
|
9863
10231
|
/**
|
|
9864
10232
|
* 이미지 Annotation 모델.<br/>
|
|
9865
|
-
* {@
|
|
9866
|
-
* {@
|
|
10233
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 {@link https://realmap.co.kr/config/config/annotation/image image}이고,
|
|
10234
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/ImageAnnotationOptions ImageAnnotationOptions}이다.
|
|
9867
10235
|
*/
|
|
9868
10236
|
declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
9869
10237
|
static type: string;
|
|
@@ -9874,8 +10242,8 @@ declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
|
9874
10242
|
|
|
9875
10243
|
/**
|
|
9876
10244
|
* Shape Annotation 모델.<br/>
|
|
9877
|
-
* {@
|
|
9878
|
-
* {@
|
|
10245
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 {@link https://realmap.co.kr/config/config/annotation/image shape}이고,
|
|
10246
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/ShapeAnnotationOptions ShapeAnnotationOptions}이다.
|
|
9879
10247
|
*/
|
|
9880
10248
|
declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
9881
10249
|
static type: string;
|
|
@@ -9893,13 +10261,13 @@ declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
|
9893
10261
|
|
|
9894
10262
|
/**
|
|
9895
10263
|
* Text Annotation 모델.<br/>
|
|
9896
|
-
* {@
|
|
9897
|
-
* {@
|
|
10264
|
+
* {@link https://realmap.co.kr/docs/api/options/AnnotationOptions#type type}은 {@link https://realmap.co.kr/config/config/annotation/image shape}이고,
|
|
10265
|
+
* {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/ShapeAnnotationOptions ShapeAnnotationOptions}이다.
|
|
9898
10266
|
*/
|
|
9899
10267
|
declare class HtmlAnnotation extends Annotation<HtmlAnnotationOptions> {
|
|
9900
|
-
static readonly DEF_SIZE = 100;
|
|
9901
10268
|
static readonly type = "html";
|
|
9902
10269
|
static defaults: HtmlAnnotationOptions;
|
|
10270
|
+
private _paramRegx;
|
|
9903
10271
|
private _params;
|
|
9904
10272
|
private _paramCallback;
|
|
9905
10273
|
private _userParams;
|
|
@@ -9997,26 +10365,27 @@ declare class CircleElement extends RmElement {
|
|
|
9997
10365
|
setCircle(cx: number, cy: number, radius: number): void;
|
|
9998
10366
|
}
|
|
9999
10367
|
|
|
10368
|
+
declare const SVGNS = "http://www.w3.org/2000/svg";
|
|
10000
10369
|
declare const isObject: (v: any) => boolean;
|
|
10001
|
-
/** @
|
|
10370
|
+
/** @private */
|
|
10002
10371
|
declare const isArray: (arg: any) => arg is any[];
|
|
10003
10372
|
declare const isString: (v: any) => v is string;
|
|
10004
|
-
/** @
|
|
10373
|
+
/** @private */
|
|
10005
10374
|
declare const assignObj: {
|
|
10006
10375
|
<T extends {}, U>(target: T, source: U): T & U;
|
|
10007
10376
|
<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
|
|
10008
10377
|
<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
|
|
10009
10378
|
(target: object, ...sources: any[]): any;
|
|
10010
10379
|
};
|
|
10011
|
-
/** @
|
|
10380
|
+
/** @private */
|
|
10012
10381
|
declare const cos: (x: number) => number;
|
|
10013
|
-
/** @
|
|
10382
|
+
/** @private */
|
|
10014
10383
|
declare const sin: (x: number) => number;
|
|
10015
|
-
/** @
|
|
10384
|
+
/** @private */
|
|
10016
10385
|
declare const minv: (...values: number[]) => number;
|
|
10017
|
-
/** @
|
|
10386
|
+
/** @private */
|
|
10018
10387
|
declare const maxv: (...values: number[]) => number;
|
|
10019
|
-
/** @
|
|
10388
|
+
/** @private */
|
|
10020
10389
|
declare const absv: (x: number) => number;
|
|
10021
10390
|
declare const copyObj: (v: any) => any;
|
|
10022
10391
|
declare const pickNum: (v1: any, v2: any) => number;
|
|
@@ -10026,7 +10395,7 @@ declare const incv: (prev: number, next: number, rate: number) => number;
|
|
|
10026
10395
|
|
|
10027
10396
|
declare const _isIE: boolean;
|
|
10028
10397
|
/**
|
|
10029
|
-
* @
|
|
10398
|
+
* @private
|
|
10030
10399
|
*
|
|
10031
10400
|
*/
|
|
10032
10401
|
declare class Utils {
|
|
@@ -10117,7 +10486,7 @@ interface IDomContaner {
|
|
|
10117
10486
|
dom(): Element;
|
|
10118
10487
|
}
|
|
10119
10488
|
/**
|
|
10120
|
-
* @
|
|
10489
|
+
* @private
|
|
10121
10490
|
*
|
|
10122
10491
|
* Utilities for HTML element.
|
|
10123
10492
|
*/
|
|
@@ -10129,6 +10498,7 @@ declare class Dom {
|
|
|
10129
10498
|
static show(elt: HTMLElement | SVGSVGElement, visibleStyle?: string): void;
|
|
10130
10499
|
static addClass(elt: HTMLElement | SVGSVGElement, className: string): HTMLElement | SVGSVGElement;
|
|
10131
10500
|
static removeClass(elt: HTMLElement | SVGSVGElement, className: string): HTMLElement | SVGSVGElement;
|
|
10501
|
+
static isChildOf(dom: Element, className: string): Element;
|
|
10132
10502
|
static getImageUrl(css: CSSStyleDeclaration): string;
|
|
10133
10503
|
static getFocused(): HTMLElement;
|
|
10134
10504
|
static isAncestorOf(elt: HTMLElement, child: HTMLElement): boolean;
|
|
@@ -10191,6 +10561,7 @@ declare class Dom {
|
|
|
10191
10561
|
static setDisabled(dom: Element, value: boolean): void;
|
|
10192
10562
|
static setImportantStyle(css: CSSStyleDeclaration, property: string, value: string): void;
|
|
10193
10563
|
static setNoScale(elt: SVGElement): void;
|
|
10564
|
+
static isIntersectRectPath(rect: SVGGeometryElement, path: SVGGeometryElement, step?: number): boolean;
|
|
10194
10565
|
}
|
|
10195
10566
|
|
|
10196
10567
|
declare const getVersion: typeof Globals.getVersion;
|
|
@@ -10203,4 +10574,4 @@ declare const createChartAsync: typeof Globals.createChartAsync;
|
|
|
10203
10574
|
declare const preset: typeof Globals.preset;
|
|
10204
10575
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
10205
10576
|
|
|
10206
|
-
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, AnnotationView, AssetItemOptions, AssetOptionsType, BackgroundImageOptions, BandSeriesOptions, BandSeriesType, BarSeries, BarSeriesOptions, Body, BodyView, BubbleSeries, BubbleSeriesOptions, ChartAnnotationOptions, ChartAnnotationType, ChartConfiguration, ChartControl, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptionsOptions, ChartTextOptions, ChartView, CircleElement, CircleGauge, ClockGauge, Color, ColorListOptions, ColorRanger, CoordBaseSeries, Credits, CreditsOptions, DEG_RAD, DataPoint, DataPointArgs
|
|
10577
|
+
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, AnnotationView, AssetItemOptions, AssetOptionsType, BackgroundImageOptions, BandSeriesOptions, BandSeriesType, BarSeries, BarSeriesOptions, Body, BodyOptions, BodyView, BubbleSeries, BubbleSeriesOptions, ChartAnnotationOptions, ChartAnnotationType, ChartConfiguration, ChartControl, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartGlobalOptions as ChartOptionsOptions, ChartTextOptions, ChartView, CircleElement, CircleGauge, ClockGauge, Color, ColorListOptions, ColorRanger, CommonCallbackArgs, CoordBaseSeries, Credits, CreditsOptions, DEG_RAD, DataPoint, DataPointArgs, DataPointLabel, DataPointLabelOptions, Dom, DragTracker, ElementPool, ExportOptions, ExportType, Exporter, ExporterOptions, ExternalModuleManager, FeatureSeriesLabelOptions, FeatureSeriesOptions, FeatureSeriesType, FeatureType, FigureObject, FigureSeries, GLPointSeriesOptions, GLPointSeriesType, GLSeriesOptions, GradientOptions, HeatmapCellAggregation, HeatmapGridModeOptions, HeatmapMode, HeatmapPointModeOptions, HeatmapSeriesOptions, HeatmapSeriesType, HtmlAnnotation, IChart, IColorRanger, ILegendSource, IPercentSize, IPointView, IRect, ISeries, ISize, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageElement, ImageListOptions, ImageSeries, LayerElement, Legend, LegendOptions, LineElement, LineSeries, LineSeriesOptions, LinearGradientOptions, LoadCallbackArgs, MapArea, MapAxis, MapAxisBandGuide, MapAxisGuide, MapAxisLineGuide, MapAxisRangeGuide, MapBackgroundOptions, MapChart, MapCoord, MapCrosshair, MapInset, MapInsetDisplay, MapProjection, MapSeries, MapSeriesLabelOptions, MapSeriesOptions, MapSeriesType, MapTool, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPoint, MarkerSeriesPointView, MarkerSeriesView, ORG_ANGLE, OrthogonalSparkSeries, PI, PI_2, PanelSeries, PathElement, PatternOptions, PercentSize, PieSeries, PieSeriesOptions, PinSeries, PointElement, PointLabelView, PointSeries, PointViewPool, PointViewPosition, PolyLineElement, ProjectionType, RAD_DEG, RadialGradientOptions, RectElement, RegionSeriesOptions, RegionSeriesType, RmElement, RouteSeries, RouteSeriesOptions, RouteSeriesType, SVGNS, SVGStyleOrClass, SVGStyles, SankeySeriesOptions, SankeySeriesType, SectionView, SectorElement, Series, SeriesAnimation, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeDrawer, Size, SparkSeries, Subtitle, SubtitleOptions, TableSeriesOptions, TableSeriesType, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TileWebProvider, TiledWebSeriesOptions, TiledWebSeriesType, Title, TitleOptions, TooltipOptions, TrackSeriesOptions, TrackSeriesOutlineOptions, TrackSeriesType, Utils, ValuePoint, ValueSeries, VectorSeriesOptions, VectorSeriesType, WaffleSeries, _isIE, absv, assignObj, calcPercent, ceil, copyObj, cos, createChart, createChartAsync, createRect, extend, fixnum, floor, getDistance, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parseCoord, parsePercentSize, pickNum, pickProp, pickProp3, pixel, preset, rectToSize, setDebugging, setGlobals, setLicenseKey, setLogging, sin };
|