realchart 1.1.11 → 1.1.13
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/dist/index.d.ts +316 -90
- package/dist/index.esm.js +2 -2
- package/dist/index.ie.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +11 -4
- package/dist/realchart-style.ie.css +11 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -180,6 +180,10 @@ declare class Size {
|
|
|
180
180
|
* 123, '10%' 형식으로 크기를 지정한다.
|
|
181
181
|
*/
|
|
182
182
|
type PercentSize = string | number;
|
|
183
|
+
interface IPercentSize {
|
|
184
|
+
size: number;
|
|
185
|
+
fixed: boolean;
|
|
186
|
+
}
|
|
183
187
|
/**
|
|
184
188
|
* 수평 정렬.
|
|
185
189
|
* @enum
|
|
@@ -263,8 +267,7 @@ interface SVGStyles {
|
|
|
263
267
|
* 텍스트 정렬을 지정한다.<br/>
|
|
264
268
|
* **SVG에 적용되는 정식 css style 속성이 아니다.**
|
|
265
269
|
* 즉, HTML이나 realchart-style.css 등의 외부 css 파일에서 사용할 수 없고,
|
|
266
|
-
* RealChart 내부에서 {@page config.title}
|
|
267
|
-
* inline 스타일 속성으로 지정할 수 있다.
|
|
270
|
+
* RealChart 내부에서 {@page config.title} 등의 inline 스타일 속성으로 지정할 수 있다.
|
|
268
271
|
*
|
|
269
272
|
* ```js
|
|
270
273
|
* const config = {
|
|
@@ -447,7 +450,7 @@ interface ChartItemOptions {
|
|
|
447
450
|
*/
|
|
448
451
|
visible?: boolean;
|
|
449
452
|
/**
|
|
450
|
-
* 스타일셋
|
|
453
|
+
* {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
451
454
|
*
|
|
452
455
|
*/
|
|
453
456
|
style?: SVGStyleOrClass;
|
|
@@ -460,15 +463,18 @@ interface ChartTextOptions extends ChartItemOptions {
|
|
|
460
463
|
*/
|
|
461
464
|
effect?: ChartTextEffect;
|
|
462
465
|
/**
|
|
463
|
-
* {@page autoContrast}가 true이고 밝게 표시할 때 적용되는
|
|
466
|
+
* {@page autoContrast}가 true이고 밝게 표시할 때 적용되는
|
|
467
|
+
* {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
464
468
|
*/
|
|
465
469
|
lightStyle?: SVGStyleOrClass;
|
|
466
470
|
/**
|
|
467
|
-
* {@page autoContrast}가 true이고 어둡게 표시할 때 적용되는
|
|
471
|
+
* {@page autoContrast}가 true이고 어둡게 표시할 때 적용되는
|
|
472
|
+
* {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
468
473
|
*/
|
|
469
474
|
darkStyle?: SVGStyleOrClass;
|
|
470
475
|
/**
|
|
471
|
-
* {@page effect}가 'background'일 때 배경에 적용되는
|
|
476
|
+
* {@page effect}가 'background'일 때 배경에 적용되는
|
|
477
|
+
* {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
472
478
|
*/
|
|
473
479
|
backgroundStyle?: SVGStyleOrClass;
|
|
474
480
|
/**
|
|
@@ -1109,6 +1115,7 @@ declare class RcElement extends RcObject {
|
|
|
1109
1115
|
protected _styleName: string;
|
|
1110
1116
|
protected _styles: any;
|
|
1111
1117
|
protected _styleDirty: boolean;
|
|
1118
|
+
hiding: boolean;
|
|
1112
1119
|
tag: any;
|
|
1113
1120
|
private _dom;
|
|
1114
1121
|
private _parent;
|
|
@@ -1131,6 +1138,8 @@ declare class RcElement extends RcObject {
|
|
|
1131
1138
|
set width(value: number);
|
|
1132
1139
|
get height(): number;
|
|
1133
1140
|
set height(value: number);
|
|
1141
|
+
get tright(): number;
|
|
1142
|
+
get tbottom(): number;
|
|
1134
1143
|
/**
|
|
1135
1144
|
* visible
|
|
1136
1145
|
*/
|
|
@@ -1163,11 +1172,14 @@ declare class RcElement extends RcObject {
|
|
|
1163
1172
|
getRect(): IRect;
|
|
1164
1173
|
getSize(): Size;
|
|
1165
1174
|
getBBox(): IRect;
|
|
1175
|
+
getBBoxEx(): IRect;
|
|
1176
|
+
inflateBBox(dx: number, dy: number): IRect;
|
|
1166
1177
|
controlToElement(x: number, y: number): Point;
|
|
1167
1178
|
svgToElement(x: number, y: number): Point;
|
|
1168
1179
|
elementToSvg(x: number, y: number): Point;
|
|
1169
1180
|
move(x: number, y: number): RcElement;
|
|
1170
1181
|
setPos(x: number, y: number): void;
|
|
1182
|
+
setPosY(y: number): void;
|
|
1171
1183
|
isDomAnimating(): boolean;
|
|
1172
1184
|
rotate(angle: number): RcElement;
|
|
1173
1185
|
internalRotate(angle: number): void;
|
|
@@ -1178,6 +1190,7 @@ declare class RcElement extends RcObject {
|
|
|
1178
1190
|
transEx2(x: number, y: number, duration?: number, invalidate?: boolean): RcElement;
|
|
1179
1191
|
transX(x: number): RcElement;
|
|
1180
1192
|
transY(y: number): RcElement;
|
|
1193
|
+
shiftY(dy: number): RcElement;
|
|
1181
1194
|
/**
|
|
1182
1195
|
*
|
|
1183
1196
|
* @param width
|
|
@@ -1313,18 +1326,36 @@ type PointHoverCallback = (args: DataPointCallbackArgs) => void;
|
|
|
1313
1326
|
type PointClickCallback = (args: DataPointCallbackArgs) => boolean;
|
|
1314
1327
|
type PointStyleCallback = (args: DataPointCallbackArgs) => SVGStyleOrClass;
|
|
1315
1328
|
/**
|
|
1329
|
+
* 시리즈 데이터포인트 {@page config.base.series.pointLabel 라벨} 표시 위치.<br/>
|
|
1330
|
+
* {@page config.base.series.pointLabel.position} 속성 값으로 사용된다.
|
|
1331
|
+
*
|
|
1316
1332
|
* @enum
|
|
1317
1333
|
*/
|
|
1318
|
-
declare const
|
|
1334
|
+
declare const _PointLabelPosition: {
|
|
1335
|
+
/**
|
|
1336
|
+
* 시리즈 종류에 따라 데이터포인트 라벨들의 표시 위치가 자동 결정된다.<br/>
|
|
1337
|
+
*/
|
|
1319
1338
|
readonly AUTO: "auto";
|
|
1320
|
-
|
|
1321
|
-
|
|
1339
|
+
/**
|
|
1340
|
+
* 포인트뷰 상단에 표시.<br/>
|
|
1341
|
+
*/
|
|
1322
1342
|
readonly HEAD: "head";
|
|
1343
|
+
/**
|
|
1344
|
+
* 포인트뷰 하단에 표시.<br/>
|
|
1345
|
+
*/
|
|
1323
1346
|
readonly FOOT: "foot";
|
|
1324
|
-
|
|
1325
|
-
|
|
1347
|
+
/**
|
|
1348
|
+
* {@page config.series.pie}나 {@page config.series.funnel}애서 데이터포인트 라벨을
|
|
1349
|
+
* 포인트뷰 내부에 표시.<br/>
|
|
1350
|
+
*/
|
|
1351
|
+
readonly INSIDE: "inside";
|
|
1352
|
+
/**
|
|
1353
|
+
* {@page config.series.pie}나 {@page config.series.funnel}애서 데이터포인트 라벨을
|
|
1354
|
+
* 포인트뷰 외부에 표시.<br/>
|
|
1355
|
+
*/
|
|
1356
|
+
readonly OUTSIDE: "outside";
|
|
1326
1357
|
};
|
|
1327
|
-
type
|
|
1358
|
+
type PointLabelPosition = typeof _PointLabelPosition[keyof typeof _PointLabelPosition];
|
|
1328
1359
|
/**
|
|
1329
1360
|
* 시리즈 데이터포인트들의 label 옵션.<br/>
|
|
1330
1361
|
* {@page config.base.series}의 'pointLabel' 항목으로 설정한다.
|
|
@@ -1334,6 +1365,7 @@ type PointItemPosition = typeof _PointItemPosition[keyof typeof _PointItemPositi
|
|
|
1334
1365
|
* series: {
|
|
1335
1366
|
* pointLabel: {
|
|
1336
1367
|
* visible: true,
|
|
1368
|
+
* position: 'outside',
|
|
1337
1369
|
* suffix: '%',
|
|
1338
1370
|
* style: {
|
|
1339
1371
|
* fontWeight: 'bold',
|
|
@@ -1353,38 +1385,27 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
1353
1385
|
*/
|
|
1354
1386
|
visible?: boolean;
|
|
1355
1387
|
/**
|
|
1356
|
-
* 포인트 label 표시
|
|
1388
|
+
* 포인트 label 표시 위치.<br/>
|
|
1389
|
+
* 'auto'이면 시리즈 종류에 따라 위치가 결정된다.
|
|
1357
1390
|
*
|
|
1358
1391
|
* @default 'auto'
|
|
1359
1392
|
*/
|
|
1360
|
-
position?:
|
|
1361
|
-
/**
|
|
1362
|
-
* 다중 라인이거나 경계가 있을 때,
|
|
1363
|
-
* 텍스트 상자 내에서 텍스트 라인들의 수평 정렬.
|
|
1364
|
-
*
|
|
1365
|
-
* @default 'center'
|
|
1366
|
-
*/
|
|
1367
|
-
textAlign?: Align;
|
|
1393
|
+
position?: PointLabelPosition;
|
|
1368
1394
|
/**
|
|
1369
|
-
* label과 point view 사이의 기본
|
|
1370
|
-
*
|
|
1395
|
+
* label과 point view 혹은 connector 사이의 기본 간격.<br/>
|
|
1396
|
+
* 숫자 대신 콜백을 설정해서 데이터포인트별 값을 지정할 수 있다.
|
|
1397
|
+
* 콜백에서 타당한 값을 리턴하지 않으면 기본값이 사용된다.
|
|
1371
1398
|
*
|
|
1399
|
+
* @default 5
|
|
1372
1400
|
*/
|
|
1373
|
-
offset?: number;
|
|
1374
|
-
/**
|
|
1375
|
-
* 'pie', 'funnel' 시리즈에서 label이 외부에 표시될 때 label과 시리즈 본체와의 기본 간격.
|
|
1376
|
-
*
|
|
1377
|
-
* @default 25
|
|
1378
|
-
*/
|
|
1379
|
-
distance?: number;
|
|
1401
|
+
offset?: number | ((point: any) => number);
|
|
1380
1402
|
/**
|
|
1381
1403
|
* 계산되는 기본 text 대신, data point label로 표시될 field.<br/>
|
|
1382
1404
|
* {@page textCallback}이 설정되고 콜백에서 null이나 undefined를 리턴하지 않으면 이 속성은 무시된다.
|
|
1383
|
-
*
|
|
1384
1405
|
*/
|
|
1385
1406
|
textField?: string;
|
|
1386
1407
|
/**
|
|
1387
|
-
* polar
|
|
1408
|
+
* polar이거나 원형 시리즈일 때 true로 지정할 경우 각도에 따라 자동으로 회전 시킨다.
|
|
1388
1409
|
*/
|
|
1389
1410
|
autoRotation?: boolean;
|
|
1390
1411
|
/**
|
|
@@ -1395,17 +1416,18 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
1395
1416
|
*/
|
|
1396
1417
|
textCallback?: (point: any) => string;
|
|
1397
1418
|
/**
|
|
1398
|
-
* 데이터 포인트별 label 표시 여부를 리턴하는
|
|
1419
|
+
* 데이터 포인트별 label 표시 여부를 리턴하는 콜백.<br/>
|
|
1399
1420
|
*
|
|
1400
1421
|
*/
|
|
1401
1422
|
visibleCallback?: (point: any) => boolean;
|
|
1402
1423
|
/**
|
|
1403
|
-
* 데이터 포인트별로 추가 적용되는 스타일을
|
|
1424
|
+
* 데이터 포인트별로 추가 적용되는 스타일을 리턴한다.<br/>
|
|
1404
1425
|
*/
|
|
1405
1426
|
styleCallback?: (point: any) => SVGStyleOrClass;
|
|
1406
1427
|
}
|
|
1407
1428
|
/**
|
|
1408
|
-
* 추세선(trendline)
|
|
1429
|
+
* 추세선(trendline) 유형.<br/>
|
|
1430
|
+
*
|
|
1409
1431
|
* @enum
|
|
1410
1432
|
*/
|
|
1411
1433
|
declare const _TrendLineType: {
|
|
@@ -1450,6 +1472,8 @@ type TrendLineType = typeof _TrendLineType[keyof typeof _TrendLineType];
|
|
|
1450
1472
|
/**
|
|
1451
1473
|
* 시리즈 추세선 옵션.<br/>
|
|
1452
1474
|
* {@page config.base.series}의 'trendLine' 항목으로 설정한다.
|
|
1475
|
+
*
|
|
1476
|
+
* @enum
|
|
1453
1477
|
*/
|
|
1454
1478
|
interface TrendlineOptions extends ChartItemOptions {
|
|
1455
1479
|
/**
|
|
@@ -1570,7 +1594,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1570
1594
|
*/
|
|
1571
1595
|
xStep?: number | string;
|
|
1572
1596
|
/**
|
|
1573
|
-
* 모든 데이터포인트에 적용되는
|
|
1597
|
+
* 모든 데이터포인트에 적용되는 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
1574
1598
|
* {@page Series.style}로 설정되는 시리즈의 inline 스타일이
|
|
1575
1599
|
* 데이터포인터에 적용되지 않는 경우 이 속성을 사용할 수 있다.
|
|
1576
1600
|
* {@page pointColors}나 {@page color}가 설정되면 이 속성으로 설정된 색상은 무시된다.
|
|
@@ -1632,7 +1656,8 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1632
1656
|
*/
|
|
1633
1657
|
hoverEffect?: 'none' | 'default';
|
|
1634
1658
|
/**
|
|
1635
|
-
* 데이터포인트 위에 마우스가 있을 때 적용되는
|
|
1659
|
+
* 데이터포인트 위에 마우스가 있을 때 적용되는
|
|
1660
|
+
* {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
1636
1661
|
*/
|
|
1637
1662
|
hoverStyle?: SVGStyleOrClass;
|
|
1638
1663
|
/**
|
|
@@ -1977,7 +2002,8 @@ interface LineSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
|
1977
2002
|
*/
|
|
1978
2003
|
hoverScale?: number;
|
|
1979
2004
|
/**
|
|
1980
|
-
* 데이터포인트 위에 마우스가 있을 때 적용되는
|
|
2005
|
+
* 데이터포인트 위에 마우스가 있을 때 적용되는
|
|
2006
|
+
* {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
1981
2007
|
* {@page config.series.hoverStyle} 보다 우선 적용된다.
|
|
1982
2008
|
*
|
|
1983
2009
|
* @config
|
|
@@ -2007,6 +2033,116 @@ interface LineSeriesBaseOptions extends ConnectableSeriesOptions {
|
|
|
2007
2033
|
*/
|
|
2008
2034
|
nullAsBase?: boolean;
|
|
2009
2035
|
}
|
|
2036
|
+
/**
|
|
2037
|
+
* 데이터포인트 라벨들을 정렬하는 방식.<br/>
|
|
2038
|
+
* @enum
|
|
2039
|
+
*/
|
|
2040
|
+
declare const _PointLabelAlign: {
|
|
2041
|
+
/**
|
|
2042
|
+
* 정렬하지 않는다.<br/>
|
|
2043
|
+
*/
|
|
2044
|
+
readonly NONE: "none";
|
|
2045
|
+
/**
|
|
2046
|
+
* position이 'outside'일 때 시리즈 본체에 가까운 쪽에 정렬하고,
|
|
2047
|
+
* 'inside'일 때 시리즈 중심(pie 시리즈)이나 왼쪽(funnel 시리즈)에 졍렬한다..<br/>
|
|
2048
|
+
*/
|
|
2049
|
+
readonly NEAR: "near";
|
|
2050
|
+
/**
|
|
2051
|
+
* position이 'outside'일 때 차트 전체 영역의 경계 쪽에 정렬하고,
|
|
2052
|
+
* 'inside'일 때 시리즈 경계(pie 시리즈)나 오른쪽(funnel 시리즈)에 졍렬한다..<br/>
|
|
2053
|
+
*/
|
|
2054
|
+
readonly FAR: "far";
|
|
2055
|
+
};
|
|
2056
|
+
type PointLabelAlign = typeof _PointLabelAlign[keyof typeof _PointLabelAlign];
|
|
2057
|
+
/**
|
|
2058
|
+
* 겹치는 데이터포인트 라벨들의 처리 방식.<br/>
|
|
2059
|
+
* @enum
|
|
2060
|
+
*/
|
|
2061
|
+
declare const _PointLabelDedupeMode: {
|
|
2062
|
+
/**
|
|
2063
|
+
* 중복제거 없이 모두 표시한다.
|
|
2064
|
+
*/
|
|
2065
|
+
readonly DISPLAY_ALL: "displayAll";
|
|
2066
|
+
/**
|
|
2067
|
+
* data point 순서대로 표시한다.
|
|
2068
|
+
*/
|
|
2069
|
+
readonly PRESERVE_ORDER: "preserveOrder";
|
|
2070
|
+
/**
|
|
2071
|
+
* 값이 큰 항목을 우선으로 표시한다.
|
|
2072
|
+
*/
|
|
2073
|
+
readonly LARGEST_FIRST: "largestFirst";
|
|
2074
|
+
};
|
|
2075
|
+
type PointLabelDedupeMode = typeof _PointLabelDedupeMode[keyof typeof _PointLabelDedupeMode];
|
|
2076
|
+
/**
|
|
2077
|
+
* 영역을 벗어나는 데이터포인트 라벨들의 표시 여부.<br/>
|
|
2078
|
+
* @enum
|
|
2079
|
+
*/
|
|
2080
|
+
declare const _PointLabelOverflow: {
|
|
2081
|
+
/**
|
|
2082
|
+
* 모두 표시한다.
|
|
2083
|
+
*/
|
|
2084
|
+
readonly VISIBLE: "visible";
|
|
2085
|
+
/**
|
|
2086
|
+
* body 영역을 벗어난 label과 line을 표시하지 않는다.
|
|
2087
|
+
*/
|
|
2088
|
+
readonly HIDDEN: "hidden";
|
|
2089
|
+
};
|
|
2090
|
+
type PointLabelOverflow = typeof _PointLabelOverflow[keyof typeof _PointLabelOverflow];
|
|
2091
|
+
/**
|
|
2092
|
+
* pie 및 funnel 시리즈의 데이터포인트 label 옵션.<br/>
|
|
2093
|
+
* 라벨들이 겹치면 값이 적은 것들 순서대로 감춘다.
|
|
2094
|
+
*/
|
|
2095
|
+
interface WidgetSeriesLabelOptions extends DataPointLabelOptions {
|
|
2096
|
+
/**
|
|
2097
|
+
* @override
|
|
2098
|
+
* @default true
|
|
2099
|
+
*/
|
|
2100
|
+
visible?: boolean;
|
|
2101
|
+
/**
|
|
2102
|
+
* 데이터포인트 라벨들을 정렬하는 방식.
|
|
2103
|
+
*
|
|
2104
|
+
* @default 'none'
|
|
2105
|
+
*/
|
|
2106
|
+
align?: PointLabelAlign;
|
|
2107
|
+
/**
|
|
2108
|
+
* 연결선 옵션 설정 모델.
|
|
2109
|
+
*
|
|
2110
|
+
*/
|
|
2111
|
+
connector?: WidgetSeriesConnectorOptions;
|
|
2112
|
+
/**
|
|
2113
|
+
* label들이 최대한 영역 밖으로 나가지 않도록 안쪽으로 모은다.
|
|
2114
|
+
*
|
|
2115
|
+
* @default true
|
|
2116
|
+
*/
|
|
2117
|
+
convergable?: boolean;
|
|
2118
|
+
/**
|
|
2119
|
+
* label과 pie 본체와의 기본 간격.<br/>
|
|
2120
|
+
*/
|
|
2121
|
+
distance?: number;
|
|
2122
|
+
/**
|
|
2123
|
+
* label이 겹칠 때 처리 표시 지정한다.
|
|
2124
|
+
*
|
|
2125
|
+
* @default 'displayAll'
|
|
2126
|
+
*/
|
|
2127
|
+
dedupeMode?: PointLabelDedupeMode;
|
|
2128
|
+
/**
|
|
2129
|
+
* label이 겹칠 때 처리 표시 지정한다.
|
|
2130
|
+
*
|
|
2131
|
+
* @default 'visible'
|
|
2132
|
+
*/
|
|
2133
|
+
overflow?: PointLabelOverflow;
|
|
2134
|
+
}
|
|
2135
|
+
/**
|
|
2136
|
+
* 데이터포인트 label과 시리즈 본체를 연결하는 선.<br/>
|
|
2137
|
+
*/
|
|
2138
|
+
interface WidgetSeriesConnectorOptions extends ChartItemOptions {
|
|
2139
|
+
/**
|
|
2140
|
+
* true면 곡선으로 표시한다.<br/>
|
|
2141
|
+
*
|
|
2142
|
+
* @default true
|
|
2143
|
+
*/
|
|
2144
|
+
curved?: boolean;
|
|
2145
|
+
}
|
|
2010
2146
|
/**
|
|
2011
2147
|
* {@page config.series.pie} 시리즈나 {@page config.seriesfunnel} 시리즈 설정 옵션들의 기반(base).<br/>
|
|
2012
2148
|
*/
|
|
@@ -2024,7 +2160,7 @@ interface WidgetSeriesOptions extends SeriesOptions {
|
|
|
2024
2160
|
* {@page config.series.funnel 'funnel'} 시리즈들의 수직 중심 위치<br/>
|
|
2025
2161
|
* 숫자나 body 영역 높이에 대한 상대값을 '%'로 지정할 수 있다.
|
|
2026
2162
|
|
|
2027
|
-
|
|
2163
|
+
* @default '50%'
|
|
2028
2164
|
*/
|
|
2029
2165
|
centerY?: PercentSize;
|
|
2030
2166
|
/**
|
|
@@ -2039,6 +2175,12 @@ interface WidgetSeriesOptions extends SeriesOptions {
|
|
|
2039
2175
|
* @default false
|
|
2040
2176
|
*/
|
|
2041
2177
|
legendByPoint?: boolean;
|
|
2178
|
+
/**
|
|
2179
|
+
* 값이 0인 데이터포인트를 범례 항목으로 표시할 것인 지 여부.<br/>
|
|
2180
|
+
*
|
|
2181
|
+
* @default true
|
|
2182
|
+
*/
|
|
2183
|
+
zeroInLegend?: boolean;
|
|
2042
2184
|
}
|
|
2043
2185
|
declare const BarRangeSeriesType = "barrange";
|
|
2044
2186
|
/**
|
|
@@ -2183,7 +2325,7 @@ interface LinePointLabelOptions extends DataPointLabelOptions {
|
|
|
2183
2325
|
*
|
|
2184
2326
|
* @default 'head'
|
|
2185
2327
|
*/
|
|
2186
|
-
position?:
|
|
2328
|
+
position?: PointLabelPosition;
|
|
2187
2329
|
/**
|
|
2188
2330
|
* position 위치에서 수평 정렬 상태.
|
|
2189
2331
|
*
|
|
@@ -2203,20 +2345,14 @@ interface LinePointLabelOptions extends DataPointLabelOptions {
|
|
|
2203
2345
|
declare const _LineType: {
|
|
2204
2346
|
/**
|
|
2205
2347
|
* 시리즈 종류에 따라 직선이거나 곡선일 수 있다.
|
|
2206
|
-
*
|
|
2207
|
-
* @config
|
|
2208
2348
|
*/
|
|
2209
2349
|
readonly DEFAULT: "default";
|
|
2210
2350
|
/**
|
|
2211
2351
|
* 점들을 연결하는 스플라인 곡선.
|
|
2212
|
-
*
|
|
2213
|
-
* @config
|
|
2214
2352
|
*/
|
|
2215
2353
|
readonly SPLINE: "spline";
|
|
2216
2354
|
/**
|
|
2217
2355
|
* 계단형 직선.
|
|
2218
|
-
*
|
|
2219
|
-
* @config
|
|
2220
2356
|
*/
|
|
2221
2357
|
readonly STEP: "step";
|
|
2222
2358
|
};
|
|
@@ -2371,12 +2507,12 @@ interface SplineSeriesOptions extends LineSeriesOptions {
|
|
|
2371
2507
|
interface AreaSeriesOptions extends LineSeriesOptions {
|
|
2372
2508
|
type?: AreaSeriesOptionsType;
|
|
2373
2509
|
/**
|
|
2374
|
-
* area 영역에 추가적으로 적용되는
|
|
2510
|
+
* area 영역에 추가적으로 적용되는 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
2375
2511
|
*
|
|
2376
2512
|
*/
|
|
2377
2513
|
areaStyle?: SVGStyleOrClass;
|
|
2378
2514
|
/**
|
|
2379
|
-
* base 아래쪽 area 영역에 추가적으로 적용되는
|
|
2515
|
+
* base 아래쪽 area 영역에 추가적으로 적용되는 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
2380
2516
|
*
|
|
2381
2517
|
*/
|
|
2382
2518
|
belowAreaStyle?: SVGStyleOrClass;
|
|
@@ -2631,7 +2767,7 @@ interface CandlestickSeriesOptions extends LowRangedSeriesOptions {
|
|
|
2631
2767
|
*/
|
|
2632
2768
|
highField?: string;
|
|
2633
2769
|
/**
|
|
2634
|
-
* 값이 하락한 데이터포인트에 적용되는
|
|
2770
|
+
* 값이 하락한 데이터포인트에 적용되는 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
2635
2771
|
*
|
|
2636
2772
|
*/
|
|
2637
2773
|
declineStyle?: SVGStyleOrClass;
|
|
@@ -2646,7 +2782,7 @@ interface CircleBarPointLabelOptions extends DataPointLabelOptions {
|
|
|
2646
2782
|
* @override
|
|
2647
2783
|
* @default 'inside'
|
|
2648
2784
|
*/
|
|
2649
|
-
position?:
|
|
2785
|
+
position?: PointLabelPosition;
|
|
2650
2786
|
}
|
|
2651
2787
|
declare const CircleBarSeriesType = "circlebar";
|
|
2652
2788
|
/**
|
|
@@ -2817,6 +2953,17 @@ interface ErrorBarSeriesOptions extends LowRangedSeriesOptions {
|
|
|
2817
2953
|
*/
|
|
2818
2954
|
tooltipText?: string;
|
|
2819
2955
|
}
|
|
2956
|
+
/**
|
|
2957
|
+
* funnel 시리즈의 point label 옵션.<br/>
|
|
2958
|
+
* position이 'auto'이면 'inside'로 표시된다.
|
|
2959
|
+
* 라벨들이 겹치면 값이 적은 것들 순서대로 감춘다.
|
|
2960
|
+
*/
|
|
2961
|
+
interface FunnelSeriesLabelOptions extends WidgetSeriesLabelOptions {
|
|
2962
|
+
/**
|
|
2963
|
+
* true로 지정하면 반대쪽(왼편)에 표시한다.
|
|
2964
|
+
*/
|
|
2965
|
+
opposite?: boolean;
|
|
2966
|
+
}
|
|
2820
2967
|
declare const FunnelSeriesType = "funnel";
|
|
2821
2968
|
/**
|
|
2822
2969
|
* Funnel 시리즈.<br/>
|
|
@@ -2845,6 +2992,10 @@ declare const FunnelSeriesType = "funnel";
|
|
|
2845
2992
|
*/
|
|
2846
2993
|
interface FunnelSeriesOptions extends WidgetSeriesOptions {
|
|
2847
2994
|
type?: typeof FunnelSeriesType;
|
|
2995
|
+
/**
|
|
2996
|
+
* @override
|
|
2997
|
+
*/
|
|
2998
|
+
pointLabel?: FunnelSeriesLabelOptions;
|
|
2848
2999
|
/**
|
|
2849
3000
|
* @default '85%'
|
|
2850
3001
|
*/
|
|
@@ -3003,7 +3154,7 @@ interface AreaRangeSeriesOptions extends LineSeriesBaseOptions {
|
|
|
3003
3154
|
*/
|
|
3004
3155
|
highField?: string;
|
|
3005
3156
|
/**
|
|
3006
|
-
* area 영역에 추가적으로 적용되는
|
|
3157
|
+
* area 영역에 추가적으로 적용되는 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
3007
3158
|
*
|
|
3008
3159
|
*/
|
|
3009
3160
|
areaStyle?: SVGStyleOrClass;
|
|
@@ -3179,12 +3330,42 @@ interface RadialSeriesOptions extends WidgetSeriesOptions {
|
|
|
3179
3330
|
}
|
|
3180
3331
|
interface PieSeriesTextOptions extends IconedTextOptions {
|
|
3181
3332
|
}
|
|
3182
|
-
|
|
3333
|
+
/**
|
|
3334
|
+
* 데이터포인트 라벨의 회전 방식 지정.<br/>
|
|
3335
|
+
* @enum
|
|
3336
|
+
*/
|
|
3337
|
+
declare const _PointLabelRotationMode: {
|
|
3183
3338
|
/**
|
|
3184
|
-
*
|
|
3185
|
-
* @default true
|
|
3339
|
+
* 호를 따라 label을 회전 시킨다.
|
|
3186
3340
|
*/
|
|
3187
|
-
|
|
3341
|
+
readonly ARC: "arc";
|
|
3342
|
+
/**
|
|
3343
|
+
* 중심각에 따라 label을 회전시킨다.
|
|
3344
|
+
*/
|
|
3345
|
+
readonly ANGLE: "angle";
|
|
3346
|
+
};
|
|
3347
|
+
type PointLabelRotationMode = typeof _PointLabelRotationMode[keyof typeof _PointLabelRotationMode];
|
|
3348
|
+
/**
|
|
3349
|
+
* pie 시리즈의 point label 옵션.<br/>
|
|
3350
|
+
* position이 'auto'이면 'inside'로 표시된다.
|
|
3351
|
+
* 라벨들이 겹치면 값이 적은 것들 순서대로 감춘다.
|
|
3352
|
+
*/
|
|
3353
|
+
interface PieSeriesLabelOptions extends WidgetSeriesLabelOptions {
|
|
3354
|
+
/**
|
|
3355
|
+
* {@page position}이 'inside'가 될 때,
|
|
3356
|
+
* label의 중심점이 되는 위치를 pie 전체 원에 대한 **0~1** 사이의 상대값으로 지정한다.<br/>
|
|
3357
|
+
* 이 속성값과 {@page offset} 속성값의 합으로 위치가 정해진다.
|
|
3358
|
+
*
|
|
3359
|
+
* @default 0.7
|
|
3360
|
+
*/
|
|
3361
|
+
radius?: number;
|
|
3362
|
+
/**
|
|
3363
|
+
* {@page autoRatation}이 true 일때,
|
|
3364
|
+
* label의 회전 방식을 지정한다.
|
|
3365
|
+
*
|
|
3366
|
+
* @default 'arc'
|
|
3367
|
+
*/
|
|
3368
|
+
rotationMode?: PointLabelRotationMode;
|
|
3188
3369
|
}
|
|
3189
3370
|
declare const PieSeriesType = "pie";
|
|
3190
3371
|
/**
|
|
@@ -3222,28 +3403,24 @@ interface PieSeriesOptions extends RadialSeriesOptions {
|
|
|
3222
3403
|
*/
|
|
3223
3404
|
groupSize?: number;
|
|
3224
3405
|
/**
|
|
3225
|
-
* 0보다 큰 값을 지정해서 도넛 형태로 표시할 수
|
|
3406
|
+
* 0보다 큰 값을 지정해서 도넛 형태로 표시할 수 있다.<br/>
|
|
3226
3407
|
* 시리즈 원호의 반지름에 대한 상대적 크기나 픽셀 수로 지정할 수 있다.
|
|
3227
3408
|
* {@page innerText}로 도넛 내부에 표시될 텍스트를 지정할 수 있다.
|
|
3228
3409
|
*/
|
|
3229
3410
|
innerRadius?: PercentSize;
|
|
3230
|
-
/**
|
|
3231
|
-
* @default 25
|
|
3232
|
-
*/
|
|
3233
|
-
labelDistance?: number;
|
|
3234
3411
|
/**
|
|
3235
3412
|
* @default '7%'
|
|
3236
3413
|
*/
|
|
3237
3414
|
sliceOffset?: PercentSize;
|
|
3238
3415
|
/**
|
|
3239
|
-
* 클릭한 데이터 포인트를 slice
|
|
3416
|
+
* 클릭한 데이터 포인트를 slice 시킨다.<br/>
|
|
3240
3417
|
* 기존 slice 됐던 포인트는 원복된다.
|
|
3241
3418
|
*
|
|
3242
3419
|
* @default true
|
|
3243
3420
|
*/
|
|
3244
3421
|
autoSlice?: boolean;
|
|
3245
3422
|
/**
|
|
3246
|
-
* Slice animation duration
|
|
3423
|
+
* Slice animation duration.<br/>
|
|
3247
3424
|
* 밀리세컨드(ms) 단위로 지정.
|
|
3248
3425
|
*
|
|
3249
3426
|
* @default 300
|
|
@@ -3252,11 +3429,9 @@ interface PieSeriesOptions extends RadialSeriesOptions {
|
|
|
3252
3429
|
/**
|
|
3253
3430
|
* @default 0
|
|
3254
3431
|
*/
|
|
3255
|
-
borderRadius?: number;
|
|
3256
3432
|
/**
|
|
3257
|
-
* {@page innerRadius}가 0보다 클 때, 도넛 내부에 표시되는
|
|
3433
|
+
* {@page innerRadius}가 0보다 클 때, 도넛 내부에 표시되는 텍스트.<br/>
|
|
3258
3434
|
* 기본 클래스 selector는 <b>'rct-pie-series-inner'</b>이다.
|
|
3259
|
-
*
|
|
3260
3435
|
*/
|
|
3261
3436
|
innerText?: PieSeriesTextOptions;
|
|
3262
3437
|
}
|
|
@@ -3668,8 +3843,7 @@ interface TitleOptions extends ChartItemOptions {
|
|
|
3668
3843
|
*/
|
|
3669
3844
|
verticalAlign?: VerticalAlign;
|
|
3670
3845
|
/**
|
|
3671
|
-
* 배경 스타일셋
|
|
3672
|
-
*
|
|
3846
|
+
* 배경 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
3673
3847
|
*/
|
|
3674
3848
|
backgroundStyle?: SVGStyleOrClass;
|
|
3675
3849
|
/**
|
|
@@ -3892,6 +4066,10 @@ interface EmptyViewOptions extends ChartTextOptions {
|
|
|
3892
4066
|
}
|
|
3893
4067
|
/**
|
|
3894
4068
|
* {@page config.base.series 시리즈}나 {@page config.base.gauge 게이지}들이 그려지는 영역 설정 옵션.<br/>
|
|
4069
|
+
* 전체 차트에서 {@page config.title 타이틀}, {@page config.legend 범례},
|
|
4070
|
+
* 외부 {@page config.base.annotation 어노테이션}들을 제외한 영역이다.
|
|
4071
|
+
* 특히, {@page config.#polar 극좌표계} 또는 {@page config.series.pie}나 {@page config.series.funnel} 시리즈는
|
|
4072
|
+
* 이 영역을 기준으로 크기와 위치를 설정한다.
|
|
3895
4073
|
*
|
|
3896
4074
|
* ```js
|
|
3897
4075
|
* const chart = {
|
|
@@ -3907,25 +4085,25 @@ interface EmptyViewOptions extends ChartTextOptions {
|
|
|
3907
4085
|
*/
|
|
3908
4086
|
interface BodyOptions extends ChartItemOptions {
|
|
3909
4087
|
/**
|
|
3910
|
-
*
|
|
4088
|
+
* {@page config.#polar 극좌표계} 차트일 때 반지름.<br/>
|
|
3911
4089
|
*
|
|
3912
4090
|
* @default '45%'
|
|
3913
4091
|
*/
|
|
3914
4092
|
radius?: PercentSize;
|
|
3915
4093
|
/**
|
|
3916
|
-
*
|
|
4094
|
+
* {@page config.#polar 극좌표계} 차트일 때 중심 x 좌표.<br/>
|
|
3917
4095
|
*
|
|
3918
4096
|
* @default '50%'
|
|
3919
4097
|
*/
|
|
3920
4098
|
centerX?: PercentSize;
|
|
3921
4099
|
/**
|
|
3922
|
-
*
|
|
4100
|
+
* {@page config.#polar 극좌표계} 차트일 때 중심 y 좌표.<br/>
|
|
3923
4101
|
*
|
|
3924
4102
|
* @default '50%'
|
|
3925
4103
|
*/
|
|
3926
4104
|
centerY?: PercentSize;
|
|
3927
4105
|
/**
|
|
3928
|
-
* false이면 polar 차트일 때, x 축선과 y축 그리드 선들을 다각형으로 표시한다.<br/>
|
|
4106
|
+
* false이면 {@page config.#polar 극좌표계} 차트일 때, x 축선과 y축 그리드 선들을 다각형으로 표시한다.<br/>
|
|
3929
4107
|
*
|
|
3930
4108
|
* @default true
|
|
3931
4109
|
*/
|
|
@@ -5049,6 +5227,7 @@ declare abstract class Widget<OP extends ChartItemOptions> extends ChartItem<OP>
|
|
|
5049
5227
|
*/
|
|
5050
5228
|
interface ILegendSource {
|
|
5051
5229
|
visible: boolean;
|
|
5230
|
+
isEmpty?(): boolean;
|
|
5052
5231
|
legendMarker(doc: Document, size: number): RcElement;
|
|
5053
5232
|
legendColor(): string;
|
|
5054
5233
|
legendLabel(): string;
|
|
@@ -5150,7 +5329,7 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
|
|
|
5150
5329
|
* 옵션 설정 모델은 {@page DataPointLabelOptions}이다.
|
|
5151
5330
|
*/
|
|
5152
5331
|
declare class DataPointLabel<OP extends DataPointLabelOptions = DataPointLabelOptions> extends IconedText<OP> {
|
|
5153
|
-
|
|
5332
|
+
static readonly OFFSET = 5;
|
|
5154
5333
|
static defaults: DataPointLabelOptions;
|
|
5155
5334
|
private _point;
|
|
5156
5335
|
_domain: IRichTextDomain;
|
|
@@ -5328,6 +5507,10 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5328
5507
|
private _argsPoint;
|
|
5329
5508
|
private _loaded;
|
|
5330
5509
|
_pointsChanged: boolean;
|
|
5510
|
+
_labelPos: PointLabelPosition;
|
|
5511
|
+
_labelPosCallback: (p: DataPointCallbackArgs) => PointLabelPosition;
|
|
5512
|
+
_labelOff: number;
|
|
5513
|
+
_labelOffCallback: (p: DataPointCallbackArgs) => number;
|
|
5331
5514
|
protected _doInit(op: OP): void;
|
|
5332
5515
|
protected _doInitChildren(op: {
|
|
5333
5516
|
[child: string]: ChartItemOptions;
|
|
@@ -5349,7 +5532,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5349
5532
|
*/
|
|
5350
5533
|
get name(): string;
|
|
5351
5534
|
/**
|
|
5352
|
-
* 데이터포인트 label 설정
|
|
5535
|
+
* 데이터포인트 label 설정 모델.<br/>
|
|
5353
5536
|
*/
|
|
5354
5537
|
get pointLabel(): DataPointLabel<DataPointLabelOptions>;
|
|
5355
5538
|
/**
|
|
@@ -5361,6 +5544,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5361
5544
|
* 시리즈에 설정된 데이터포인트 개수.<br/>
|
|
5362
5545
|
*/
|
|
5363
5546
|
get pointCount(): number;
|
|
5547
|
+
get points(): DataPoint[];
|
|
5364
5548
|
/**
|
|
5365
5549
|
* 시리즈에 설정된 데이터포인트들 중 표시 중인 것들의 개수.<br/>
|
|
5366
5550
|
*/
|
|
@@ -5448,12 +5632,15 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5448
5632
|
pointValuesPrepared(axis: IAxis): void;
|
|
5449
5633
|
reference(other: Series, axis: IAxis): void;
|
|
5450
5634
|
getLegendSources(list: ILegendSource[]): void;
|
|
5451
|
-
|
|
5635
|
+
getLabelPos(labels: DataPointLabel): PointLabelPosition;
|
|
5636
|
+
protected _getLabelAutoPos(labels: DataPointLabel, pos: PointLabelPosition): PointLabelPosition;
|
|
5637
|
+
getLabelPos2(labels: DataPointLabel, p: DataPoint): PointLabelPosition;
|
|
5452
5638
|
getLabelOff(off: number): number;
|
|
5639
|
+
getLabelOff2(p: DataPoint): number;
|
|
5453
5640
|
referBy(ref: Series): void;
|
|
5454
5641
|
setPointVisible(p: DataPoint, visible: boolean): void;
|
|
5455
5642
|
protected _preparePointArgs(args: DataPointCallbackArgs): void;
|
|
5456
|
-
_getPointCallbackArgs(args: DataPointCallbackArgs, p: DataPoint):
|
|
5643
|
+
_getPointCallbackArgs(args: DataPointCallbackArgs, p: DataPoint): DataPointCallbackArgs;
|
|
5457
5644
|
getPointText(p: DataPoint, index: number, label: any): string;
|
|
5458
5645
|
getPointStyle(p: DataPoint): SVGStyleOrClass;
|
|
5459
5646
|
getPointLabelStyle(p: DataPoint): any;
|
|
@@ -5605,6 +5792,9 @@ declare class PlottingItemCollection extends ChartItemCollection<PlottingItem> {
|
|
|
5605
5792
|
private $_loadItem;
|
|
5606
5793
|
private $_add;
|
|
5607
5794
|
}
|
|
5795
|
+
/**
|
|
5796
|
+
* @internal
|
|
5797
|
+
*/
|
|
5608
5798
|
declare abstract class ConnectableSeries<OP extends ConnectableSeriesOptions = ConnectableSeriesOptions> extends Series<OP> {
|
|
5609
5799
|
static defaults: ConnectableSeriesOptions;
|
|
5610
5800
|
protected _doInitChildren(op: {
|
|
@@ -5633,19 +5823,47 @@ declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
|
|
|
5633
5823
|
legendColor(): string;
|
|
5634
5824
|
legendLabel(): string;
|
|
5635
5825
|
styleLegendMarker(marker: RcElement): void;
|
|
5826
|
+
isEmpty(): boolean;
|
|
5827
|
+
initPrev(axis: IAxis, prev: any): void;
|
|
5828
|
+
}
|
|
5829
|
+
declare class WidgetSeriesConnector extends ChartItem<WidgetSeriesConnectorOptions> {
|
|
5830
|
+
static defaults: WidgetSeriesConnectorOptions;
|
|
5831
|
+
}
|
|
5832
|
+
declare abstract class WidgetSeriesLabel<OP extends WidgetSeriesLabelOptions = WidgetSeriesLabelOptions> extends DataPointLabel<OP> {
|
|
5833
|
+
isSub: boolean;
|
|
5834
|
+
static defaults: WidgetSeriesLabelOptions;
|
|
5835
|
+
private _connector;
|
|
5836
|
+
private _distance;
|
|
5837
|
+
protected _distanceDim: IPercentSize;
|
|
5838
|
+
constructor(chart: IChart, isSub?: boolean);
|
|
5839
|
+
protected _doInitChildren(op: {
|
|
5840
|
+
[child: string]: ChartItemOptions;
|
|
5841
|
+
}): void;
|
|
5842
|
+
/**
|
|
5843
|
+
* 연결선 모델.<br/>
|
|
5844
|
+
*/
|
|
5845
|
+
get connector(): WidgetSeriesConnector;
|
|
5846
|
+
getAlign(): number;
|
|
5847
|
+
protected _doApply(options: WidgetSeriesLabelOptions): void;
|
|
5636
5848
|
}
|
|
5637
5849
|
declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = {}> extends Series<OP> {
|
|
5638
5850
|
static readonly CENTER = "50%";
|
|
5639
5851
|
static defaults: WidgetSeriesOptions;
|
|
5852
|
+
private _subLabel;
|
|
5640
5853
|
private _centerX;
|
|
5641
5854
|
private _centerY;
|
|
5642
5855
|
private _centerXDim;
|
|
5643
5856
|
private _centerYDim;
|
|
5857
|
+
protected _doInitChildren(op: {
|
|
5858
|
+
[child: string]: ChartItemOptions;
|
|
5859
|
+
}): void;
|
|
5860
|
+
get subLabel(): WidgetSeriesLabel;
|
|
5644
5861
|
getCenter(plotWidth: number, plotHeight: number): Point;
|
|
5645
|
-
|
|
5862
|
+
protected _getLabelAutoPos(labels: WidgetSeriesLabel, pos: PointLabelPosition): PointLabelPosition;
|
|
5646
5863
|
needAxes(): boolean;
|
|
5647
5864
|
_colorByPoint(): boolean;
|
|
5648
5865
|
getLegendSources(list: ILegendSource[]): void;
|
|
5866
|
+
_isVisibleInLegend(p: WidgetSeriesPoint): boolean;
|
|
5649
5867
|
protected _doApply(options: WidgetSeriesOptions): void;
|
|
5650
5868
|
canMinPadding(axis: IAxis, min: number): boolean;
|
|
5651
5869
|
canMaxPadding(axis: IAxis, max: number): boolean;
|
|
@@ -5676,7 +5894,6 @@ declare abstract class ClusterableSeries<OP extends ClusterableSeriesOptions = C
|
|
|
5676
5894
|
getMinPointWidth(): number;
|
|
5677
5895
|
getPointWidth(length: number): number;
|
|
5678
5896
|
getPointPos(length: number): number;
|
|
5679
|
-
getLabelPosition(p: PointItemPosition): PointItemPosition;
|
|
5680
5897
|
isClusterable(): boolean;
|
|
5681
5898
|
setCluster(width: number, pos: number): void;
|
|
5682
5899
|
protected _doPrepareRender(): void;
|
|
@@ -5738,6 +5955,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
5738
5955
|
isClusterable(): boolean;
|
|
5739
5956
|
getBaseValue(axis: IAxis): number;
|
|
5740
5957
|
getVisibleSeries(): ISeries[];
|
|
5958
|
+
get visCount(): number;
|
|
5741
5959
|
_type(): string;
|
|
5742
5960
|
_seriesType(): string;
|
|
5743
5961
|
setCol(col: number): void;
|
|
@@ -5813,6 +6031,7 @@ declare abstract class DataPoint {
|
|
|
5813
6031
|
series: string | number;
|
|
5814
6032
|
readonly pid: number;
|
|
5815
6033
|
source: any;
|
|
6034
|
+
labelOptions: any;
|
|
5816
6035
|
isNull: boolean;
|
|
5817
6036
|
xValue: number;
|
|
5818
6037
|
yValue: number;
|
|
@@ -5836,6 +6055,7 @@ declare abstract class DataPoint {
|
|
|
5836
6055
|
ariaHint(): string;
|
|
5837
6056
|
labelCount(): number;
|
|
5838
6057
|
getValue(): number;
|
|
6058
|
+
isEmpty(): boolean;
|
|
5839
6059
|
copy(): any;
|
|
5840
6060
|
assignTo(proxy?: any): any;
|
|
5841
6061
|
getProp(fld: string | number): any;
|
|
@@ -6537,15 +6757,11 @@ interface AxisTitleOptions extends AxisItemOptions {
|
|
|
6537
6757
|
backgroundStyle?: SVGStyleOrClass;
|
|
6538
6758
|
/**
|
|
6539
6759
|
* 타이틀을 가로 또는 세로로 배치할지 여부와 블록이 진행되는 방향을 지정한다.
|
|
6540
|
-
*
|
|
6541
|
-
* @config
|
|
6542
6760
|
*/
|
|
6543
6761
|
writingMode?: WritingMode;
|
|
6544
6762
|
/**
|
|
6545
6763
|
* 텍스트 문자 방향을 지정한다.
|
|
6546
6764
|
* 세로 모드의 텍스트에만 적용된다.
|
|
6547
|
-
*
|
|
6548
|
-
* @config
|
|
6549
6765
|
*/
|
|
6550
6766
|
textOrientation?: TextOrientation;
|
|
6551
6767
|
}
|
|
@@ -7432,7 +7648,7 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
7432
7648
|
* weightSeries data에서 weight를 제공하는 필드.<br/>
|
|
7433
7649
|
* // TODO: 구현할 것! (시리즈가 아니라 여기서 지정한 게 맞나?)
|
|
7434
7650
|
*/
|
|
7435
|
-
|
|
7651
|
+
weightField?: number | string;
|
|
7436
7652
|
/**
|
|
7437
7653
|
* 축의 양 끝 카테고리 위치 전후에 여백으로 추가되는 크기.<br/>
|
|
7438
7654
|
* 각각 시작/끝 카테고리에 대한 상대적 크기로 지정한다.
|
|
@@ -8018,8 +8234,8 @@ interface LinearValueBarOptions extends ChartItemOptions {
|
|
|
8018
8234
|
}
|
|
8019
8235
|
interface BulletValueBarOptions extends LinearValueBarOptions {
|
|
8020
8236
|
/**
|
|
8021
|
-
* {@page value 현재 값}이 {@page targetValue 목표 값} 미만일 때
|
|
8022
|
-
*
|
|
8237
|
+
* {@page value 현재 값}이 {@page targetValue 목표 값} 미만일 때
|
|
8238
|
+
* 적용되는 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
8023
8239
|
*/
|
|
8024
8240
|
belowStyle?: SVGStyleOrClass;
|
|
8025
8241
|
}
|
|
@@ -8186,7 +8402,7 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
|
|
|
8186
8402
|
*/
|
|
8187
8403
|
label?: CircularGaugeLabelOptions | boolean;
|
|
8188
8404
|
/**
|
|
8189
|
-
* 내부 원에 적용할 스타일셋
|
|
8405
|
+
* 내부 원에 적용할 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
8190
8406
|
*
|
|
8191
8407
|
*/
|
|
8192
8408
|
innerStyle?: SVGStyleOrClass;
|
|
@@ -8259,7 +8475,7 @@ interface CircularGaugeGroupOptions extends GaugeGroupOptions<CircleGaugeOptions
|
|
|
8259
8475
|
*/
|
|
8260
8476
|
label?: CircularGaugeLabelOptions | boolean;
|
|
8261
8477
|
/**
|
|
8262
|
-
* 내부 원에 적용할 스타일셋
|
|
8478
|
+
* 내부 원에 적용할 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
8263
8479
|
*
|
|
8264
8480
|
* @config
|
|
8265
8481
|
*/
|
|
@@ -11224,6 +11440,11 @@ declare class ErrorBarSeries extends LowRangedSeries<ErrorBarSeriesOptions> {
|
|
|
11224
11440
|
protected _getBottomValue(p: RangedPoint): number;
|
|
11225
11441
|
}
|
|
11226
11442
|
|
|
11443
|
+
declare class FunnelSeriesLabel extends WidgetSeriesLabel<FunnelSeriesLabelOptions> {
|
|
11444
|
+
static readonly OUTSIDE_DIST = 25;
|
|
11445
|
+
static readonly ENDED_DIST = 10;
|
|
11446
|
+
getDistance(): number;
|
|
11447
|
+
}
|
|
11227
11448
|
/**
|
|
11228
11449
|
* Funnel 시리즈 모델.<br/>
|
|
11229
11450
|
* {@page op.SeriesOptions#type}은 {@page config.series.funnel 'funnel'}이고,
|
|
@@ -11242,6 +11463,8 @@ declare class FunnelSeries extends WidgetSeries<FunnelSeriesOptions> {
|
|
|
11242
11463
|
private _neckHeightDim;
|
|
11243
11464
|
getSize(plotWidth: number, plotHeight: number): Size;
|
|
11244
11465
|
getNeckSize(width: number, height: number): Size;
|
|
11466
|
+
get pointLabel(): FunnelSeriesLabel;
|
|
11467
|
+
protected _createLabel(chart: IChart): FunnelSeriesLabel;
|
|
11245
11468
|
protected _createPoint(source: any): DataPoint;
|
|
11246
11469
|
protected _doApply(options: FunnelSeriesOptions): void;
|
|
11247
11470
|
}
|
|
@@ -11355,8 +11578,13 @@ declare class PieSeriesPoint extends WidgetSeriesPoint {
|
|
|
11355
11578
|
declare class PieSeriesText extends IconedText<PieSeriesTextOptions> {
|
|
11356
11579
|
getDefaultIconPos(): IconPosition;
|
|
11357
11580
|
}
|
|
11358
|
-
declare class PieSeriesLabel extends
|
|
11581
|
+
declare class PieSeriesLabel extends WidgetSeriesLabel<PieSeriesLabelOptions> {
|
|
11582
|
+
static readonly INSIDE_DIST: IPercentSize;
|
|
11583
|
+
static readonly INNER_DIST: IPercentSize;
|
|
11584
|
+
static readonly OUTSIDE_DIST = 25;
|
|
11585
|
+
static readonly ENDED_DIST = 10;
|
|
11359
11586
|
static defaults: PieSeriesLabelOptions;
|
|
11587
|
+
getDistance(inner: boolean, rd: number, rdInner: number): number;
|
|
11360
11588
|
}
|
|
11361
11589
|
/**
|
|
11362
11590
|
* Pie 시리즈 모델.<br/>
|
|
@@ -11381,8 +11609,6 @@ declare class PieSeries extends RadialSeries<PieSeriesOptions> {
|
|
|
11381
11609
|
/**
|
|
11382
11610
|
* {@page innerRadius}가 0보다 클 때, 도넛 내부에 표시되는 텍스트.
|
|
11383
11611
|
* 기본 클래스 selector는 <b>'rct-pie-series-inner'</b>이다.
|
|
11384
|
-
*
|
|
11385
|
-
* @config
|
|
11386
11612
|
*/
|
|
11387
11613
|
get innerText(): PieSeriesText;
|
|
11388
11614
|
followPointer(): boolean;
|
|
@@ -12114,4 +12340,4 @@ declare const configure: typeof Globals.configure;
|
|
|
12114
12340
|
declare const createChart: typeof Globals.createChart;
|
|
12115
12341
|
declare const createData: typeof Globals.createData;
|
|
12116
12342
|
|
|
12117
|
-
export { Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGauge, BulletGaugeBand, BulletGaugeBandOptions, BulletGaugeGroup, BulletGaugeGroupOptions, BulletGaugeOptions, BulletTargetBar, BulletTargetBarOptions, BulletValueBar, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartData, ChartDataCollection, ChartDataOptions, ChartItem, ChartItemOptions, ChartOptions, ChartOptionsOptions, ChartText, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleGauge, CircleGaugeGroup, CircleGaugeGroupOptions, CircleGaugeHand, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePin, CircleGaugePinOptions, CircleGaugeRim, CircleGaugeRimBase, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScale, CircleGaugeScaleOptions, CircleGaugeValueMarkerOptions, CircleGaugeValueRim, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGauge, ClockGaugeHand, ClockGaugeHandOptions, ClockGaugeLabel, ClockGaugeLabelOptions, ClockGaugeMinuteHand, ClockGaugeOptions, ClockGaugePin, ClockGaugePinOptions, ClockGaugeRim, ClockGaugeRimOptions, ClockGaugeSecondHand, ClockGaugeSecondHandOptions, ClockGaugeTick, ClockGaugeTickLabel, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, ColorListOptions, ConstraintSeriesGroup, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, FunnelSeries, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GradientOptions, GuageScaleTickOptions, HeatmapSeries, HeatmapSeriesOptions, HistogramSeries, HistogramSeriesOptions, IAxis, Point as IPoint, IconedText, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, Legend, LegendOptions, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGauge, LinearGaugeBase, LinearGaugeBaseOptions, LinearGaugeChildLabel, LinearGaugeChildLabelOptions, LinearGaugeGroup, LinearGaugeGroupBase, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabel, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeLabel, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScale, LinearGaugeScaleOptions, LinearGradientOptions, LinearValueBar, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, OhlcSeries, OhlcSeriesOptions, PaneBodyOptions, PaneOptions, ParetoSeries, ParetoSeriesOptions, PatternOptions, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PointHovering, PointHoveringOptions, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcObject, SVGStyles, ScatterSeries, ScatterSeriesOptions, Series, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, Shape, ShapeAnnotation, ShapeAnnotationOptions, SplineSeries, SplineSeriesOptions, Split, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnnotation, TextAnnotationOptions, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeries, TreemapSeriesOptions, Trendline, TrendlineOptions, ValueGauge, ValueGaugeOptions, ValueRange, ValueRangeList, VectorSeries, VectorSeriesOptions, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, ZoomButtonOptions, configure, createChart, createData, getVersion, setAnimatable, setDebugging, setLogging };
|
|
12343
|
+
export { Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGauge, BulletGaugeBand, BulletGaugeBandOptions, BulletGaugeGroup, BulletGaugeGroupOptions, BulletGaugeOptions, BulletTargetBar, BulletTargetBarOptions, BulletValueBar, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartData, ChartDataCollection, ChartDataOptions, ChartItem, ChartItemOptions, ChartOptions, ChartOptionsOptions, ChartText, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleGauge, CircleGaugeGroup, CircleGaugeGroupOptions, CircleGaugeHand, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePin, CircleGaugePinOptions, CircleGaugeRim, CircleGaugeRimBase, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScale, CircleGaugeScaleOptions, CircleGaugeValueMarkerOptions, CircleGaugeValueRim, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGauge, ClockGaugeHand, ClockGaugeHandOptions, ClockGaugeLabel, ClockGaugeLabelOptions, ClockGaugeMinuteHand, ClockGaugeOptions, ClockGaugePin, ClockGaugePinOptions, ClockGaugeRim, ClockGaugeRimOptions, ClockGaugeSecondHand, ClockGaugeSecondHandOptions, ClockGaugeTick, ClockGaugeTickLabel, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, ColorListOptions, ConnectableSeriesOptions, ConstraintSeriesGroup, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GradientOptions, GuageScaleTickOptions, HeatmapSeries, HeatmapSeriesOptions, HistogramSeries, HistogramSeriesOptions, IAxis, Point as IPoint, IconedText, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, Legend, LegendOptions, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGauge, LinearGaugeBase, LinearGaugeBaseOptions, LinearGaugeChildLabel, LinearGaugeChildLabelOptions, LinearGaugeGroup, LinearGaugeGroupBase, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabel, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeLabel, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScale, LinearGaugeScaleOptions, LinearGradientOptions, LinearValueBar, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, OhlcSeries, OhlcSeriesOptions, PaneBodyOptions, PaneOptions, ParetoSeries, ParetoSeriesOptions, PatternOptions, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PointHovering, PointHoveringOptions, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcObject, SVGStyles, ScatterSeries, ScatterSeriesOptions, Series, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, Shape, ShapeAnnotation, ShapeAnnotationOptions, SplineSeries, SplineSeriesOptions, Split, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnnotation, TextAnnotationOptions, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeries, TreemapSeriesOptions, Trendline, TrendlineOptions, ValueGauge, ValueGaugeOptions, ValueRange, ValueRangeList, VectorSeries, VectorSeriesOptions, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, ZoomButtonOptions, configure, createChart, createData, getVersion, setAnimatable, setDebugging, setLogging };
|