realchart 1.4.18 → 1.4.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gauge.js +1 -1
- package/gauge.mjs +1 -1
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +1 -1
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +2 -2
- package/ie/realchart-style.ie.css +3 -0
- package/ie/split.ie.js +1 -1
- package/ie/treemap.ie.js +1 -1
- package/ie/vector.ie.js +1 -1
- package/ie/wordcloud.ie.js +1 -1
- package/index.d.ts +678 -75
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +2 -2
- package/pictogram.mjs +2 -2
- package/realchart-style.css +3 -0
- package/split.js +1 -1
- package/split.mjs +1 -1
- package/treemap.js +1 -1
- package/treemap.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/wordcloud.js +1 -1
- package/wordcloud.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -1350,6 +1350,126 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
1350
1350
|
*/
|
|
1351
1351
|
rotation?: number;
|
|
1352
1352
|
}
|
|
1353
|
+
/**
|
|
1354
|
+
* 시리즈 그룹의 stack label 표시 위치.<br/>
|
|
1355
|
+
* {@link https://realchart.co.kr/config/config/base/seriesGroup/stackLabel/position position} 속성 값으로 사용된다.
|
|
1356
|
+
*
|
|
1357
|
+
* @enum
|
|
1358
|
+
*/
|
|
1359
|
+
/**
|
|
1360
|
+
* 시리즈 그룹의 stack labels 콜백 매개변수.<br/>
|
|
1361
|
+
*/
|
|
1362
|
+
interface StackLabelCallbackArgs {
|
|
1363
|
+
/**
|
|
1364
|
+
* RealChart의 공개 {@link https://realchart.co.kr/docs/api/classes/Chart Chart} 모델
|
|
1365
|
+
*/
|
|
1366
|
+
chart: object;
|
|
1367
|
+
/**
|
|
1368
|
+
* 스택의 x 값.<br/>
|
|
1369
|
+
*/
|
|
1370
|
+
x: any;
|
|
1371
|
+
/**
|
|
1372
|
+
* 스택의 양수 합계 값.<br/>
|
|
1373
|
+
*/
|
|
1374
|
+
positiveTotal: number;
|
|
1375
|
+
/**
|
|
1376
|
+
* 스택의 음수 합계 값.<br/>
|
|
1377
|
+
*/
|
|
1378
|
+
negativeTotal: number;
|
|
1379
|
+
/**
|
|
1380
|
+
* 스택의 전체 합계 값.<br/>
|
|
1381
|
+
*/
|
|
1382
|
+
total: number;
|
|
1383
|
+
}
|
|
1384
|
+
/**
|
|
1385
|
+
* 시리즈그룹의 stack labels 옵션.<br/>
|
|
1386
|
+
* {@link layout}이 {@link layout 'stack'}일 때 그룹 내 시리즈들의 합계 값을 label로 표시한다.<br/>
|
|
1387
|
+
* {@link https://realchart.co.kr/config/config/base/seriesGroup seriesGroup}의 'stackLabel' 항목으로 설정한다.
|
|
1388
|
+
*
|
|
1389
|
+
* ```js
|
|
1390
|
+
* const config = {
|
|
1391
|
+
* series: [{
|
|
1392
|
+
* type: 'bargroup',
|
|
1393
|
+
* layout: 'stack',
|
|
1394
|
+
* stackLabel: {
|
|
1395
|
+
* visible: true,
|
|
1396
|
+
* suffix: '원',
|
|
1397
|
+
* style: {
|
|
1398
|
+
* fontWeight: 'bold',
|
|
1399
|
+
* },
|
|
1400
|
+
* },
|
|
1401
|
+
* children: [...]
|
|
1402
|
+
* }]
|
|
1403
|
+
* };
|
|
1404
|
+
* ```
|
|
1405
|
+
*/
|
|
1406
|
+
interface StackLabelOptions extends IconedTextOptions {
|
|
1407
|
+
/**
|
|
1408
|
+
* stack labels 표시 여부.<br/>
|
|
1409
|
+
*
|
|
1410
|
+
* @default false
|
|
1411
|
+
*/
|
|
1412
|
+
visible?: boolean;
|
|
1413
|
+
/**
|
|
1414
|
+
* `align`으로 결정된 위치에서 추가로 이동하는 오프셋.<br/>
|
|
1415
|
+
* 양수: 데이터포인트 중심으로부터 더 멀어지는 방향으로 이동한다.<br/>
|
|
1416
|
+
* 음수: 데이터포인트 중심 방향으로 이동한다.<br/>
|
|
1417
|
+
* - `'left'`: 양수이면 더 왼쪽(inverted: 위쪽)으로 이동<br/>
|
|
1418
|
+
* - `'center'`/`'right'`: 양수이면 더 오른쪽(inverted: 아래쪽)으로 이동<br/>
|
|
1419
|
+
*
|
|
1420
|
+
* @default 0
|
|
1421
|
+
*/
|
|
1422
|
+
offset?: number;
|
|
1423
|
+
/**
|
|
1424
|
+
* label과 배치 기준점 사이의 간격(수직 방향).<br/>
|
|
1425
|
+
* 같은 x값에 표시 중인 pointLabel이 있으면 해당 pointLabel의 바깥쪽 끝을 기준으로 간격을 적용하고,<br/>
|
|
1426
|
+
* pointLabel이 없으면 스택 상단(또는 하단) 위치를 기준으로 간격을 적용한다.
|
|
1427
|
+
*
|
|
1428
|
+
* @default 4 pixel
|
|
1429
|
+
*/
|
|
1430
|
+
gap?: number;
|
|
1431
|
+
/**
|
|
1432
|
+
* 수평 정렬 상태.
|
|
1433
|
+
*
|
|
1434
|
+
*
|
|
1435
|
+
* @default 'center'
|
|
1436
|
+
*/
|
|
1437
|
+
align?: Align;
|
|
1438
|
+
/**
|
|
1439
|
+
* 스택별로 label 텍스트를 리턴하는 콜백.<br/>
|
|
1440
|
+
*/
|
|
1441
|
+
textCallback?: (args: StackLabelCallbackArgs) => string;
|
|
1442
|
+
/**
|
|
1443
|
+
* 스택별로 label 표시 여부를 리턴하는 콜백.<br/>
|
|
1444
|
+
*/
|
|
1445
|
+
visibleCallback?: (args: StackLabelCallbackArgs) => boolean;
|
|
1446
|
+
/**
|
|
1447
|
+
* 스택별로 추가 적용되는 스타일을 리턴한다.<br/>
|
|
1448
|
+
*/
|
|
1449
|
+
styleCallback?: (args: StackLabelCallbackArgs) => SVGStyleOrClass;
|
|
1450
|
+
/**
|
|
1451
|
+
* 수평 상태의 stack label일 때 텍스트 수직 위치 보정 값.<br/>
|
|
1452
|
+
* 텍스트 높이에 대한 상대 비율로 설정한 만큼 내려서 표시한다.
|
|
1453
|
+
*
|
|
1454
|
+
* @default 0.05
|
|
1455
|
+
*/
|
|
1456
|
+
verticalAdjust?: number;
|
|
1457
|
+
/**
|
|
1458
|
+
* stack label의 회전 각도.<br/>
|
|
1459
|
+
* -90 ~ 90 사이의 값으로 지정한다.<br/>
|
|
1460
|
+
* -90 미만의 값을 지정하면 -90, 90을 초과하는 값을 지정하면 90으로 설정된다.<br/>
|
|
1461
|
+
* inverted일 때, rotation 옵션은 무시된다.
|
|
1462
|
+
*
|
|
1463
|
+
* @default 0
|
|
1464
|
+
*/
|
|
1465
|
+
rotation?: number;
|
|
1466
|
+
/**
|
|
1467
|
+
* body 영역을 넘어갈 경우 대처 방식.<br/>
|
|
1468
|
+
*
|
|
1469
|
+
* @default 0
|
|
1470
|
+
*/
|
|
1471
|
+
overflowFit?: 'none' | 'hidden' | number;
|
|
1472
|
+
}
|
|
1353
1473
|
/**
|
|
1354
1474
|
* 데이터포인트 label의 연결선 옵션.<br/>
|
|
1355
1475
|
*/
|
|
@@ -1848,6 +1968,30 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
|
1848
1968
|
}
|
|
1849
1969
|
/** */
|
|
1850
1970
|
interface BasedSeriesLabelOptions extends DataPointLabelOptions {
|
|
1971
|
+
/**
|
|
1972
|
+
* 데이터포인트 라벨의 수평 정렬 방식.<br/>
|
|
1973
|
+
* 일반(inverted: false) 차트: 데이터포인트 x 위치를 기준으로 수평 배치를 결정한다.<br/>
|
|
1974
|
+
* - `'left'`: 데이터포인트 기준 왼쪽 바깥에 배치<br/>
|
|
1975
|
+
* - `'center'`: 데이터포인트 중앙에 배치<br/>
|
|
1976
|
+
* - `'right'`: 데이터포인트 기준 오른쪽 바깥에 배치<br/>
|
|
1977
|
+
* inverted: true 차트에서는 수평/수직 방향이 교환된다.<br/>
|
|
1978
|
+
* - `'left'`: 데이터포인트 기준 위쪽에 배치<br/>
|
|
1979
|
+
* - `'center'`: 중앙에 배치<br/>
|
|
1980
|
+
* - `'right'`: 데이터포인트 기준 아래쪽에 배치<br/>
|
|
1981
|
+
*
|
|
1982
|
+
* @default 'center'
|
|
1983
|
+
*/
|
|
1984
|
+
align?: Align;
|
|
1985
|
+
/**
|
|
1986
|
+
* `align`으로 결정된 위치에서 추가로 이동하는 오프셋.<br/>
|
|
1987
|
+
* 양수: 데이터포인트 중심으로부터 더 멀어지는 방향으로 이동한다.<br/>
|
|
1988
|
+
* 음수: 데이터포인트 중심 방향으로 이동한다.<br/>
|
|
1989
|
+
* - `'left'`: 양수이면 더 왼쪽(inverted: 위쪽)으로 이동<br/>
|
|
1990
|
+
* - `'center'`/`'right'`: 양수이면 더 오른쪽(inverted: 아래쪽)으로 이동<br/>
|
|
1991
|
+
*
|
|
1992
|
+
* @default 0
|
|
1993
|
+
*/
|
|
1994
|
+
alignOffset?: number;
|
|
1851
1995
|
/**
|
|
1852
1996
|
* 데이터포인트 본체와 label을 연결하는 선.<br/>
|
|
1853
1997
|
*/
|
|
@@ -2041,6 +2185,14 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2041
2185
|
* 그룹 툴팁의 아래쪽에 표시되는 텍스트.<br/>
|
|
2042
2186
|
*/
|
|
2043
2187
|
tooltipFooter?: string;
|
|
2188
|
+
/**
|
|
2189
|
+
* {@link layout}이 {@link layout 'stack'}일 때
|
|
2190
|
+
* 그룹 내 시리즈들의 합계 값을 label로 표시하는 옵션.<br/>
|
|
2191
|
+
* true로 지정하면 기본 설정으로 stack labels를 표시한다.
|
|
2192
|
+
*
|
|
2193
|
+
* @default undefined
|
|
2194
|
+
*/
|
|
2195
|
+
stackLabel?: StackLabelOptions | boolean;
|
|
2044
2196
|
}
|
|
2045
2197
|
declare const LineSeriesGroupType = "linegroup";
|
|
2046
2198
|
/**
|
|
@@ -2648,10 +2800,6 @@ interface LineSeriesFlagOptions extends IconedTextOptions {
|
|
|
2648
2800
|
* @default 8
|
|
2649
2801
|
*/
|
|
2650
2802
|
offset?: number;
|
|
2651
|
-
/**
|
|
2652
|
-
* flag에 표시될 아이콘의 경로
|
|
2653
|
-
*/
|
|
2654
|
-
icon?: string;
|
|
2655
2803
|
}
|
|
2656
2804
|
/**
|
|
2657
2805
|
* @enum
|
|
@@ -2947,6 +3095,156 @@ interface BoxPlotSeriesOptions extends LowRangedSeriesOptions {
|
|
|
2947
3095
|
*/
|
|
2948
3096
|
tooltipDetail?: string;
|
|
2949
3097
|
}
|
|
3098
|
+
/**
|
|
3099
|
+
* 버블 시리즈의 각 버블 내부에 파이 차트를 표시하기 위한 설정.<br/>
|
|
3100
|
+
* {@link fields}로 지정한 데이터 필드들의 값을 비율로 계산하여 파이 조각으로 표현한다.<br/>
|
|
3101
|
+
*
|
|
3102
|
+
* ###### json 객체 데이터
|
|
3103
|
+
* {@link fields}에 지정한 필드명이 데이터 객체의 속성명과 일치해야 한다.
|
|
3104
|
+
* ```json
|
|
3105
|
+
* {
|
|
3106
|
+
* "type": "bubble",
|
|
3107
|
+
* "pie": {
|
|
3108
|
+
* "fields": ["sales", "cost", "profit"],
|
|
3109
|
+
* "categories": ["매출", "비용", "이익"],
|
|
3110
|
+
* "colors": ["#7B68EE", "#87CEEB", "#4169E1"]
|
|
3111
|
+
* },
|
|
3112
|
+
* "data": [
|
|
3113
|
+
* { "x": 5, "y": -6, "z": 50, "sales": 30, "cost": 25, "profit": 45 },
|
|
3114
|
+
* { "x": 11, "y": 5, "z": 80, "sales": 55, "cost": 25, "profit": 20 }
|
|
3115
|
+
* ]
|
|
3116
|
+
* }
|
|
3117
|
+
* ```
|
|
3118
|
+
*
|
|
3119
|
+
* ###### 배열 데이터 (인덱스 기반)
|
|
3120
|
+
* {@link fields}에 숫자 인덱스를 지정하면 배열 데이터에서 해당 위치의 값을 사용한다.
|
|
3121
|
+
* ```json
|
|
3122
|
+
* {
|
|
3123
|
+
* "type": "bubble",
|
|
3124
|
+
* "pie": { "fields": [3, 4, 5] },
|
|
3125
|
+
* "data": [
|
|
3126
|
+
* [5, -6, 50, 30, 25, 45],
|
|
3127
|
+
* [11, 5, 80, 55, 25, 20]
|
|
3128
|
+
* ]
|
|
3129
|
+
* }
|
|
3130
|
+
* ```
|
|
3131
|
+
* 위 예시에서 index 0~2는 x, y, z이고, index 3~5가 파이 조각 값이 된다.
|
|
3132
|
+
*
|
|
3133
|
+
* ###### 파이 조각이 일부 누락된 경우
|
|
3134
|
+
* 특정 데이터포인트에 필드 값이 없거나(undefined/null/NaN) 0이면 해당 조각은 표시되지 않는다.
|
|
3135
|
+
* ```json
|
|
3136
|
+
* {
|
|
3137
|
+
* "type": "bubble",
|
|
3138
|
+
* "pie": { "fields": ["a", "b", "c"] },
|
|
3139
|
+
* "data": [
|
|
3140
|
+
* { "x": 5, "y": 3, "z": 40, "a": 30, "b": 25, "c": 45 },
|
|
3141
|
+
* { "x": 8, "y": 7, "z": 20, "a": 50, "b": 50 }
|
|
3142
|
+
* ]
|
|
3143
|
+
* }
|
|
3144
|
+
* ```
|
|
3145
|
+
* 두 번째 데이터포인트는 "c" 필드가 없으므로 "a", "b" 두 조각만 표시된다.
|
|
3146
|
+
*/
|
|
3147
|
+
interface BubblePieOptions extends ChartItemOptions {
|
|
3148
|
+
/**
|
|
3149
|
+
* 파이 조각 값을 가져올 데이터 필드명 배열.<br/>
|
|
3150
|
+
* 각 필드의 값이 하나의 파이 조각이 된다.
|
|
3151
|
+
* 데이터포인트 json 객체의 속성명과 일치해야 한다.<br/>
|
|
3152
|
+
*
|
|
3153
|
+
* ```json
|
|
3154
|
+
* // json 객체 데이터 — 속성명으로 접근
|
|
3155
|
+
* "pie": { "fields": ["sales", "cost", "profit"] },
|
|
3156
|
+
* "data": [{ "x": 5, "y": -6, "z": 50, "sales": 30, "cost": 25, "profit": 45 }]
|
|
3157
|
+
*
|
|
3158
|
+
* // 배열 데이터 — 인덱스로 접근
|
|
3159
|
+
* "pie": { "fields": [3, 4, 5] },
|
|
3160
|
+
* "data": [[5, -6, 50, 30, 25, 45]]
|
|
3161
|
+
* ```
|
|
3162
|
+
*/
|
|
3163
|
+
fields?: number[] | string[];
|
|
3164
|
+
/**
|
|
3165
|
+
* 각 파이 조각의 표시 라벨 배열.<br/>
|
|
3166
|
+
* {@link fields}와 동일한 순서로 지정한다.
|
|
3167
|
+
* 툴팁이나 범례에서 필드명 대신 이 라벨이 사용된다.<br/>
|
|
3168
|
+
*
|
|
3169
|
+
* ```json
|
|
3170
|
+
* "pie": {
|
|
3171
|
+
* "fields": ["sales", "cost", "profit"],
|
|
3172
|
+
* "categories": ["매출", "비용", "이익"]
|
|
3173
|
+
* }
|
|
3174
|
+
* ```
|
|
3175
|
+
* 미지정 시 {@link fields}의 필드명이 그대로 사용된다.
|
|
3176
|
+
*/
|
|
3177
|
+
categories?: string[];
|
|
3178
|
+
/**
|
|
3179
|
+
* 원호 시작 각도.<br/>
|
|
3180
|
+
* 지정하지 않거나 잘못된 값이면 0으로 계산된다. 0은 시계의 12시 위치다.<br/>
|
|
3181
|
+
*
|
|
3182
|
+
* @default 0
|
|
3183
|
+
*/
|
|
3184
|
+
startAngle?: number;
|
|
3185
|
+
/**
|
|
3186
|
+
* 원호 전체 각도.<br/>
|
|
3187
|
+
* 0 ~ 360 사이의 값으로 지정해야 한다.
|
|
3188
|
+
* 범위를 벗어난 값은 범위 안으로 조정된다.
|
|
3189
|
+
* 지정하지 않거나 0보다 큰 값이 아니면 360으로 적용된다.<br/>
|
|
3190
|
+
*
|
|
3191
|
+
* @default 360
|
|
3192
|
+
*/
|
|
3193
|
+
totalAngle?: number;
|
|
3194
|
+
/**
|
|
3195
|
+
* true면 시계 방향으로 회전한다.<br/>
|
|
3196
|
+
*
|
|
3197
|
+
* @default true
|
|
3198
|
+
*/
|
|
3199
|
+
clockwise?: boolean;
|
|
3200
|
+
/**
|
|
3201
|
+
* 파이 조각별 범례 항목을 표시할지 여부.<br/>
|
|
3202
|
+
*
|
|
3203
|
+
* @default false
|
|
3204
|
+
*/
|
|
3205
|
+
visibleInLegend?: boolean;
|
|
3206
|
+
/**
|
|
3207
|
+
* 툴팁 텍스트를 리턴하는 콜백 함수.<br/>
|
|
3208
|
+
* undefined를 리턴하면 {@link tooltipText} 속성이 사용된다.
|
|
3209
|
+
*/
|
|
3210
|
+
tooltipCallback?: (args: DataPointCallbackArgs) => string;
|
|
3211
|
+
/**
|
|
3212
|
+
* 데이터포인트 툴팁 텍스트.<br/>
|
|
3213
|
+
* {@link tooltipCallback}이 설정되고 콜백에서 undefined를 리턴하지 않으면 이 속성은 무시된다.<br/>
|
|
3214
|
+
* 사용 가능한 템플릿 변수: ${label}, ${value}, ${percent}, ${field}
|
|
3215
|
+
*
|
|
3216
|
+
* @default '${label}: ${value} (${percent}%)'
|
|
3217
|
+
*/
|
|
3218
|
+
tooltipText?: string;
|
|
3219
|
+
/**
|
|
3220
|
+
* 0보다 큰 값을 지정해서 도넛 형태로 표시할 수 있다.<br/>
|
|
3221
|
+
* 버블 원호의 반지름에 대한 상대적 크기(%)나 픽셀 수로 지정할 수 있다.<br/>
|
|
3222
|
+
*
|
|
3223
|
+
*/
|
|
3224
|
+
innerRadius?: PercentSize;
|
|
3225
|
+
/**
|
|
3226
|
+
* 파이 조각별 색상을 지정한다.<br/>
|
|
3227
|
+
* 색 배열로 지정하거나, 'colors' asset으로 등록된 이름을 지정할 수 있다.<br/>
|
|
3228
|
+
* 또, 'palette-name@palette'나 'palette-name@pal' 형식으로 설정해서
|
|
3229
|
+
* 라이브러리가 기본 css로 제공하는 palette 색상 배열을 사용할 수 있다.<br/>
|
|
3230
|
+
* 미지정 시 차트 팔레트 색상이 순서대로 적용된다.
|
|
3231
|
+
*
|
|
3232
|
+
*/
|
|
3233
|
+
colors?: string | string[];
|
|
3234
|
+
}
|
|
3235
|
+
/**
|
|
3236
|
+
* @enum
|
|
3237
|
+
*/
|
|
3238
|
+
declare const _BubblePieLegendMode: {
|
|
3239
|
+
/** 시리즈 마커만 범례에 표시한다. */
|
|
3240
|
+
readonly SERIES: "series";
|
|
3241
|
+
/** 슬라이스 마커만 범례에 표시한다. */
|
|
3242
|
+
readonly SLICE: "slice";
|
|
3243
|
+
/** 시리즈 마커와 슬라이스 마커를 모두 표시한다. */
|
|
3244
|
+
readonly BOTH: "both";
|
|
3245
|
+
};
|
|
3246
|
+
/** @dummy */
|
|
3247
|
+
type BubblePieLegendMode = typeof _BubblePieLegendMode[keyof typeof _BubblePieLegendMode];
|
|
2950
3248
|
/**
|
|
2951
3249
|
* @enum
|
|
2952
3250
|
*/
|
|
@@ -3020,6 +3318,24 @@ interface BubbleSeriesOptions extends MarkerSeriesOptions {
|
|
|
3020
3318
|
* @default 2
|
|
3021
3319
|
*/
|
|
3022
3320
|
paddingRate?: number;
|
|
3321
|
+
/**
|
|
3322
|
+
* 버블 내부에 파이 차트를 표시하기 위한 설정.<br/>
|
|
3323
|
+
* 이 속성을 지정하면 각 버블 내부에 데이터 필드별 비율을 파이 차트로 표시한다.<br/>
|
|
3324
|
+
* boolean으로 지정하면 {@link visible} 속성에 적용된다.
|
|
3325
|
+
*/
|
|
3326
|
+
pie?: BubblePieOptions | boolean;
|
|
3327
|
+
/**
|
|
3328
|
+
* {@link pie} 속성이 활성화되었을 때 범례에 표시할 항목을 지정한다.<br/>
|
|
3329
|
+
* - `'series'`: 시리즈 마커만 표시한다.<br/>
|
|
3330
|
+
* - `'slice'`: 슬라이스 마커만 표시한다.<br/>
|
|
3331
|
+
* - `'both'`: 시리즈 마커와 슬라이스 마커를 모두 표시한다.<br/>
|
|
3332
|
+
*
|
|
3333
|
+
* {@link pie}.{@link BubblePieOptions#visibleInLegend}이 false이면 슬라이스 마커는 표시되지 않으며,
|
|
3334
|
+
* 이 속성과 무관하게 시리즈 마커만 표시된다.<br/>
|
|
3335
|
+
*
|
|
3336
|
+
* @default 'both'
|
|
3337
|
+
*/
|
|
3338
|
+
legendMode?: BubblePieLegendMode;
|
|
3023
3339
|
}
|
|
3024
3340
|
declare const BumpSeriesType = "bump";
|
|
3025
3341
|
/**
|
|
@@ -3698,10 +4014,6 @@ interface RadialSeriesOptions extends WidgetSeriesOptions {
|
|
|
3698
4014
|
/**
|
|
3699
4015
|
*/
|
|
3700
4016
|
interface PieSeriesTextOptions extends IconedTextOptions {
|
|
3701
|
-
/**
|
|
3702
|
-
* 텍스트와 함께 출력 될 아이콘의 경로
|
|
3703
|
-
*/
|
|
3704
|
-
icon?: string;
|
|
3705
4017
|
}
|
|
3706
4018
|
/**
|
|
3707
4019
|
* 데이터포인트 라벨의 회전 방식 지정.<br/>
|
|
@@ -7978,6 +8290,11 @@ declare abstract class IconedText<OP extends IconedTextOptions = IconedTextOptio
|
|
|
7978
8290
|
abstract getDefaultIconPos(): IconPosition;
|
|
7979
8291
|
getIconPos(): IconPosition;
|
|
7980
8292
|
protected _doPrepareRender(chart: IChart): void;
|
|
8293
|
+
/**
|
|
8294
|
+
* options.icon 또는 fallback 경로를 해석하여 최종 URL을 반환한다.
|
|
8295
|
+
* @param fallback - options.icon이 없을 때 사용할 대체 경로
|
|
8296
|
+
*/
|
|
8297
|
+
getIconUrl(fallback?: string): string | null;
|
|
7981
8298
|
getUrl(url: string): string;
|
|
7982
8299
|
}
|
|
7983
8300
|
declare class BackgroundImage extends ChartItem<BackgroundImageOptions> {
|
|
@@ -8852,6 +9169,8 @@ declare class DataPointLabel<OP extends DataPointLabelOptions = DataPointLabelOp
|
|
|
8852
9169
|
getTextDomain(p: DataPoint): IRichTextDomain;
|
|
8853
9170
|
getText(value: any): string;
|
|
8854
9171
|
getOffset(): number;
|
|
9172
|
+
getAlign(): Align;
|
|
9173
|
+
getAlignOffset(): number;
|
|
8855
9174
|
getDefaultIconPos(): IconPosition;
|
|
8856
9175
|
getRotation(): number;
|
|
8857
9176
|
protected _isVisible(): boolean;
|
|
@@ -8859,6 +9178,34 @@ declare class DataPointLabel<OP extends DataPointLabelOptions = DataPointLabelOp
|
|
|
8859
9178
|
protected _doApply(op: OP): void;
|
|
8860
9179
|
protected _doPrepareRender(chart: IChart): void;
|
|
8861
9180
|
}
|
|
9181
|
+
/**
|
|
9182
|
+
* {@link SeriesGroup 시리즈그룹}의 스택 합계 라벨 표시에 대한 모델.<br/>
|
|
9183
|
+
* 옵션 설정 모델은 {@link StackLabelOptions}이다.
|
|
9184
|
+
*/
|
|
9185
|
+
declare class StackLabel extends IconedText<StackLabelOptions> {
|
|
9186
|
+
static readonly OFFSET = 4;
|
|
9187
|
+
static defaults: StackLabelOptions;
|
|
9188
|
+
_overflowFit: number;
|
|
9189
|
+
_vertAdjust: number;
|
|
9190
|
+
_args: StackLabelCallbackArgs;
|
|
9191
|
+
protected _doInit(op: StackLabelOptions): void;
|
|
9192
|
+
getText(value: number): string;
|
|
9193
|
+
getOffset(): number;
|
|
9194
|
+
getGap(): number;
|
|
9195
|
+
getDefaultIconPos(): IconPosition;
|
|
9196
|
+
getCallbackArgs(chart: IChart, x: any, positiveTotal: number, negativeTotal: number): StackLabelCallbackArgs;
|
|
9197
|
+
isStackLabelVisible(args: StackLabelCallbackArgs): boolean;
|
|
9198
|
+
getStackLabelText(args: StackLabelCallbackArgs, value: number): string;
|
|
9199
|
+
getRotation(): number;
|
|
9200
|
+
getStackLabelStyle(args: StackLabelCallbackArgs): SVGStyleOrClass;
|
|
9201
|
+
protected _isVisible(): boolean;
|
|
9202
|
+
protected _doApply(op: StackLabelOptions): void;
|
|
9203
|
+
}
|
|
9204
|
+
interface StackTotalInfo {
|
|
9205
|
+
x: any;
|
|
9206
|
+
positiveTotal: number;
|
|
9207
|
+
negativeTotal: number;
|
|
9208
|
+
}
|
|
8862
9209
|
interface IPlottingItem {
|
|
8863
9210
|
_type(): string;
|
|
8864
9211
|
options: SeriesOptions | SeriesGroupOptions;
|
|
@@ -9040,6 +9387,11 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
9040
9387
|
getTooltipDetail(point: DataPoint): string;
|
|
9041
9388
|
getTooltipText(series: ISeries, point: DataPoint): string;
|
|
9042
9389
|
getTooltipParam(series: ISeries, point: DataPoint, param: string): any;
|
|
9390
|
+
/**
|
|
9391
|
+
* 툴팁 헤더 색상을 반환한다.<br/>
|
|
9392
|
+
* null을 반환하면 TooltipView 기본 색상 로직이 사용된다.
|
|
9393
|
+
*/
|
|
9394
|
+
getTooltipHeaderColor(point: DataPoint): string;
|
|
9043
9395
|
_type(): string;
|
|
9044
9396
|
_viewType(): string;
|
|
9045
9397
|
/**
|
|
@@ -9439,7 +9791,7 @@ declare abstract class WidgetSeriesLabel<OP extends WidgetSeriesLabelOptions = W
|
|
|
9439
9791
|
* 연결선 모델.<br/>
|
|
9440
9792
|
*/
|
|
9441
9793
|
get connector(): WidgetSeriesConnector;
|
|
9442
|
-
|
|
9794
|
+
getWidgetAlign(): number;
|
|
9443
9795
|
protected _doApply(options: OP): void;
|
|
9444
9796
|
}
|
|
9445
9797
|
declare class OthersGroup extends ChartItem<OthersGroupOptions> {
|
|
@@ -9517,6 +9869,8 @@ declare abstract class ClusterableSeries<OP extends ClusterableSeriesOptions = C
|
|
|
9517
9869
|
declare class BasedSeriesLabel<OP extends BasedSeriesLabelOptions = BasedSeriesLabelOptions> extends DataPointLabel<OP> {
|
|
9518
9870
|
static defaults: BasedSeriesLabelOptions;
|
|
9519
9871
|
private _line;
|
|
9872
|
+
getAlign(): Align;
|
|
9873
|
+
getAlignOffset(): number;
|
|
9520
9874
|
/**
|
|
9521
9875
|
* 연결선 설정 모델.<br/>
|
|
9522
9876
|
*/
|
|
@@ -9542,6 +9896,7 @@ declare abstract class BasedSeries<OP extends BasedSeriesOptions = BasedSeriesOp
|
|
|
9542
9896
|
getBaseValue(axis: IAxis): number;
|
|
9543
9897
|
isBased(axis: IAxis): boolean;
|
|
9544
9898
|
protected _getGroupBase(): number;
|
|
9899
|
+
protected _getLabelDefaultPos(labels: DataPointLabel, pos: PointLabelPosition): PointLabelPosition;
|
|
9545
9900
|
}
|
|
9546
9901
|
/**
|
|
9547
9902
|
*/
|
|
@@ -9579,9 +9934,11 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
9579
9934
|
_yAxisObj: IAxis;
|
|
9580
9935
|
_valid: boolean;
|
|
9581
9936
|
_stackPoints: Map<number, DataPoint[]>;
|
|
9937
|
+
_stackTotals: Map<number, StackTotalInfo>;
|
|
9582
9938
|
_stacked: boolean;
|
|
9583
9939
|
_legended: any;
|
|
9584
9940
|
private _seriesChanged;
|
|
9941
|
+
_stackLabel: StackLabel;
|
|
9585
9942
|
_sBase: number;
|
|
9586
9943
|
_yMin: number;
|
|
9587
9944
|
_yMax: number;
|
|
@@ -9607,6 +9964,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
9607
9964
|
getDistance(): number;
|
|
9608
9965
|
get index(): number;
|
|
9609
9966
|
get visCount(): number;
|
|
9967
|
+
get stackLabel(): StackLabel;
|
|
9610
9968
|
_type(): string;
|
|
9611
9969
|
_seriesType(): string;
|
|
9612
9970
|
connectable(axis: IAxis): boolean;
|
|
@@ -9625,6 +9983,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
9625
9983
|
remove(series: T): boolean;
|
|
9626
9984
|
_getVisiblePoints(): DataPoint[];
|
|
9627
9985
|
getLayoutMax(): number;
|
|
9986
|
+
protected _doInit(op: OP): void;
|
|
9628
9987
|
protected _doApply(op: OP): void;
|
|
9629
9988
|
protected _doSaveArray(prop: string, value: any[]): any[];
|
|
9630
9989
|
_prepareRender(): void;
|
|
@@ -10221,9 +10580,9 @@ declare class CrosshairFlag extends ChartItem<CrosshairFlagOptions> {
|
|
|
10221
10580
|
/**
|
|
10222
10581
|
* 직선 또는 bar 형태로 축 위의 마우스 위치를 표시하는 구성 요소 모델.<br/>
|
|
10223
10582
|
*/
|
|
10224
|
-
declare class Crosshair extends ChartItem<
|
|
10583
|
+
declare class Crosshair extends ChartItem<NumberCrosshairOptions & TimeCrosshairOptions> {
|
|
10225
10584
|
axis: IAxis;
|
|
10226
|
-
static defaults:
|
|
10585
|
+
static defaults: NumberCrosshairOptions & TimeCrosshairOptions;
|
|
10227
10586
|
private _args;
|
|
10228
10587
|
constructor(axis: IAxis);
|
|
10229
10588
|
protected _doInit(op: CrosshairOptions): void;
|
|
@@ -10418,6 +10777,7 @@ declare abstract class AxisGuide<OP extends AxisGuideOptions = AxisGuideOptions>
|
|
|
10418
10777
|
* label 모델.
|
|
10419
10778
|
*/
|
|
10420
10779
|
get label(): AxisGuideLabel;
|
|
10780
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
10421
10781
|
canConstainedTo(row: number, col: number): boolean;
|
|
10422
10782
|
}
|
|
10423
10783
|
/**
|
|
@@ -11092,7 +11452,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11092
11452
|
/**
|
|
11093
11453
|
* {@link stepPixels}가 적용 중일 때, 최대 표시 step 개수.<br/>
|
|
11094
11454
|
* 값을 지정하지 않으면(undefined) 8 또는,
|
|
11095
|
-
* 축 길이를 {@link stepPixels
|
|
11455
|
+
* 축 길이를 {@link stepPixels} 보다 10% 작은 값으로 나눈 개수(더하기 1) 중 큰 값으로 설정된다.
|
|
11096
11456
|
* 또, NaN이 되는 잘못된 값으로 설정하면 표시 개수가 제한되지 않는다.
|
|
11097
11457
|
*/
|
|
11098
11458
|
maxCount?: number;
|
|
@@ -11104,7 +11464,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11104
11464
|
*/
|
|
11105
11465
|
steps?: (number | Date)[] | ((args: StepCallbackArgs) => (number | Date)[]);
|
|
11106
11466
|
/**
|
|
11107
|
-
* {@
|
|
11467
|
+
* {@link steps}로 지정하는 경우, 설정된 범위 밖의 step들은 무시한다.<br/>
|
|
11108
11468
|
*/
|
|
11109
11469
|
clipSteps?: boolean;
|
|
11110
11470
|
/**
|
|
@@ -11518,7 +11878,7 @@ interface AxisRangeGuideOptions extends AxisGuideOptions {
|
|
|
11518
11878
|
endValue: number;
|
|
11519
11879
|
}
|
|
11520
11880
|
/**
|
|
11521
|
-
* Axis tick의 위치에 수평 혹은 수직선으로 plot
|
|
11881
|
+
* Axis tick의 위치에 수평 혹은 수직선으로 plot 영역을 구분 표시한다.<br/>
|
|
11522
11882
|
* {@link visible} 기본값이 undefined인데,
|
|
11523
11883
|
* visible이 undefined나 null로 지정되면, 축 위치에 따라 visible 여부가 결정된다.
|
|
11524
11884
|
*/
|
|
@@ -11569,10 +11929,14 @@ interface CrosshairFlagOptions extends ChartItemOptions {
|
|
|
11569
11929
|
* flag에 표시될 텍스트 형식.
|
|
11570
11930
|
* <br>
|
|
11571
11931
|
* 별도로 지정하지 않으면 현재 위치에 해당하는 축 값을 표시한다.
|
|
11572
|
-
* Category 축인
|
|
11932
|
+
* Category 축인 경우 위치에 해당하는 category 이름을 표시한다.
|
|
11933
|
+
* <br>
|
|
11934
|
+
* [미구현 issue#1437] {@link CrosshairOptions.numberFormat numberFormat}, {@link CrosshairOptions.timeFormat timeFormat}으로
|
|
11935
|
+
* 동일한 역할을 수행하므로 이 속성은 사용되지 않는다.
|
|
11936
|
+
* flag별 포맷 오버라이드가 필요한 경우 구현을 고려할 수 있다.
|
|
11573
11937
|
*
|
|
11938
|
+
* @private
|
|
11574
11939
|
*/
|
|
11575
|
-
format?: string;
|
|
11576
11940
|
/**
|
|
11577
11941
|
* flag에 표시되는 text의 스타일.
|
|
11578
11942
|
*
|
|
@@ -11658,29 +12022,33 @@ interface CrosshairOptions extends ChartItemOptions {
|
|
|
11658
12022
|
*/
|
|
11659
12023
|
followPointer?: boolean;
|
|
11660
12024
|
/**
|
|
11661
|
-
*
|
|
12025
|
+
* 위치가 변경될 때 발생되는 callback.<br/>
|
|
12026
|
+
*/
|
|
12027
|
+
onChange?: (args: CrosshairCallbackArgs) => void;
|
|
12028
|
+
}
|
|
12029
|
+
/**
|
|
12030
|
+
* 숫자(연속) 축 crosshair 설정 옵션.<br/>
|
|
12031
|
+
* {@link LinearAxisOptions}, {@link LogAxisOptions}에서 사용된다.
|
|
12032
|
+
*/
|
|
12033
|
+
interface NumberCrosshairOptions extends CrosshairOptions {
|
|
12034
|
+
/**
|
|
12035
|
+
* 표시되는 값이 숫자일 때 사용되는 표시 형식.<br/>
|
|
11662
12036
|
*
|
|
11663
12037
|
* @default '#,##0.#'
|
|
11664
12038
|
*/
|
|
11665
12039
|
numberFormat?: string;
|
|
12040
|
+
}
|
|
12041
|
+
/**
|
|
12042
|
+
* 시간 축 crosshair 설정 옵션.<br/>
|
|
12043
|
+
* {@link TimeAxisOptions}에서 사용된다.
|
|
12044
|
+
*/
|
|
12045
|
+
interface TimeCrosshairOptions extends CrosshairOptions {
|
|
11666
12046
|
/**
|
|
11667
|
-
* 표시되는 값이 날짜(시간)일 때 사용되는 표시
|
|
12047
|
+
* 표시되는 값이 날짜(시간)일 때 사용되는 표시 형식.<br/>
|
|
11668
12048
|
*
|
|
11669
12049
|
* @default 'yyyy-MM-dd HH:mm'
|
|
11670
12050
|
*/
|
|
11671
12051
|
timeFormat?: string;
|
|
11672
|
-
/**
|
|
11673
|
-
* 위치가 변경될 때 발생되는 callback.<br/>
|
|
11674
|
-
*/
|
|
11675
|
-
onChange?: (args: CrosshairCallbackArgs) => void;
|
|
11676
|
-
/**
|
|
11677
|
-
* @private
|
|
11678
|
-
* x축 crosshair 영역에 포함된 marker 데이터포인트들이
|
|
11679
|
-
* 마우스 아래 있을 때와 동일한 효과를 표시한다.
|
|
11680
|
-
*
|
|
11681
|
-
* @defalut false
|
|
11682
|
-
*/
|
|
11683
|
-
markerHovering?: boolean;
|
|
11684
12052
|
}
|
|
11685
12053
|
/**
|
|
11686
12054
|
* @enum
|
|
@@ -12396,6 +12764,10 @@ interface LinearAxisOptions extends ContinuousAxisOptions {
|
|
|
12396
12764
|
* @append
|
|
12397
12765
|
*/
|
|
12398
12766
|
label?: LinearAxisLabelOptions | boolean;
|
|
12767
|
+
/**
|
|
12768
|
+
* @append
|
|
12769
|
+
*/
|
|
12770
|
+
crosshair?: NumberCrosshairOptions | boolean;
|
|
12399
12771
|
}
|
|
12400
12772
|
/**
|
|
12401
12773
|
* Log축 틱 설정 모델.<br/>
|
|
@@ -12447,6 +12819,10 @@ interface LogAxisOptions extends ContinuousAxisOptions {
|
|
|
12447
12819
|
* @default 500
|
|
12448
12820
|
*/
|
|
12449
12821
|
roundThrrehold?: number;
|
|
12822
|
+
/**
|
|
12823
|
+
* @append
|
|
12824
|
+
*/
|
|
12825
|
+
crosshair?: NumberCrosshairOptions | boolean;
|
|
12450
12826
|
}
|
|
12451
12827
|
/**
|
|
12452
12828
|
* 시간축 label 설정 모델.<br/>
|
|
@@ -12509,6 +12885,10 @@ interface TimeAxisOptions extends ContinuousAxisOptions {
|
|
|
12509
12885
|
* @append
|
|
12510
12886
|
*/
|
|
12511
12887
|
tick?: TimeAxisTickOptions | boolean;
|
|
12888
|
+
/**
|
|
12889
|
+
* @append
|
|
12890
|
+
*/
|
|
12891
|
+
crosshair?: TimeCrosshairOptions | boolean;
|
|
12512
12892
|
}
|
|
12513
12893
|
/** @dummy */
|
|
12514
12894
|
type AxisOptionsType = CategoryAxisOptions | LinearAxisOptions | LogAxisOptions | TimeAxisOptions;
|
|
@@ -12659,6 +13039,12 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
12659
13039
|
* {@link iconWidth}도 미지정이면 이미지 원본 크기로 표시된다.
|
|
12660
13040
|
*/
|
|
12661
13041
|
iconHeight?: number;
|
|
13042
|
+
/**
|
|
13043
|
+
* 텍스트와 함께 표시할 아이콘 이미지의 경로.<br/>
|
|
13044
|
+
* {@link iconRoot}가 지정된 경우 상대 경로로 결합되며,
|
|
13045
|
+
* `::` 접두사를 사용하면 {@link imageList}에서 이미지를 참조한다.
|
|
13046
|
+
*/
|
|
13047
|
+
icon?: string;
|
|
12662
13048
|
}
|
|
12663
13049
|
/**
|
|
12664
13050
|
* 데이터포인트 뷰가 {@link https://realchart.co.kr/config/config/base/series#onpointclick 클릭}될 때,
|
|
@@ -14080,6 +14466,50 @@ declare class ChartTextElement extends GroupElement {
|
|
|
14080
14466
|
getBBox(): IRect;
|
|
14081
14467
|
}
|
|
14082
14468
|
|
|
14469
|
+
type Visitor<T extends RcElement> = (element: T, index?: number, count?: number) => void;
|
|
14470
|
+
/** @private */
|
|
14471
|
+
declare class ElementPool<T extends RcElement> extends RcObject {
|
|
14472
|
+
private _owner;
|
|
14473
|
+
private _creator;
|
|
14474
|
+
private _pool;
|
|
14475
|
+
private _views;
|
|
14476
|
+
protected _orphans: Map<any, T>;
|
|
14477
|
+
private _styleName;
|
|
14478
|
+
constructor(owner: RcElement, creator: {
|
|
14479
|
+
new (doc: Document, styleName?: string): T;
|
|
14480
|
+
}, styleName?: string);
|
|
14481
|
+
protected _doDestroy(): void;
|
|
14482
|
+
get isEmpty(): boolean;
|
|
14483
|
+
get count(): number;
|
|
14484
|
+
get first(): T;
|
|
14485
|
+
get last(): T;
|
|
14486
|
+
get(index: number): T;
|
|
14487
|
+
getAll(): T[];
|
|
14488
|
+
pull(index: number): T;
|
|
14489
|
+
_internalItems(): T[];
|
|
14490
|
+
elementOf(dom: Element): T;
|
|
14491
|
+
find(matcher: (v: T) => boolean): T;
|
|
14492
|
+
private $_create;
|
|
14493
|
+
prepare(count: number, visitor?: Visitor<T>, initor?: Visitor<T>): ElementPool<T>;
|
|
14494
|
+
borrow(): T;
|
|
14495
|
+
free(element: T, removeDelay?: number): void;
|
|
14496
|
+
freeAll(elements?: T[], removeDelay?: number): void;
|
|
14497
|
+
freeHiddens(): void;
|
|
14498
|
+
freeFrom(from: number): void;
|
|
14499
|
+
forEach(visitor: (v: T, i?: number, count?: number) => void): void;
|
|
14500
|
+
visit(visitor: (v: T, i: number, count: number) => boolean): boolean;
|
|
14501
|
+
sort(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14502
|
+
sortDom(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14503
|
+
map(callback: (v: T) => any): any[];
|
|
14504
|
+
front(v: T): void;
|
|
14505
|
+
back(v: T): void;
|
|
14506
|
+
getOrphans(): T[];
|
|
14507
|
+
addOrphan(key: any, element: T): void;
|
|
14508
|
+
freeOrphan(key: any): void;
|
|
14509
|
+
clearOrphans(): void;
|
|
14510
|
+
protected _prepareOrphans(): Map<any, T>;
|
|
14511
|
+
}
|
|
14512
|
+
|
|
14083
14513
|
interface IPoint2 {
|
|
14084
14514
|
x1: number;
|
|
14085
14515
|
y1: number;
|
|
@@ -14159,50 +14589,6 @@ declare class LegendView extends BoundableElement<Legend> {
|
|
|
14159
14589
|
private $_measure;
|
|
14160
14590
|
}
|
|
14161
14591
|
|
|
14162
|
-
type Visitor<T extends RcElement> = (element: T, index?: number, count?: number) => void;
|
|
14163
|
-
/** @private */
|
|
14164
|
-
declare class ElementPool<T extends RcElement> extends RcObject {
|
|
14165
|
-
private _owner;
|
|
14166
|
-
private _creator;
|
|
14167
|
-
private _pool;
|
|
14168
|
-
private _views;
|
|
14169
|
-
protected _orphans: Map<any, T>;
|
|
14170
|
-
private _styleName;
|
|
14171
|
-
constructor(owner: RcElement, creator: {
|
|
14172
|
-
new (doc: Document, styleName?: string): T;
|
|
14173
|
-
}, styleName?: string);
|
|
14174
|
-
protected _doDestroy(): void;
|
|
14175
|
-
get isEmpty(): boolean;
|
|
14176
|
-
get count(): number;
|
|
14177
|
-
get first(): T;
|
|
14178
|
-
get last(): T;
|
|
14179
|
-
get(index: number): T;
|
|
14180
|
-
getAll(): T[];
|
|
14181
|
-
pull(index: number): T;
|
|
14182
|
-
_internalItems(): T[];
|
|
14183
|
-
elementOf(dom: Element): T;
|
|
14184
|
-
find(matcher: (v: T) => boolean): T;
|
|
14185
|
-
private $_create;
|
|
14186
|
-
prepare(count: number, visitor?: Visitor<T>, initor?: Visitor<T>): ElementPool<T>;
|
|
14187
|
-
borrow(): T;
|
|
14188
|
-
free(element: T, removeDelay?: number): void;
|
|
14189
|
-
freeAll(elements?: T[], removeDelay?: number): void;
|
|
14190
|
-
freeHiddens(): void;
|
|
14191
|
-
freeFrom(from: number): void;
|
|
14192
|
-
forEach(visitor: (v: T, i?: number, count?: number) => void): void;
|
|
14193
|
-
visit(visitor: (v: T, i: number, count: number) => boolean): boolean;
|
|
14194
|
-
sort(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14195
|
-
sortDom(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14196
|
-
map(callback: (v: T) => any): any[];
|
|
14197
|
-
front(v: T): void;
|
|
14198
|
-
back(v: T): void;
|
|
14199
|
-
getOrphans(): T[];
|
|
14200
|
-
addOrphan(key: any, element: T): void;
|
|
14201
|
-
freeOrphan(key: any): void;
|
|
14202
|
-
clearOrphans(): void;
|
|
14203
|
-
protected _prepareOrphans(): Map<any, T>;
|
|
14204
|
-
}
|
|
14205
|
-
|
|
14206
14592
|
declare class PointViewPool<T extends RcElement & IPointView = RcElement & IPointView> extends ElementPool<T> {
|
|
14207
14593
|
freeOrphans(): this;
|
|
14208
14594
|
addOrphanedPoints(points: DataPoint[], freeExisting?: boolean): this;
|
|
@@ -14300,6 +14686,17 @@ type ILabelOverlap = {
|
|
|
14300
14686
|
outline: number;
|
|
14301
14687
|
contrast: number;
|
|
14302
14688
|
};
|
|
14689
|
+
declare class StackLabelView extends ChartTextElement {
|
|
14690
|
+
xValue: number;
|
|
14691
|
+
constructor(doc: Document);
|
|
14692
|
+
}
|
|
14693
|
+
declare class StackLabelContainer extends LayerElement {
|
|
14694
|
+
private _labels;
|
|
14695
|
+
constructor(doc: Document);
|
|
14696
|
+
prepare(count: number): ElementPool<StackLabelView>;
|
|
14697
|
+
get(index: number): StackLabelView;
|
|
14698
|
+
forEach(fn: (v: StackLabelView, i: number) => void): void;
|
|
14699
|
+
}
|
|
14303
14700
|
declare abstract class SeriesView<T extends Series = Series> extends ContentView<T> {
|
|
14304
14701
|
static readonly POINT_CLASS = "rct-point";
|
|
14305
14702
|
static readonly DATA_FOCUS = "focus";
|
|
@@ -14325,6 +14722,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
14325
14722
|
_hoverAnis: MarkerHoverAnimation[];
|
|
14326
14723
|
_hoverPts: IPointView[];
|
|
14327
14724
|
private _labelOverlap;
|
|
14725
|
+
_stackLabelContainer: StackLabelContainer;
|
|
14328
14726
|
constructor(doc: Document, styleName: string);
|
|
14329
14727
|
depthEnabled(): boolean;
|
|
14330
14728
|
clipInvertable(): boolean;
|
|
@@ -14371,6 +14769,9 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
14371
14769
|
protected _doMeasure(doc: Document, model: T, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
14372
14770
|
protected _doLayout(): void;
|
|
14373
14771
|
protected _doAfterLayout(): void;
|
|
14772
|
+
private _layoutStackLabel;
|
|
14773
|
+
private _hideStackLabel;
|
|
14774
|
+
private _doLayoutStackLabel;
|
|
14374
14775
|
protected abstract _prepareSeries(doc: Document, model: T, polar: boolean, depth: BodyDepth): void;
|
|
14375
14776
|
protected abstract _renderSeries(width: number, height: number): void;
|
|
14376
14777
|
protected _collectVisPoints(model: T): DataPoint[];
|
|
@@ -14387,6 +14788,11 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
14387
14788
|
protected _runShowEffect(firstTime: boolean): void;
|
|
14388
14789
|
private $_renderTrendline;
|
|
14389
14790
|
protected _layoutLabel(model: DataPointLabel, info: LabelLayoutInfo, w: number, h: number): void;
|
|
14791
|
+
/**
|
|
14792
|
+
* overflow fit 좌표 계산. body 영역을 벗어난 경우 fit 값에 따라 조정된 좌표를 반환.
|
|
14793
|
+
* @returns 조정된 좌표. null이면 라벨을 숨겨야 함(hidden). 변경 없으면 pos 그대로 반환.
|
|
14794
|
+
*/
|
|
14795
|
+
private _applyOverflowFit;
|
|
14390
14796
|
protected _checkLabelOverlap(lv: PointLabelView, r: IRect, px: number, py: number, pw: number, ph: number, x: number, y: number, inner: boolean, target: Element): boolean;
|
|
14391
14797
|
protected _clipRange(w: number, h: number, rangeAxis: 'x' | 'y' | 'z', range: ValueRange, clip: ClipRectElement, inverted: boolean): void;
|
|
14392
14798
|
protected _setFill(elt: RcElement, style: SVGStyleOrClass): void;
|
|
@@ -14538,6 +14944,7 @@ declare abstract class AxisGuideView<T extends AxisGuide = AxisGuide> extends Rc
|
|
|
14538
14944
|
vertical(): boolean;
|
|
14539
14945
|
prepare(doc: Document, model: T): void;
|
|
14540
14946
|
layout(width: number, height: number, polar?: IPolar): void;
|
|
14947
|
+
protected _getContrastTarget(): Element;
|
|
14541
14948
|
abstract _doLayout(width: number, height: number): void;
|
|
14542
14949
|
abstract _doLayoutPolar(width: number, height: number, polar: IPolar): void;
|
|
14543
14950
|
}
|
|
@@ -14552,6 +14959,7 @@ declare class AxisGuideRangeView extends AxisGuideView<AxisRangeGuide> {
|
|
|
14552
14959
|
private _box;
|
|
14553
14960
|
_range: [number, number];
|
|
14554
14961
|
constructor(doc: Document, polar: boolean);
|
|
14962
|
+
protected _getContrastTarget(): Element;
|
|
14555
14963
|
prepare(doc: Document, model: AxisRangeGuide): void;
|
|
14556
14964
|
_doLayout(width: number, height: number): void;
|
|
14557
14965
|
_doLayoutPolar(width: number, height: number, polar: IPolar): void;
|
|
@@ -14595,6 +15003,7 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
14595
15003
|
private _breakViews;
|
|
14596
15004
|
private _seriesContainer;
|
|
14597
15005
|
private _labelContainer;
|
|
15006
|
+
private _stackLabelContainer;
|
|
14598
15007
|
_seriesViews: SeriesView<Series>[];
|
|
14599
15008
|
private _seriesMap;
|
|
14600
15009
|
private _series;
|
|
@@ -15442,11 +15851,171 @@ declare class BoxPlotSeries extends LowRangedSeries<BoxPlotSeriesOptions> {
|
|
|
15442
15851
|
protected _createLegendMarker(doc: Document, size: number): RcElement;
|
|
15443
15852
|
}
|
|
15444
15853
|
|
|
15854
|
+
/** @private */
|
|
15855
|
+
declare class BubblePieLegendMarkerView extends RcElement {
|
|
15856
|
+
_back: RectElement;
|
|
15857
|
+
private _sectors;
|
|
15858
|
+
private _size;
|
|
15859
|
+
private _colorResolver;
|
|
15860
|
+
constructor(doc: Document);
|
|
15861
|
+
/**
|
|
15862
|
+
* 색상 리졸버를 설정한다.
|
|
15863
|
+
*/
|
|
15864
|
+
setColorResolver(resolver: () => string[]): void;
|
|
15865
|
+
/**
|
|
15866
|
+
* 기본 색상을 받아 섹터별 색상을 적용한다.
|
|
15867
|
+
*/
|
|
15868
|
+
setColor(color: string): void;
|
|
15869
|
+
/**
|
|
15870
|
+
* 균등 분할된 파이 조각으로 범례 마커를 렌더링한다.
|
|
15871
|
+
*/
|
|
15872
|
+
render(size: number, sliceCount: number, colors: string[]): void;
|
|
15873
|
+
/**
|
|
15874
|
+
* 섹터 색상을 적용한다.
|
|
15875
|
+
*/
|
|
15876
|
+
_applyColors(colors: string[]): void;
|
|
15877
|
+
}
|
|
15878
|
+
|
|
15879
|
+
/**
|
|
15880
|
+
* 버블 내부 파이 차트의 한 조각.<br/>
|
|
15881
|
+
* 범례 소스로서도 동작한다 ({@link ILegendSource}).<br/>
|
|
15882
|
+
* 필드당 하나만 생성되며 모든 버블이 공유한다.
|
|
15883
|
+
*/
|
|
15884
|
+
declare class BubblePieSlice implements ILegendSource {
|
|
15885
|
+
/** 필드명 */
|
|
15886
|
+
field: string;
|
|
15887
|
+
/** 라벨 */
|
|
15888
|
+
label: string;
|
|
15889
|
+
/** 원본 필드 인덱스 */
|
|
15890
|
+
index: number;
|
|
15891
|
+
_pie: BubblePie;
|
|
15892
|
+
private _legendMarker;
|
|
15893
|
+
_visible: boolean;
|
|
15894
|
+
_explicitColor: string;
|
|
15895
|
+
_sliceCount: number;
|
|
15896
|
+
/**
|
|
15897
|
+
* 슬라이스의 resolved 색상.<br/>
|
|
15898
|
+
* 명시 색상이 있으면 그 값을, 없으면 부모 시리즈 색상에서 파생된 색상을 반환한다.
|
|
15899
|
+
*/
|
|
15900
|
+
get color(): string;
|
|
15901
|
+
/** 부모 BubbleSeries 참조 */
|
|
15902
|
+
get series(): BubbleSeries;
|
|
15903
|
+
/** 부모 BubblePie 모델 */
|
|
15904
|
+
get pie(): BubblePie;
|
|
15905
|
+
/** 전체 슬라이스 수 */
|
|
15906
|
+
get sliceCount(): number;
|
|
15907
|
+
get visible(): boolean;
|
|
15908
|
+
set visible(v: boolean);
|
|
15909
|
+
legendMarker(): RcElement;
|
|
15910
|
+
setLegendMarker(elt: RcElement): void;
|
|
15911
|
+
legendColor(): string;
|
|
15912
|
+
legendStroke(): string;
|
|
15913
|
+
legendLabel(): string;
|
|
15914
|
+
legendKey(): any;
|
|
15915
|
+
isEmpty(): boolean;
|
|
15916
|
+
/** WidgetSeriesPoint.getParam 패턴 — 콜백에서 속성 조회에 사용 */
|
|
15917
|
+
getParam(param: string): any;
|
|
15918
|
+
}
|
|
15919
|
+
/**
|
|
15920
|
+
* 포인트별 파이 슬라이스 렌더링 데이터.<br/>
|
|
15921
|
+
* 범례 소스({@link BubblePieSlice})를 참조하며, 포인트별로 계산된 값만 보유한다.
|
|
15922
|
+
*/
|
|
15923
|
+
declare class BubblePieSliceInfo {
|
|
15924
|
+
/** 범례 소스 참조 */
|
|
15925
|
+
source: BubblePieSlice;
|
|
15926
|
+
/** 값 */
|
|
15927
|
+
value: number;
|
|
15928
|
+
/** 퍼센트 */
|
|
15929
|
+
percent: number;
|
|
15930
|
+
/** 시작 각도 (라디안) */
|
|
15931
|
+
startAngle: number;
|
|
15932
|
+
/** 각도 (라디안) */
|
|
15933
|
+
angle: number;
|
|
15934
|
+
/** 색상 */
|
|
15935
|
+
color: string;
|
|
15936
|
+
/** 필드명 */
|
|
15937
|
+
get field(): string;
|
|
15938
|
+
/** 레이블 */
|
|
15939
|
+
get label(): string;
|
|
15940
|
+
/** 슬라이스 인덱스 */
|
|
15941
|
+
get index(): number;
|
|
15942
|
+
/** DataPoint.getParam 패턴 — 툴팁 ${param} 치환에 사용 */
|
|
15943
|
+
getParam(param: string): any;
|
|
15944
|
+
}
|
|
15445
15945
|
/**
|
|
15446
15946
|
* [y, z]
|
|
15447
15947
|
* [x, y, z]
|
|
15448
15948
|
*/
|
|
15449
15949
|
declare class BubbleSeriesPoint extends ZValuePoint {
|
|
15950
|
+
/** 파이 조각 정보 배열 — pie 옵션이 활성화된 경우에만 존재 */
|
|
15951
|
+
pieSlices: BubblePieSliceInfo[];
|
|
15952
|
+
}
|
|
15953
|
+
/**
|
|
15954
|
+
* 버블 내부 파이 차트 모델.<br/>
|
|
15955
|
+
*/
|
|
15956
|
+
declare class BubblePie extends ChartItem<BubblePieOptions> {
|
|
15957
|
+
static defaults: BubblePieOptions;
|
|
15958
|
+
private _fields;
|
|
15959
|
+
private _categories;
|
|
15960
|
+
private _sliceColors;
|
|
15961
|
+
private _startRad;
|
|
15962
|
+
private _totalRad;
|
|
15963
|
+
private _clockwise;
|
|
15964
|
+
private _innerRadiusDim;
|
|
15965
|
+
private _legendSources;
|
|
15966
|
+
private _parentSeries;
|
|
15967
|
+
get fields(): string[];
|
|
15968
|
+
get categories(): string[];
|
|
15969
|
+
get colors(): string[];
|
|
15970
|
+
/**
|
|
15971
|
+
* 슬라이스 색상이 명시적으로 지정되었는지 여부.
|
|
15972
|
+
*/
|
|
15973
|
+
get hasExplicitColors(): boolean;
|
|
15974
|
+
get startRad(): number;
|
|
15975
|
+
get totalRad(): number;
|
|
15976
|
+
get clockwise(): boolean;
|
|
15977
|
+
get innerRadiusDim(): IPercentSize;
|
|
15978
|
+
get visibleInLegend(): boolean;
|
|
15979
|
+
/**
|
|
15980
|
+
* 부모 BubbleSeries 참조.
|
|
15981
|
+
*/
|
|
15982
|
+
get parentSeries(): BubbleSeries;
|
|
15983
|
+
/**
|
|
15984
|
+
* 부모 시리즈 참조를 설정한다.
|
|
15985
|
+
* @private
|
|
15986
|
+
*/
|
|
15987
|
+
_setParentSeries(series: BubbleSeries): void;
|
|
15988
|
+
/**
|
|
15989
|
+
* 슬라이스 팔레트 시작 오프셋.<br/>
|
|
15990
|
+
* 앞선 BubbleSeries들의 슬라이스 필드 수를 누적하여 이어서 적용한다.
|
|
15991
|
+
*/
|
|
15992
|
+
get _paletteOffset(): number;
|
|
15993
|
+
/**
|
|
15994
|
+
* 파이 조각별 범례 소스를 반환한다.
|
|
15995
|
+
*/
|
|
15996
|
+
getLegendSources(): BubblePieSlice[];
|
|
15997
|
+
/**
|
|
15998
|
+
* 해당 인덱스의 필드가 범례에서 보이는 상태인지 반환한다.
|
|
15999
|
+
*/
|
|
16000
|
+
isFieldVisible(index: number): boolean;
|
|
16001
|
+
/**
|
|
16002
|
+
* 데이터포인트 source에서 pie 필드 값들을 읽어 슬라이스를 계산한다.
|
|
16003
|
+
*/
|
|
16004
|
+
calcSlices(source: any): BubblePieSliceInfo[];
|
|
16005
|
+
/**
|
|
16006
|
+
* 시리즈의 resolved 색상을 기반으로 슬라이스 색상을 파생한다.
|
|
16007
|
+
*/
|
|
16008
|
+
resolveSliceColors(slices: BubblePieSliceInfo[]): void;
|
|
16009
|
+
/**
|
|
16010
|
+
* 범례 마커에 사용할 슬라이스 색상 배열을 반환한다.
|
|
16011
|
+
* @private
|
|
16012
|
+
*/
|
|
16013
|
+
getLegendSliceColors(): string[];
|
|
16014
|
+
getInnerRadius(rd: number): number;
|
|
16015
|
+
protected _doSetSimple(src: any): boolean;
|
|
16016
|
+
protected _doApply(op: BubblePieOptions): void;
|
|
16017
|
+
private _buildLegendSources;
|
|
16018
|
+
private _getFieldValue;
|
|
15450
16019
|
}
|
|
15451
16020
|
/**
|
|
15452
16021
|
* 버블 시리즈 모델.<br/>
|
|
@@ -15458,21 +16027,42 @@ declare class BubbleSeries extends MarkerSeries<BubbleSeriesOptions> {
|
|
|
15458
16027
|
static defaults: BubbleSeriesOptions;
|
|
15459
16028
|
private _minSizeDim;
|
|
15460
16029
|
private _maxSizeDim;
|
|
16030
|
+
private _pie;
|
|
16031
|
+
private _pieLegendMarker;
|
|
16032
|
+
/** 현재 호버 중인 파이 슬라이스 — 뷰에서 설정 */
|
|
16033
|
+
_hoveredSlice: BubblePieSliceInfo;
|
|
15461
16034
|
_zMin: number;
|
|
15462
16035
|
_zMax: number;
|
|
15463
16036
|
_noSize: boolean;
|
|
16037
|
+
protected _doInit(op: {
|
|
16038
|
+
[child: string]: ChartItemOptions;
|
|
16039
|
+
}): void;
|
|
16040
|
+
/**
|
|
16041
|
+
* 버블 내부 파이 차트 모델.<br/>
|
|
16042
|
+
*/
|
|
16043
|
+
get pie(): BubblePie;
|
|
16044
|
+
/**
|
|
16045
|
+
* 파이 범례 마커 뷰.<br/>
|
|
16046
|
+
* @private
|
|
16047
|
+
*/
|
|
16048
|
+
get pieLegendMarker(): BubblePieLegendMarkerView;
|
|
15464
16049
|
getShape(): Shape;
|
|
15465
16050
|
getPixelMinMax(len: number): {
|
|
15466
16051
|
min: number;
|
|
15467
16052
|
max: number;
|
|
15468
16053
|
};
|
|
15469
16054
|
getRadius(value: number, pxMin: number, pxMax: number): number;
|
|
16055
|
+
getTooltipText(series: ISeries, point: DataPoint): string;
|
|
16056
|
+
getTooltipParam(series: ISeries, point: DataPoint, param: string): any;
|
|
16057
|
+
getTooltipHeaderColor(point: DataPoint): string;
|
|
15470
16058
|
protected _doApply(options: BubbleSeriesOptions): void;
|
|
15471
16059
|
protected _createPoint(source: any): DataPoint;
|
|
15472
16060
|
protected _getNoClip(polar: boolean): boolean;
|
|
15473
16061
|
get canPolar(): boolean;
|
|
15474
16062
|
hasZ(): boolean;
|
|
15475
16063
|
_colorByPoint(): boolean;
|
|
16064
|
+
protected _createLegendMarker(doc: Document, size: number): RcElement;
|
|
16065
|
+
getLegendSources(list: ILegendSource[]): void;
|
|
15476
16066
|
protected _doPrepareRender(): void;
|
|
15477
16067
|
protected _getRangeMinMax(axis: "x" | "y" | "z"): {
|
|
15478
16068
|
min: number;
|
|
@@ -16201,15 +16791,28 @@ declare class BubbleSeriesPointView extends MarkerSeriesPointView {
|
|
|
16201
16791
|
*/
|
|
16202
16792
|
declare class BubbleSeriesView extends MarkerSeriesView<BubbleSeries, BubbleSeriesPoint> implements IMarkerSeriesView {
|
|
16203
16793
|
private _polar;
|
|
16794
|
+
private _pieContainer;
|
|
16795
|
+
private _pieSectors;
|
|
16796
|
+
/** 섹터 DOM → {point, slice, pv} 매핑 (호버/툴팁용) */
|
|
16797
|
+
private _sectorMap;
|
|
16204
16798
|
constructor(doc: Document);
|
|
16205
16799
|
protected _createMarkers(container: PointContainer): PointViewPool<MarkerSeriesPointView>;
|
|
16206
16800
|
protected _prepareSeries(doc: Document, model: BubbleSeries): void;
|
|
16207
16801
|
protected _renderSeries(width: number, height: number): void;
|
|
16208
16802
|
protected _runShowEffect(firstTime: boolean): void;
|
|
16209
16803
|
protected _doViewRateChanged(rate: number): void;
|
|
16804
|
+
pointByDom(elt: Element): IPointView;
|
|
16210
16805
|
private $_prepareMarkers;
|
|
16806
|
+
/**
|
|
16807
|
+
* 파이 섹터 요소를 준비한다.
|
|
16808
|
+
*/
|
|
16809
|
+
private $_preparePie;
|
|
16211
16810
|
protected _getDefaultPos(overflowed: boolean): PointLabelPosition;
|
|
16212
16811
|
private $_layoutMarkers;
|
|
16812
|
+
/**
|
|
16813
|
+
* 버블 내부에 파이 섹터들을 렌더링한다.
|
|
16814
|
+
*/
|
|
16815
|
+
private $_renderPieSectors;
|
|
16213
16816
|
getNearest(x: number, y: number): {
|
|
16214
16817
|
pv: IPointView;
|
|
16215
16818
|
dist: number;
|
|
@@ -16779,4 +17382,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
16779
17382
|
declare const createData: typeof Globals.createData;
|
|
16780
17383
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
16781
17384
|
|
|
16782
|
-
export { Align, Annotation, AnnotationAnimationOptions, AnnotationClickArgs, AnnotationOptions, AnnotationOptionsType, AnnotationView, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaRangeSeriesView, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AreaSeriesView, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisGuideOptionsType, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, ScatterSeriesView, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeAnnotationView, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextAnnotationView, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, WaterfallSeriesView, Widget, WidgetSeries, WidgetSeriesConnector, WidgetSeriesLabel, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|
|
17385
|
+
export { Align, Annotation, AnnotationAnimationOptions, AnnotationClickArgs, AnnotationOptions, AnnotationOptionsType, AnnotationView, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaRangeSeriesView, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AreaSeriesView, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisGuideOptionsType, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, ScatterSeriesView, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeAnnotationView, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StackLabel, StackLabelCallbackArgs, StackLabelOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextAnnotationView, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, WaterfallSeriesView, Widget, WidgetSeries, WidgetSeriesConnector, WidgetSeriesLabel, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|