realchart 1.4.19 → 1.4.21
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 +598 -72
- 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
|
*/
|
|
@@ -1590,6 +1710,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1590
1710
|
*/
|
|
1591
1711
|
pointLabel?: DataPointLabelOptions | boolean;
|
|
1592
1712
|
/**
|
|
1713
|
+
* @ignore
|
|
1593
1714
|
* 포인터가 차지하는 너비가 이 값 미만이면 표시하지 않는다.
|
|
1594
1715
|
* // TODO: 구현할 것!
|
|
1595
1716
|
*/
|
|
@@ -1848,6 +1969,30 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
|
1848
1969
|
}
|
|
1849
1970
|
/** */
|
|
1850
1971
|
interface BasedSeriesLabelOptions extends DataPointLabelOptions {
|
|
1972
|
+
/**
|
|
1973
|
+
* 데이터포인트 라벨의 수평 정렬 방식.<br/>
|
|
1974
|
+
* 일반(inverted: false) 차트: 데이터포인트 x 위치를 기준으로 수평 배치를 결정한다.<br/>
|
|
1975
|
+
* - `'left'`: 데이터포인트 기준 왼쪽 바깥에 배치<br/>
|
|
1976
|
+
* - `'center'`: 데이터포인트 중앙에 배치<br/>
|
|
1977
|
+
* - `'right'`: 데이터포인트 기준 오른쪽 바깥에 배치<br/>
|
|
1978
|
+
* inverted: true 차트에서는 수평/수직 방향이 교환된다.<br/>
|
|
1979
|
+
* - `'left'`: 데이터포인트 기준 위쪽에 배치<br/>
|
|
1980
|
+
* - `'center'`: 중앙에 배치<br/>
|
|
1981
|
+
* - `'right'`: 데이터포인트 기준 아래쪽에 배치<br/>
|
|
1982
|
+
*
|
|
1983
|
+
* @default 'center'
|
|
1984
|
+
*/
|
|
1985
|
+
align?: Align;
|
|
1986
|
+
/**
|
|
1987
|
+
* `align`으로 결정된 위치에서 추가로 이동하는 오프셋.<br/>
|
|
1988
|
+
* 양수: 데이터포인트 중심으로부터 더 멀어지는 방향으로 이동한다.<br/>
|
|
1989
|
+
* 음수: 데이터포인트 중심 방향으로 이동한다.<br/>
|
|
1990
|
+
* - `'left'`: 양수이면 더 왼쪽(inverted: 위쪽)으로 이동<br/>
|
|
1991
|
+
* - `'center'`/`'right'`: 양수이면 더 오른쪽(inverted: 아래쪽)으로 이동<br/>
|
|
1992
|
+
*
|
|
1993
|
+
* @default 0
|
|
1994
|
+
*/
|
|
1995
|
+
alignOffset?: number;
|
|
1851
1996
|
/**
|
|
1852
1997
|
* 데이터포인트 본체와 label을 연결하는 선.<br/>
|
|
1853
1998
|
*/
|
|
@@ -2041,6 +2186,12 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2041
2186
|
* 그룹 툴팁의 아래쪽에 표시되는 텍스트.<br/>
|
|
2042
2187
|
*/
|
|
2043
2188
|
tooltipFooter?: string;
|
|
2189
|
+
/**
|
|
2190
|
+
* {@link layout}이 {@link layout 'stack'}일 때
|
|
2191
|
+
* 그룹 내 시리즈들의 합계 값을 label로 표시하는 옵션.<br/>
|
|
2192
|
+
* true로 지정하면 기본 설정으로 stack labels를 표시한다.
|
|
2193
|
+
*/
|
|
2194
|
+
stackLabel?: StackLabelOptions | boolean;
|
|
2044
2195
|
}
|
|
2045
2196
|
declare const LineSeriesGroupType = "linegroup";
|
|
2046
2197
|
/**
|
|
@@ -2648,10 +2799,6 @@ interface LineSeriesFlagOptions extends IconedTextOptions {
|
|
|
2648
2799
|
* @default 8
|
|
2649
2800
|
*/
|
|
2650
2801
|
offset?: number;
|
|
2651
|
-
/**
|
|
2652
|
-
* flag에 표시될 아이콘의 경로
|
|
2653
|
-
*/
|
|
2654
|
-
icon?: string;
|
|
2655
2802
|
}
|
|
2656
2803
|
/**
|
|
2657
2804
|
* @enum
|
|
@@ -2725,6 +2872,8 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
2725
2872
|
*/
|
|
2726
2873
|
belowStyle?: SVGStyleOrClass;
|
|
2727
2874
|
/**
|
|
2875
|
+
* @private
|
|
2876
|
+
*
|
|
2728
2877
|
* {@link connectNullPoints}이 true일 때 null 포인트의 양끝 포인트를 연결하는 선에 적용되는 스타일.
|
|
2729
2878
|
*/
|
|
2730
2879
|
nullStyle?: SVGStyleOrClass;
|
|
@@ -2947,6 +3096,111 @@ interface BoxPlotSeriesOptions extends LowRangedSeriesOptions {
|
|
|
2947
3096
|
*/
|
|
2948
3097
|
tooltipDetail?: string;
|
|
2949
3098
|
}
|
|
3099
|
+
/**
|
|
3100
|
+
* 버블 시리즈의 각 버블 내부에 파이 차트를 표시하기 위한 설정.<br/>
|
|
3101
|
+
* {@link fields}로 지정한 데이터 필드들의 값을 비율로 계산하여 파이 조각으로 표현한다.<br/>
|
|
3102
|
+
*/
|
|
3103
|
+
interface BubblePieOptions extends ChartItemOptions {
|
|
3104
|
+
/**
|
|
3105
|
+
* 파이 조각 값을 가져올 데이터 필드명 배열.<br/>
|
|
3106
|
+
* 각 필드의 값이 하나의 파이 조각이 된다.
|
|
3107
|
+
* 데이터포인트 json 객체의 속성명과 일치해야 한다.<br/>
|
|
3108
|
+
*
|
|
3109
|
+
* ```json
|
|
3110
|
+
* // json 객체 데이터 — 속성명으로 접근
|
|
3111
|
+
* "pie": { "fields": ["sales", "cost", "profit"] },
|
|
3112
|
+
* "data": [{ "x": 5, "y": -6, "z": 50, "sales": 30, "cost": 25, "profit": 45 }]
|
|
3113
|
+
*
|
|
3114
|
+
* // 배열 데이터 — 인덱스로 접근
|
|
3115
|
+
* "pie": { "fields": [3, 4, 5] },
|
|
3116
|
+
* "data": [[5, -6, 50, 30, 25, 45]]
|
|
3117
|
+
* ```
|
|
3118
|
+
*/
|
|
3119
|
+
fields?: number[] | string[];
|
|
3120
|
+
/**
|
|
3121
|
+
* 각 파이 조각의 표시 라벨 배열.<br/>
|
|
3122
|
+
* {@link fields}와 동일한 순서로 지정한다.
|
|
3123
|
+
* 툴팁이나 범례에서 필드명 대신 이 라벨이 사용된다.<br/>
|
|
3124
|
+
*
|
|
3125
|
+
* ```json
|
|
3126
|
+
* "pie": {
|
|
3127
|
+
* "fields": ["sales", "cost", "profit"],
|
|
3128
|
+
* "categories": ["매출", "비용", "이익"]
|
|
3129
|
+
* }
|
|
3130
|
+
* ```
|
|
3131
|
+
* 미지정 시 {@link fields}의 필드명이 그대로 사용된다.
|
|
3132
|
+
*/
|
|
3133
|
+
categories?: string[];
|
|
3134
|
+
/**
|
|
3135
|
+
* 원호 시작 각도.<br/>
|
|
3136
|
+
* 지정하지 않거나 잘못된 값이면 0으로 계산된다. 0은 시계의 12시 위치다.<br/>
|
|
3137
|
+
*
|
|
3138
|
+
* @default 0
|
|
3139
|
+
*/
|
|
3140
|
+
startAngle?: number;
|
|
3141
|
+
/**
|
|
3142
|
+
* 원호 전체 각도.<br/>
|
|
3143
|
+
* 0 ~ 360 사이의 값으로 지정해야 한다.
|
|
3144
|
+
* 범위를 벗어난 값은 범위 안으로 조정된다.
|
|
3145
|
+
* 지정하지 않거나 0보다 큰 값이 아니면 360으로 적용된다.<br/>
|
|
3146
|
+
*
|
|
3147
|
+
* @default 360
|
|
3148
|
+
*/
|
|
3149
|
+
totalAngle?: number;
|
|
3150
|
+
/**
|
|
3151
|
+
* true면 시계 방향으로 회전한다.<br/>
|
|
3152
|
+
*
|
|
3153
|
+
* @default true
|
|
3154
|
+
*/
|
|
3155
|
+
clockwise?: boolean;
|
|
3156
|
+
/**
|
|
3157
|
+
* 파이 조각별 범례 항목을 표시할지 여부.<br/>
|
|
3158
|
+
*
|
|
3159
|
+
* @default false
|
|
3160
|
+
*/
|
|
3161
|
+
visibleInLegend?: boolean;
|
|
3162
|
+
/**
|
|
3163
|
+
* 툴팁 텍스트를 리턴하는 콜백 함수.<br/>
|
|
3164
|
+
* undefined를 리턴하면 {@link tooltipText} 속성이 사용된다.
|
|
3165
|
+
*/
|
|
3166
|
+
tooltipCallback?: (args: DataPointCallbackArgs) => string;
|
|
3167
|
+
/**
|
|
3168
|
+
* 데이터포인트 툴팁 텍스트.<br/>
|
|
3169
|
+
* {@link tooltipCallback}이 설정되고 콜백에서 undefined를 리턴하지 않으면 이 속성은 무시된다.<br/>
|
|
3170
|
+
* 사용 가능한 템플릿 변수: `${label}`, `${value}`, `${percent}`, `${field}`
|
|
3171
|
+
*
|
|
3172
|
+
* @default '${label}: ${value} (${percent}%)'
|
|
3173
|
+
*/
|
|
3174
|
+
tooltipText?: string;
|
|
3175
|
+
/**
|
|
3176
|
+
* 0보다 큰 값을 지정해서 도넛 형태로 표시할 수 있다.<br/>
|
|
3177
|
+
* 버블 원호의 반지름에 대한 상대적 크기(%)나 픽셀 수로 지정할 수 있다.<br/>
|
|
3178
|
+
*
|
|
3179
|
+
*/
|
|
3180
|
+
innerRadius?: PercentSize;
|
|
3181
|
+
/**
|
|
3182
|
+
* 파이 조각별 색상을 지정한다.<br/>
|
|
3183
|
+
* 색 배열로 지정하거나, 'colors' asset으로 등록된 이름을 지정할 수 있다.<br/>
|
|
3184
|
+
* 또, 'palette-name@palette'나 'palette-name@pal' 형식으로 설정해서
|
|
3185
|
+
* 라이브러리가 기본 css로 제공하는 palette 색상 배열을 사용할 수 있다.<br/>
|
|
3186
|
+
* 미지정 시 차트 팔레트 색상이 순서대로 적용된다.
|
|
3187
|
+
*
|
|
3188
|
+
*/
|
|
3189
|
+
colors?: string | string[];
|
|
3190
|
+
}
|
|
3191
|
+
/**
|
|
3192
|
+
* @enum
|
|
3193
|
+
*/
|
|
3194
|
+
declare const _BubblePieLegendMode: {
|
|
3195
|
+
/** 시리즈 마커만 범례에 표시한다. */
|
|
3196
|
+
readonly SERIES: "series";
|
|
3197
|
+
/** 슬라이스 마커만 범례에 표시한다. */
|
|
3198
|
+
readonly SLICE: "slice";
|
|
3199
|
+
/** 시리즈 마커와 슬라이스 마커를 모두 표시한다. */
|
|
3200
|
+
readonly BOTH: "both";
|
|
3201
|
+
};
|
|
3202
|
+
/** @dummy */
|
|
3203
|
+
type BubblePieLegendMode = typeof _BubblePieLegendMode[keyof typeof _BubblePieLegendMode];
|
|
2950
3204
|
/**
|
|
2951
3205
|
* @enum
|
|
2952
3206
|
*/
|
|
@@ -3020,6 +3274,24 @@ interface BubbleSeriesOptions extends MarkerSeriesOptions {
|
|
|
3020
3274
|
* @default 2
|
|
3021
3275
|
*/
|
|
3022
3276
|
paddingRate?: number;
|
|
3277
|
+
/**
|
|
3278
|
+
* 버블 내부에 파이 차트를 표시하기 위한 설정.<br/>
|
|
3279
|
+
* 이 속성을 지정하면 각 버블 내부에 데이터 필드별 비율을 파이 차트로 표시한다.<br/>
|
|
3280
|
+
* boolean으로 지정하면 {@link visible} 속성에 적용된다.
|
|
3281
|
+
*/
|
|
3282
|
+
pie?: BubblePieOptions | boolean;
|
|
3283
|
+
/**
|
|
3284
|
+
* {@link pie} 속성이 활성화되었을 때 범례에 표시할 항목을 지정한다.<br/>
|
|
3285
|
+
* - `'series'`: 시리즈 마커만 표시한다.<br/>
|
|
3286
|
+
* - `'slice'`: 슬라이스 마커만 표시한다.<br/>
|
|
3287
|
+
* - `'both'`: 시리즈 마커와 슬라이스 마커를 모두 표시한다.<br/>
|
|
3288
|
+
*
|
|
3289
|
+
* {@link pie}.{@link BubblePieOptions#visibleInLegend}이 false이면 슬라이스 마커는 표시되지 않으며,
|
|
3290
|
+
* 이 속성과 무관하게 시리즈 마커만 표시된다.<br/>
|
|
3291
|
+
*
|
|
3292
|
+
* @default 'both'
|
|
3293
|
+
*/
|
|
3294
|
+
legendMode?: BubblePieLegendMode;
|
|
3023
3295
|
}
|
|
3024
3296
|
declare const BumpSeriesType = "bump";
|
|
3025
3297
|
/**
|
|
@@ -3698,10 +3970,6 @@ interface RadialSeriesOptions extends WidgetSeriesOptions {
|
|
|
3698
3970
|
/**
|
|
3699
3971
|
*/
|
|
3700
3972
|
interface PieSeriesTextOptions extends IconedTextOptions {
|
|
3701
|
-
/**
|
|
3702
|
-
* 텍스트와 함께 출력 될 아이콘의 경로
|
|
3703
|
-
*/
|
|
3704
|
-
icon?: string;
|
|
3705
3973
|
}
|
|
3706
3974
|
/**
|
|
3707
3975
|
* 데이터포인트 라벨의 회전 방식 지정.<br/>
|
|
@@ -7978,6 +8246,11 @@ declare abstract class IconedText<OP extends IconedTextOptions = IconedTextOptio
|
|
|
7978
8246
|
abstract getDefaultIconPos(): IconPosition;
|
|
7979
8247
|
getIconPos(): IconPosition;
|
|
7980
8248
|
protected _doPrepareRender(chart: IChart): void;
|
|
8249
|
+
/**
|
|
8250
|
+
* options.icon 또는 fallback 경로를 해석하여 최종 URL을 반환한다.
|
|
8251
|
+
* @param fallback - options.icon이 없을 때 사용할 대체 경로
|
|
8252
|
+
*/
|
|
8253
|
+
getIconUrl(fallback?: string): string | null;
|
|
7981
8254
|
getUrl(url: string): string;
|
|
7982
8255
|
}
|
|
7983
8256
|
declare class BackgroundImage extends ChartItem<BackgroundImageOptions> {
|
|
@@ -8852,6 +9125,8 @@ declare class DataPointLabel<OP extends DataPointLabelOptions = DataPointLabelOp
|
|
|
8852
9125
|
getTextDomain(p: DataPoint): IRichTextDomain;
|
|
8853
9126
|
getText(value: any): string;
|
|
8854
9127
|
getOffset(): number;
|
|
9128
|
+
getAlign(): Align;
|
|
9129
|
+
getAlignOffset(): number;
|
|
8855
9130
|
getDefaultIconPos(): IconPosition;
|
|
8856
9131
|
getRotation(): number;
|
|
8857
9132
|
protected _isVisible(): boolean;
|
|
@@ -8859,6 +9134,34 @@ declare class DataPointLabel<OP extends DataPointLabelOptions = DataPointLabelOp
|
|
|
8859
9134
|
protected _doApply(op: OP): void;
|
|
8860
9135
|
protected _doPrepareRender(chart: IChart): void;
|
|
8861
9136
|
}
|
|
9137
|
+
/**
|
|
9138
|
+
* {@link SeriesGroup 시리즈그룹}의 스택 합계 라벨 표시에 대한 모델.<br/>
|
|
9139
|
+
* 옵션 설정 모델은 {@link StackLabelOptions}이다.
|
|
9140
|
+
*/
|
|
9141
|
+
declare class StackLabel extends IconedText<StackLabelOptions> {
|
|
9142
|
+
static readonly OFFSET = 4;
|
|
9143
|
+
static defaults: StackLabelOptions;
|
|
9144
|
+
_overflowFit: number;
|
|
9145
|
+
_vertAdjust: number;
|
|
9146
|
+
_args: StackLabelCallbackArgs;
|
|
9147
|
+
protected _doInit(op: StackLabelOptions): void;
|
|
9148
|
+
getText(value: number): string;
|
|
9149
|
+
getOffset(): number;
|
|
9150
|
+
getGap(): number;
|
|
9151
|
+
getDefaultIconPos(): IconPosition;
|
|
9152
|
+
getCallbackArgs(chart: IChart, x: any, positiveTotal: number, negativeTotal: number): StackLabelCallbackArgs;
|
|
9153
|
+
isStackLabelVisible(args: StackLabelCallbackArgs): boolean;
|
|
9154
|
+
getStackLabelText(args: StackLabelCallbackArgs, value: number): string;
|
|
9155
|
+
getRotation(): number;
|
|
9156
|
+
getStackLabelStyle(args: StackLabelCallbackArgs): SVGStyleOrClass;
|
|
9157
|
+
protected _isVisible(): boolean;
|
|
9158
|
+
protected _doApply(op: StackLabelOptions): void;
|
|
9159
|
+
}
|
|
9160
|
+
interface StackTotalInfo {
|
|
9161
|
+
x: any;
|
|
9162
|
+
positiveTotal: number;
|
|
9163
|
+
negativeTotal: number;
|
|
9164
|
+
}
|
|
8862
9165
|
interface IPlottingItem {
|
|
8863
9166
|
_type(): string;
|
|
8864
9167
|
options: SeriesOptions | SeriesGroupOptions;
|
|
@@ -9040,6 +9343,11 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
9040
9343
|
getTooltipDetail(point: DataPoint): string;
|
|
9041
9344
|
getTooltipText(series: ISeries, point: DataPoint): string;
|
|
9042
9345
|
getTooltipParam(series: ISeries, point: DataPoint, param: string): any;
|
|
9346
|
+
/**
|
|
9347
|
+
* 툴팁 헤더 색상을 반환한다.<br/>
|
|
9348
|
+
* null을 반환하면 TooltipView 기본 색상 로직이 사용된다.
|
|
9349
|
+
*/
|
|
9350
|
+
getTooltipHeaderColor(point: DataPoint): string;
|
|
9043
9351
|
_type(): string;
|
|
9044
9352
|
_viewType(): string;
|
|
9045
9353
|
/**
|
|
@@ -9439,7 +9747,7 @@ declare abstract class WidgetSeriesLabel<OP extends WidgetSeriesLabelOptions = W
|
|
|
9439
9747
|
* 연결선 모델.<br/>
|
|
9440
9748
|
*/
|
|
9441
9749
|
get connector(): WidgetSeriesConnector;
|
|
9442
|
-
|
|
9750
|
+
getWidgetAlign(): number;
|
|
9443
9751
|
protected _doApply(options: OP): void;
|
|
9444
9752
|
}
|
|
9445
9753
|
declare class OthersGroup extends ChartItem<OthersGroupOptions> {
|
|
@@ -9517,6 +9825,8 @@ declare abstract class ClusterableSeries<OP extends ClusterableSeriesOptions = C
|
|
|
9517
9825
|
declare class BasedSeriesLabel<OP extends BasedSeriesLabelOptions = BasedSeriesLabelOptions> extends DataPointLabel<OP> {
|
|
9518
9826
|
static defaults: BasedSeriesLabelOptions;
|
|
9519
9827
|
private _line;
|
|
9828
|
+
getAlign(): Align;
|
|
9829
|
+
getAlignOffset(): number;
|
|
9520
9830
|
/**
|
|
9521
9831
|
* 연결선 설정 모델.<br/>
|
|
9522
9832
|
*/
|
|
@@ -9542,6 +9852,7 @@ declare abstract class BasedSeries<OP extends BasedSeriesOptions = BasedSeriesOp
|
|
|
9542
9852
|
getBaseValue(axis: IAxis): number;
|
|
9543
9853
|
isBased(axis: IAxis): boolean;
|
|
9544
9854
|
protected _getGroupBase(): number;
|
|
9855
|
+
protected _getLabelDefaultPos(labels: DataPointLabel, pos: PointLabelPosition): PointLabelPosition;
|
|
9545
9856
|
}
|
|
9546
9857
|
/**
|
|
9547
9858
|
*/
|
|
@@ -9579,9 +9890,11 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
9579
9890
|
_yAxisObj: IAxis;
|
|
9580
9891
|
_valid: boolean;
|
|
9581
9892
|
_stackPoints: Map<number, DataPoint[]>;
|
|
9893
|
+
_stackTotals: Map<number, StackTotalInfo>;
|
|
9582
9894
|
_stacked: boolean;
|
|
9583
9895
|
_legended: any;
|
|
9584
9896
|
private _seriesChanged;
|
|
9897
|
+
_stackLabel: StackLabel;
|
|
9585
9898
|
_sBase: number;
|
|
9586
9899
|
_yMin: number;
|
|
9587
9900
|
_yMax: number;
|
|
@@ -9607,6 +9920,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
9607
9920
|
getDistance(): number;
|
|
9608
9921
|
get index(): number;
|
|
9609
9922
|
get visCount(): number;
|
|
9923
|
+
get stackLabel(): StackLabel;
|
|
9610
9924
|
_type(): string;
|
|
9611
9925
|
_seriesType(): string;
|
|
9612
9926
|
connectable(axis: IAxis): boolean;
|
|
@@ -9625,6 +9939,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
9625
9939
|
remove(series: T): boolean;
|
|
9626
9940
|
_getVisiblePoints(): DataPoint[];
|
|
9627
9941
|
getLayoutMax(): number;
|
|
9942
|
+
protected _doInit(op: OP): void;
|
|
9628
9943
|
protected _doApply(op: OP): void;
|
|
9629
9944
|
protected _doSaveArray(prop: string, value: any[]): any[];
|
|
9630
9945
|
_prepareRender(): void;
|
|
@@ -10373,6 +10688,7 @@ interface IAxisGridRow {
|
|
|
10373
10688
|
from: number;
|
|
10374
10689
|
to: number;
|
|
10375
10690
|
color: string;
|
|
10691
|
+
style: SVGStyleOrClass;
|
|
10376
10692
|
}
|
|
10377
10693
|
/**
|
|
10378
10694
|
* 축 그리드 사이에 생성된 영역 표시 설정 모델.<br/>
|
|
@@ -10418,6 +10734,7 @@ declare abstract class AxisGuide<OP extends AxisGuideOptions = AxisGuideOptions>
|
|
|
10418
10734
|
* label 모델.
|
|
10419
10735
|
*/
|
|
10420
10736
|
get label(): AxisGuideLabel;
|
|
10737
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
10421
10738
|
canConstainedTo(row: number, col: number): boolean;
|
|
10422
10739
|
}
|
|
10423
10740
|
/**
|
|
@@ -11544,7 +11861,6 @@ interface AxisGridOptions extends AxisItemOptions {
|
|
|
11544
11861
|
/**
|
|
11545
11862
|
* 끝 값에 표시되는 그리드 선을 표시할 지 여부.
|
|
11546
11863
|
*
|
|
11547
|
-
* @default x축이면 false, y축이면 true.
|
|
11548
11864
|
*/
|
|
11549
11865
|
lastVisible?: boolean;
|
|
11550
11866
|
/**
|
|
@@ -11923,23 +12239,6 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
11923
12239
|
*
|
|
11924
12240
|
*/
|
|
11925
12241
|
maxValue?: number;
|
|
11926
|
-
/**
|
|
11927
|
-
* plot 영역이나 먼저 표시되는 축 사이의 여백 크기.<br/>
|
|
11928
|
-
*
|
|
11929
|
-
* @default 0
|
|
11930
|
-
*/
|
|
11931
|
-
marginNear?: number;
|
|
11932
|
-
/**
|
|
11933
|
-
* 차트 경계나 뒤쪽 축 사이의 여백 크기.<br/>
|
|
11934
|
-
*
|
|
11935
|
-
* @default 0
|
|
11936
|
-
*/
|
|
11937
|
-
marginFar?: number;
|
|
11938
|
-
/**
|
|
11939
|
-
* label 등에 표시할 수 있는 단위 정보 문자열.<br/>
|
|
11940
|
-
*
|
|
11941
|
-
*/
|
|
11942
|
-
unit?: string;
|
|
11943
12242
|
/**
|
|
11944
12243
|
* 축에 포함된 시리즈들 툴팁의 위쪽에 표시되는 텍스트 템플릿.<br/>
|
|
11945
12244
|
*
|
|
@@ -12679,6 +12978,12 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
12679
12978
|
* {@link iconWidth}도 미지정이면 이미지 원본 크기로 표시된다.
|
|
12680
12979
|
*/
|
|
12681
12980
|
iconHeight?: number;
|
|
12981
|
+
/**
|
|
12982
|
+
* 텍스트와 함께 표시할 아이콘 이미지의 경로.<br/>
|
|
12983
|
+
* {@link iconRoot}가 지정된 경우 상대 경로로 결합되며,
|
|
12984
|
+
* `::` 접두사를 사용하면 {@link imageList}에서 이미지를 참조한다.
|
|
12985
|
+
*/
|
|
12986
|
+
icon?: string;
|
|
12682
12987
|
}
|
|
12683
12988
|
/**
|
|
12684
12989
|
* 데이터포인트 뷰가 {@link https://realchart.co.kr/config/config/base/series#onpointclick 클릭}될 때,
|
|
@@ -14035,6 +14340,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14035
14340
|
getUnitLen(length: number, value: number): number;
|
|
14036
14341
|
getLabelLength(length: number, value: number): number;
|
|
14037
14342
|
protected _isLog(): boolean;
|
|
14343
|
+
private $_resolveFit;
|
|
14038
14344
|
private $_getStartFit;
|
|
14039
14345
|
private $_getEndFit;
|
|
14040
14346
|
private $_calcStrict;
|
|
@@ -14100,6 +14406,50 @@ declare class ChartTextElement extends GroupElement {
|
|
|
14100
14406
|
getBBox(): IRect;
|
|
14101
14407
|
}
|
|
14102
14408
|
|
|
14409
|
+
type Visitor<T extends RcElement> = (element: T, index?: number, count?: number) => void;
|
|
14410
|
+
/** @private */
|
|
14411
|
+
declare class ElementPool<T extends RcElement> extends RcObject {
|
|
14412
|
+
private _owner;
|
|
14413
|
+
private _creator;
|
|
14414
|
+
private _pool;
|
|
14415
|
+
private _views;
|
|
14416
|
+
protected _orphans: Map<any, T>;
|
|
14417
|
+
private _styleName;
|
|
14418
|
+
constructor(owner: RcElement, creator: {
|
|
14419
|
+
new (doc: Document, styleName?: string): T;
|
|
14420
|
+
}, styleName?: string);
|
|
14421
|
+
protected _doDestroy(): void;
|
|
14422
|
+
get isEmpty(): boolean;
|
|
14423
|
+
get count(): number;
|
|
14424
|
+
get first(): T;
|
|
14425
|
+
get last(): T;
|
|
14426
|
+
get(index: number): T;
|
|
14427
|
+
getAll(): T[];
|
|
14428
|
+
pull(index: number): T;
|
|
14429
|
+
_internalItems(): T[];
|
|
14430
|
+
elementOf(dom: Element): T;
|
|
14431
|
+
find(matcher: (v: T) => boolean): T;
|
|
14432
|
+
private $_create;
|
|
14433
|
+
prepare(count: number, visitor?: Visitor<T>, initor?: Visitor<T>): ElementPool<T>;
|
|
14434
|
+
borrow(): T;
|
|
14435
|
+
free(element: T, removeDelay?: number): void;
|
|
14436
|
+
freeAll(elements?: T[], removeDelay?: number): void;
|
|
14437
|
+
freeHiddens(): void;
|
|
14438
|
+
freeFrom(from: number): void;
|
|
14439
|
+
forEach(visitor: (v: T, i?: number, count?: number) => void): void;
|
|
14440
|
+
visit(visitor: (v: T, i: number, count: number) => boolean): boolean;
|
|
14441
|
+
sort(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14442
|
+
sortDom(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14443
|
+
map(callback: (v: T) => any): any[];
|
|
14444
|
+
front(v: T): void;
|
|
14445
|
+
back(v: T): void;
|
|
14446
|
+
getOrphans(): T[];
|
|
14447
|
+
addOrphan(key: any, element: T): void;
|
|
14448
|
+
freeOrphan(key: any): void;
|
|
14449
|
+
clearOrphans(): void;
|
|
14450
|
+
protected _prepareOrphans(): Map<any, T>;
|
|
14451
|
+
}
|
|
14452
|
+
|
|
14103
14453
|
interface IPoint2 {
|
|
14104
14454
|
x1: number;
|
|
14105
14455
|
y1: number;
|
|
@@ -14179,50 +14529,6 @@ declare class LegendView extends BoundableElement<Legend> {
|
|
|
14179
14529
|
private $_measure;
|
|
14180
14530
|
}
|
|
14181
14531
|
|
|
14182
|
-
type Visitor<T extends RcElement> = (element: T, index?: number, count?: number) => void;
|
|
14183
|
-
/** @private */
|
|
14184
|
-
declare class ElementPool<T extends RcElement> extends RcObject {
|
|
14185
|
-
private _owner;
|
|
14186
|
-
private _creator;
|
|
14187
|
-
private _pool;
|
|
14188
|
-
private _views;
|
|
14189
|
-
protected _orphans: Map<any, T>;
|
|
14190
|
-
private _styleName;
|
|
14191
|
-
constructor(owner: RcElement, creator: {
|
|
14192
|
-
new (doc: Document, styleName?: string): T;
|
|
14193
|
-
}, styleName?: string);
|
|
14194
|
-
protected _doDestroy(): void;
|
|
14195
|
-
get isEmpty(): boolean;
|
|
14196
|
-
get count(): number;
|
|
14197
|
-
get first(): T;
|
|
14198
|
-
get last(): T;
|
|
14199
|
-
get(index: number): T;
|
|
14200
|
-
getAll(): T[];
|
|
14201
|
-
pull(index: number): T;
|
|
14202
|
-
_internalItems(): T[];
|
|
14203
|
-
elementOf(dom: Element): T;
|
|
14204
|
-
find(matcher: (v: T) => boolean): T;
|
|
14205
|
-
private $_create;
|
|
14206
|
-
prepare(count: number, visitor?: Visitor<T>, initor?: Visitor<T>): ElementPool<T>;
|
|
14207
|
-
borrow(): T;
|
|
14208
|
-
free(element: T, removeDelay?: number): void;
|
|
14209
|
-
freeAll(elements?: T[], removeDelay?: number): void;
|
|
14210
|
-
freeHiddens(): void;
|
|
14211
|
-
freeFrom(from: number): void;
|
|
14212
|
-
forEach(visitor: (v: T, i?: number, count?: number) => void): void;
|
|
14213
|
-
visit(visitor: (v: T, i: number, count: number) => boolean): boolean;
|
|
14214
|
-
sort(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14215
|
-
sortDom(compare: (v1: T, v2: T) => number): ElementPool<T>;
|
|
14216
|
-
map(callback: (v: T) => any): any[];
|
|
14217
|
-
front(v: T): void;
|
|
14218
|
-
back(v: T): void;
|
|
14219
|
-
getOrphans(): T[];
|
|
14220
|
-
addOrphan(key: any, element: T): void;
|
|
14221
|
-
freeOrphan(key: any): void;
|
|
14222
|
-
clearOrphans(): void;
|
|
14223
|
-
protected _prepareOrphans(): Map<any, T>;
|
|
14224
|
-
}
|
|
14225
|
-
|
|
14226
14532
|
declare class PointViewPool<T extends RcElement & IPointView = RcElement & IPointView> extends ElementPool<T> {
|
|
14227
14533
|
freeOrphans(): this;
|
|
14228
14534
|
addOrphanedPoints(points: DataPoint[], freeExisting?: boolean): this;
|
|
@@ -14320,6 +14626,17 @@ type ILabelOverlap = {
|
|
|
14320
14626
|
outline: number;
|
|
14321
14627
|
contrast: number;
|
|
14322
14628
|
};
|
|
14629
|
+
declare class StackLabelView extends ChartTextElement {
|
|
14630
|
+
xValue: number;
|
|
14631
|
+
constructor(doc: Document);
|
|
14632
|
+
}
|
|
14633
|
+
declare class StackLabelContainer extends LayerElement {
|
|
14634
|
+
private _labels;
|
|
14635
|
+
constructor(doc: Document);
|
|
14636
|
+
prepare(count: number): ElementPool<StackLabelView>;
|
|
14637
|
+
get(index: number): StackLabelView;
|
|
14638
|
+
forEach(fn: (v: StackLabelView, i: number) => void): void;
|
|
14639
|
+
}
|
|
14323
14640
|
declare abstract class SeriesView<T extends Series = Series> extends ContentView<T> {
|
|
14324
14641
|
static readonly POINT_CLASS = "rct-point";
|
|
14325
14642
|
static readonly DATA_FOCUS = "focus";
|
|
@@ -14345,6 +14662,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
14345
14662
|
_hoverAnis: MarkerHoverAnimation[];
|
|
14346
14663
|
_hoverPts: IPointView[];
|
|
14347
14664
|
private _labelOverlap;
|
|
14665
|
+
_stackLabelContainer: StackLabelContainer;
|
|
14348
14666
|
constructor(doc: Document, styleName: string);
|
|
14349
14667
|
depthEnabled(): boolean;
|
|
14350
14668
|
clipInvertable(): boolean;
|
|
@@ -14391,6 +14709,9 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
14391
14709
|
protected _doMeasure(doc: Document, model: T, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
14392
14710
|
protected _doLayout(): void;
|
|
14393
14711
|
protected _doAfterLayout(): void;
|
|
14712
|
+
private _layoutStackLabel;
|
|
14713
|
+
private _hideStackLabel;
|
|
14714
|
+
private _doLayoutStackLabel;
|
|
14394
14715
|
protected abstract _prepareSeries(doc: Document, model: T, polar: boolean, depth: BodyDepth): void;
|
|
14395
14716
|
protected abstract _renderSeries(width: number, height: number): void;
|
|
14396
14717
|
protected _collectVisPoints(model: T): DataPoint[];
|
|
@@ -14407,6 +14728,11 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
14407
14728
|
protected _runShowEffect(firstTime: boolean): void;
|
|
14408
14729
|
private $_renderTrendline;
|
|
14409
14730
|
protected _layoutLabel(model: DataPointLabel, info: LabelLayoutInfo, w: number, h: number): void;
|
|
14731
|
+
/**
|
|
14732
|
+
* overflow fit 좌표 계산. body 영역을 벗어난 경우 fit 값에 따라 조정된 좌표를 반환.
|
|
14733
|
+
* @returns 조정된 좌표. null이면 라벨을 숨겨야 함(hidden). 변경 없으면 pos 그대로 반환.
|
|
14734
|
+
*/
|
|
14735
|
+
private _applyOverflowFit;
|
|
14410
14736
|
protected _checkLabelOverlap(lv: PointLabelView, r: IRect, px: number, py: number, pw: number, ph: number, x: number, y: number, inner: boolean, target: Element): boolean;
|
|
14411
14737
|
protected _clipRange(w: number, h: number, rangeAxis: 'x' | 'y' | 'z', range: ValueRange, clip: ClipRectElement, inverted: boolean): void;
|
|
14412
14738
|
protected _setFill(elt: RcElement, style: SVGStyleOrClass): void;
|
|
@@ -14558,6 +14884,7 @@ declare abstract class AxisGuideView<T extends AxisGuide = AxisGuide> extends Rc
|
|
|
14558
14884
|
vertical(): boolean;
|
|
14559
14885
|
prepare(doc: Document, model: T): void;
|
|
14560
14886
|
layout(width: number, height: number, polar?: IPolar): void;
|
|
14887
|
+
protected _getContrastTarget(): Element;
|
|
14561
14888
|
abstract _doLayout(width: number, height: number): void;
|
|
14562
14889
|
abstract _doLayoutPolar(width: number, height: number, polar: IPolar): void;
|
|
14563
14890
|
}
|
|
@@ -14572,6 +14899,7 @@ declare class AxisGuideRangeView extends AxisGuideView<AxisRangeGuide> {
|
|
|
14572
14899
|
private _box;
|
|
14573
14900
|
_range: [number, number];
|
|
14574
14901
|
constructor(doc: Document, polar: boolean);
|
|
14902
|
+
protected _getContrastTarget(): Element;
|
|
14575
14903
|
prepare(doc: Document, model: AxisRangeGuide): void;
|
|
14576
14904
|
_doLayout(width: number, height: number): void;
|
|
14577
14905
|
_doLayoutPolar(width: number, height: number, polar: IPolar): void;
|
|
@@ -14615,6 +14943,7 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
14615
14943
|
private _breakViews;
|
|
14616
14944
|
private _seriesContainer;
|
|
14617
14945
|
private _labelContainer;
|
|
14946
|
+
private _stackLabelContainer;
|
|
14618
14947
|
_seriesViews: SeriesView<Series>[];
|
|
14619
14948
|
private _seriesMap;
|
|
14620
14949
|
private _series;
|
|
@@ -15031,13 +15360,16 @@ declare class TimeAxis extends ContinuousAxis<TimeAxisOptions> {
|
|
|
15031
15360
|
protected _createTickModel(): TimeAxisTick;
|
|
15032
15361
|
protected _createLabel(): TimeAxisLabel;
|
|
15033
15362
|
_prepare(): void;
|
|
15363
|
+
protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
|
|
15034
15364
|
collectValues(): void;
|
|
15365
|
+
getBaseValue(): number;
|
|
15035
15366
|
getValue(value: any): number;
|
|
15036
15367
|
incStep(value: number, step: any): number;
|
|
15037
15368
|
date(value: number): Date;
|
|
15038
15369
|
axisValueAt(length: number, pos: number): any;
|
|
15039
15370
|
value2Tooltip(value: number): any;
|
|
15040
15371
|
getXLabel(value: number): number | Date;
|
|
15372
|
+
private $_inferScale;
|
|
15041
15373
|
}
|
|
15042
15374
|
|
|
15043
15375
|
/**
|
|
@@ -15462,11 +15794,171 @@ declare class BoxPlotSeries extends LowRangedSeries<BoxPlotSeriesOptions> {
|
|
|
15462
15794
|
protected _createLegendMarker(doc: Document, size: number): RcElement;
|
|
15463
15795
|
}
|
|
15464
15796
|
|
|
15797
|
+
/** @private */
|
|
15798
|
+
declare class BubblePieLegendMarkerView extends RcElement {
|
|
15799
|
+
_back: RectElement;
|
|
15800
|
+
private _sectors;
|
|
15801
|
+
private _size;
|
|
15802
|
+
private _colorResolver;
|
|
15803
|
+
constructor(doc: Document);
|
|
15804
|
+
/**
|
|
15805
|
+
* 색상 리졸버를 설정한다.
|
|
15806
|
+
*/
|
|
15807
|
+
setColorResolver(resolver: () => string[]): void;
|
|
15808
|
+
/**
|
|
15809
|
+
* 기본 색상을 받아 섹터별 색상을 적용한다.
|
|
15810
|
+
*/
|
|
15811
|
+
setColor(color: string): void;
|
|
15812
|
+
/**
|
|
15813
|
+
* 균등 분할된 파이 조각으로 범례 마커를 렌더링한다.
|
|
15814
|
+
*/
|
|
15815
|
+
render(size: number, sliceCount: number, colors: string[]): void;
|
|
15816
|
+
/**
|
|
15817
|
+
* 섹터 색상을 적용한다.
|
|
15818
|
+
*/
|
|
15819
|
+
_applyColors(colors: string[]): void;
|
|
15820
|
+
}
|
|
15821
|
+
|
|
15822
|
+
/**
|
|
15823
|
+
* 버블 내부 파이 차트의 한 조각.<br/>
|
|
15824
|
+
* 범례 소스로서도 동작한다 ({@link ILegendSource}).<br/>
|
|
15825
|
+
* 필드당 하나만 생성되며 모든 버블이 공유한다.
|
|
15826
|
+
*/
|
|
15827
|
+
declare class BubblePieSlice implements ILegendSource {
|
|
15828
|
+
/** 필드명 */
|
|
15829
|
+
field: string;
|
|
15830
|
+
/** 라벨 */
|
|
15831
|
+
label: string;
|
|
15832
|
+
/** 원본 필드 인덱스 */
|
|
15833
|
+
index: number;
|
|
15834
|
+
_pie: BubblePie;
|
|
15835
|
+
private _legendMarker;
|
|
15836
|
+
_visible: boolean;
|
|
15837
|
+
_explicitColor: string;
|
|
15838
|
+
_sliceCount: number;
|
|
15839
|
+
/**
|
|
15840
|
+
* 슬라이스의 resolved 색상.<br/>
|
|
15841
|
+
* 명시 색상이 있으면 그 값을, 없으면 부모 시리즈 색상에서 파생된 색상을 반환한다.
|
|
15842
|
+
*/
|
|
15843
|
+
get color(): string;
|
|
15844
|
+
/** 부모 BubbleSeries 참조 */
|
|
15845
|
+
get series(): BubbleSeries;
|
|
15846
|
+
/** 부모 BubblePie 모델 */
|
|
15847
|
+
get pie(): BubblePie;
|
|
15848
|
+
/** 전체 슬라이스 수 */
|
|
15849
|
+
get sliceCount(): number;
|
|
15850
|
+
get visible(): boolean;
|
|
15851
|
+
set visible(v: boolean);
|
|
15852
|
+
legendMarker(): RcElement;
|
|
15853
|
+
setLegendMarker(elt: RcElement): void;
|
|
15854
|
+
legendColor(): string;
|
|
15855
|
+
legendStroke(): string;
|
|
15856
|
+
legendLabel(): string;
|
|
15857
|
+
legendKey(): any;
|
|
15858
|
+
isEmpty(): boolean;
|
|
15859
|
+
/** WidgetSeriesPoint.getParam 패턴 — 콜백에서 속성 조회에 사용 */
|
|
15860
|
+
getParam(param: string): any;
|
|
15861
|
+
}
|
|
15862
|
+
/**
|
|
15863
|
+
* 포인트별 파이 슬라이스 렌더링 데이터.<br/>
|
|
15864
|
+
* 범례 소스({@link BubblePieSlice})를 참조하며, 포인트별로 계산된 값만 보유한다.
|
|
15865
|
+
*/
|
|
15866
|
+
declare class BubblePieSliceInfo {
|
|
15867
|
+
/** 범례 소스 참조 */
|
|
15868
|
+
source: BubblePieSlice;
|
|
15869
|
+
/** 값 */
|
|
15870
|
+
value: number;
|
|
15871
|
+
/** 퍼센트 */
|
|
15872
|
+
percent: number;
|
|
15873
|
+
/** 시작 각도 (라디안) */
|
|
15874
|
+
startAngle: number;
|
|
15875
|
+
/** 각도 (라디안) */
|
|
15876
|
+
angle: number;
|
|
15877
|
+
/** 색상 */
|
|
15878
|
+
color: string;
|
|
15879
|
+
/** 필드명 */
|
|
15880
|
+
get field(): string;
|
|
15881
|
+
/** 레이블 */
|
|
15882
|
+
get label(): string;
|
|
15883
|
+
/** 슬라이스 인덱스 */
|
|
15884
|
+
get index(): number;
|
|
15885
|
+
/** DataPoint.getParam 패턴 — 툴팁 ${param} 치환에 사용 */
|
|
15886
|
+
getParam(param: string): any;
|
|
15887
|
+
}
|
|
15465
15888
|
/**
|
|
15466
15889
|
* [y, z]
|
|
15467
15890
|
* [x, y, z]
|
|
15468
15891
|
*/
|
|
15469
15892
|
declare class BubbleSeriesPoint extends ZValuePoint {
|
|
15893
|
+
/** 파이 조각 정보 배열 — pie 옵션이 활성화된 경우에만 존재 */
|
|
15894
|
+
pieSlices: BubblePieSliceInfo[];
|
|
15895
|
+
}
|
|
15896
|
+
/**
|
|
15897
|
+
* 버블 내부 파이 차트 모델.<br/>
|
|
15898
|
+
*/
|
|
15899
|
+
declare class BubblePie extends ChartItem<BubblePieOptions> {
|
|
15900
|
+
static defaults: BubblePieOptions;
|
|
15901
|
+
private _fields;
|
|
15902
|
+
private _categories;
|
|
15903
|
+
private _sliceColors;
|
|
15904
|
+
private _startRad;
|
|
15905
|
+
private _totalRad;
|
|
15906
|
+
private _clockwise;
|
|
15907
|
+
private _innerRadiusDim;
|
|
15908
|
+
private _legendSources;
|
|
15909
|
+
private _parentSeries;
|
|
15910
|
+
get fields(): string[];
|
|
15911
|
+
get categories(): string[];
|
|
15912
|
+
get colors(): string[];
|
|
15913
|
+
/**
|
|
15914
|
+
* 슬라이스 색상이 명시적으로 지정되었는지 여부.
|
|
15915
|
+
*/
|
|
15916
|
+
get hasExplicitColors(): boolean;
|
|
15917
|
+
get startRad(): number;
|
|
15918
|
+
get totalRad(): number;
|
|
15919
|
+
get clockwise(): boolean;
|
|
15920
|
+
get innerRadiusDim(): IPercentSize;
|
|
15921
|
+
get visibleInLegend(): boolean;
|
|
15922
|
+
/**
|
|
15923
|
+
* 부모 BubbleSeries 참조.
|
|
15924
|
+
*/
|
|
15925
|
+
get parentSeries(): BubbleSeries;
|
|
15926
|
+
/**
|
|
15927
|
+
* 부모 시리즈 참조를 설정한다.
|
|
15928
|
+
* @private
|
|
15929
|
+
*/
|
|
15930
|
+
_setParentSeries(series: BubbleSeries): void;
|
|
15931
|
+
/**
|
|
15932
|
+
* 슬라이스 팔레트 시작 오프셋.<br/>
|
|
15933
|
+
* 앞선 BubbleSeries들의 슬라이스 필드 수를 누적하여 이어서 적용한다.
|
|
15934
|
+
*/
|
|
15935
|
+
get _paletteOffset(): number;
|
|
15936
|
+
/**
|
|
15937
|
+
* 파이 조각별 범례 소스를 반환한다.
|
|
15938
|
+
*/
|
|
15939
|
+
getLegendSources(): BubblePieSlice[];
|
|
15940
|
+
/**
|
|
15941
|
+
* 해당 인덱스의 필드가 범례에서 보이는 상태인지 반환한다.
|
|
15942
|
+
*/
|
|
15943
|
+
isFieldVisible(index: number): boolean;
|
|
15944
|
+
/**
|
|
15945
|
+
* 데이터포인트 source에서 pie 필드 값들을 읽어 슬라이스를 계산한다.
|
|
15946
|
+
*/
|
|
15947
|
+
calcSlices(source: any): BubblePieSliceInfo[];
|
|
15948
|
+
/**
|
|
15949
|
+
* 시리즈의 resolved 색상을 기반으로 슬라이스 색상을 파생한다.
|
|
15950
|
+
*/
|
|
15951
|
+
resolveSliceColors(slices: BubblePieSliceInfo[]): void;
|
|
15952
|
+
/**
|
|
15953
|
+
* 범례 마커에 사용할 슬라이스 색상 배열을 반환한다.
|
|
15954
|
+
* @private
|
|
15955
|
+
*/
|
|
15956
|
+
getLegendSliceColors(): string[];
|
|
15957
|
+
getInnerRadius(rd: number): number;
|
|
15958
|
+
protected _doSetSimple(src: any): boolean;
|
|
15959
|
+
protected _doApply(op: BubblePieOptions): void;
|
|
15960
|
+
private _buildLegendSources;
|
|
15961
|
+
private _getFieldValue;
|
|
15470
15962
|
}
|
|
15471
15963
|
/**
|
|
15472
15964
|
* 버블 시리즈 모델.<br/>
|
|
@@ -15478,21 +15970,42 @@ declare class BubbleSeries extends MarkerSeries<BubbleSeriesOptions> {
|
|
|
15478
15970
|
static defaults: BubbleSeriesOptions;
|
|
15479
15971
|
private _minSizeDim;
|
|
15480
15972
|
private _maxSizeDim;
|
|
15973
|
+
private _pie;
|
|
15974
|
+
private _pieLegendMarker;
|
|
15975
|
+
/** 현재 호버 중인 파이 슬라이스 — 뷰에서 설정 */
|
|
15976
|
+
_hoveredSlice: BubblePieSliceInfo;
|
|
15481
15977
|
_zMin: number;
|
|
15482
15978
|
_zMax: number;
|
|
15483
15979
|
_noSize: boolean;
|
|
15980
|
+
protected _doInit(op: {
|
|
15981
|
+
[child: string]: ChartItemOptions;
|
|
15982
|
+
}): void;
|
|
15983
|
+
/**
|
|
15984
|
+
* 버블 내부 파이 차트 모델.<br/>
|
|
15985
|
+
*/
|
|
15986
|
+
get pie(): BubblePie;
|
|
15987
|
+
/**
|
|
15988
|
+
* 파이 범례 마커 뷰.<br/>
|
|
15989
|
+
* @private
|
|
15990
|
+
*/
|
|
15991
|
+
get pieLegendMarker(): BubblePieLegendMarkerView;
|
|
15484
15992
|
getShape(): Shape;
|
|
15485
15993
|
getPixelMinMax(len: number): {
|
|
15486
15994
|
min: number;
|
|
15487
15995
|
max: number;
|
|
15488
15996
|
};
|
|
15489
15997
|
getRadius(value: number, pxMin: number, pxMax: number): number;
|
|
15998
|
+
getTooltipText(series: ISeries, point: DataPoint): string;
|
|
15999
|
+
getTooltipParam(series: ISeries, point: DataPoint, param: string): any;
|
|
16000
|
+
getTooltipHeaderColor(point: DataPoint): string;
|
|
15490
16001
|
protected _doApply(options: BubbleSeriesOptions): void;
|
|
15491
16002
|
protected _createPoint(source: any): DataPoint;
|
|
15492
16003
|
protected _getNoClip(polar: boolean): boolean;
|
|
15493
16004
|
get canPolar(): boolean;
|
|
15494
16005
|
hasZ(): boolean;
|
|
15495
16006
|
_colorByPoint(): boolean;
|
|
16007
|
+
protected _createLegendMarker(doc: Document, size: number): RcElement;
|
|
16008
|
+
getLegendSources(list: ILegendSource[]): void;
|
|
15496
16009
|
protected _doPrepareRender(): void;
|
|
15497
16010
|
protected _getRangeMinMax(axis: "x" | "y" | "z"): {
|
|
15498
16011
|
min: number;
|
|
@@ -16221,15 +16734,28 @@ declare class BubbleSeriesPointView extends MarkerSeriesPointView {
|
|
|
16221
16734
|
*/
|
|
16222
16735
|
declare class BubbleSeriesView extends MarkerSeriesView<BubbleSeries, BubbleSeriesPoint> implements IMarkerSeriesView {
|
|
16223
16736
|
private _polar;
|
|
16737
|
+
private _pieContainer;
|
|
16738
|
+
private _pieSectors;
|
|
16739
|
+
/** 섹터 DOM → {point, slice, pv} 매핑 (호버/툴팁용) */
|
|
16740
|
+
private _sectorMap;
|
|
16224
16741
|
constructor(doc: Document);
|
|
16225
16742
|
protected _createMarkers(container: PointContainer): PointViewPool<MarkerSeriesPointView>;
|
|
16226
16743
|
protected _prepareSeries(doc: Document, model: BubbleSeries): void;
|
|
16227
16744
|
protected _renderSeries(width: number, height: number): void;
|
|
16228
16745
|
protected _runShowEffect(firstTime: boolean): void;
|
|
16229
16746
|
protected _doViewRateChanged(rate: number): void;
|
|
16747
|
+
pointByDom(elt: Element): IPointView;
|
|
16230
16748
|
private $_prepareMarkers;
|
|
16749
|
+
/**
|
|
16750
|
+
* 파이 섹터 요소를 준비한다.
|
|
16751
|
+
*/
|
|
16752
|
+
private $_preparePie;
|
|
16231
16753
|
protected _getDefaultPos(overflowed: boolean): PointLabelPosition;
|
|
16232
16754
|
private $_layoutMarkers;
|
|
16755
|
+
/**
|
|
16756
|
+
* 버블 내부에 파이 섹터들을 렌더링한다.
|
|
16757
|
+
*/
|
|
16758
|
+
private $_renderPieSectors;
|
|
16233
16759
|
getNearest(x: number, y: number): {
|
|
16234
16760
|
pv: IPointView;
|
|
16235
16761
|
dist: number;
|
|
@@ -16799,4 +17325,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
16799
17325
|
declare const createData: typeof Globals.createData;
|
|
16800
17326
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
16801
17327
|
|
|
16802
|
-
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 };
|
|
17328
|
+
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 };
|