realchart 1.4.28 → 1.4.30
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.d.ts +6 -0
- package/gauge.js +2 -2
- package/gauge.mjs +2 -2
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +2 -2
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +1 -1
- package/ie/realchart-style.ie.css +8 -2
- package/ie/split.ie.js +2 -2
- 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 +332 -140
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +1 -1
- package/pictogram.mjs +1 -1
- package/realchart-style.css +3 -1
- package/split.js +2 -2
- package/split.mjs +2 -2
- 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
|
@@ -590,7 +590,7 @@ interface LinearGradientOptions extends GradientOptions {
|
|
|
590
590
|
dir?: 'down' | 'up' | 'right' | 'left';
|
|
591
591
|
}
|
|
592
592
|
/**
|
|
593
|
-
* 원 중심에서 바깥으로
|
|
593
|
+
* 원 중심에서 바깥으로 색상이 변해가는 효과를 표시한다.<br/>
|
|
594
594
|
* 채우기 색이나 선 색으로 사용될 수 있다.
|
|
595
595
|
*
|
|
596
596
|
*/
|
|
@@ -625,7 +625,7 @@ interface PatternOptions extends AssetItemOptions {
|
|
|
625
625
|
*/
|
|
626
626
|
width?: number;
|
|
627
627
|
/**
|
|
628
|
-
* 지정하지 않으면 {@link
|
|
628
|
+
* 지정하지 않으면 {@link width}나 20 pixels.
|
|
629
629
|
*/
|
|
630
630
|
height?: number;
|
|
631
631
|
/**
|
|
@@ -1167,6 +1167,8 @@ declare const _Shapes: {
|
|
|
1167
1167
|
};
|
|
1168
1168
|
/** @dummy */
|
|
1169
1169
|
type Shape = typeof _Shapes[keyof typeof _Shapes];
|
|
1170
|
+
/** tooltip listMarkerShape: {@link Shape} 또는 마커 없음 */
|
|
1171
|
+
type TooltipMarkerShape = Shape | 'none';
|
|
1170
1172
|
declare class SvgShapes {
|
|
1171
1173
|
private static _createDrawers;
|
|
1172
1174
|
private static _drawers;
|
|
@@ -1209,8 +1211,8 @@ declare class SvgShapes {
|
|
|
1209
1211
|
}
|
|
1210
1212
|
|
|
1211
1213
|
/**
|
|
1212
|
-
* 시리즈 데이터포인트 {@link https://realchart.co.kr/config/config/base/series
|
|
1213
|
-
* {@link https://realchart.co.kr/config/config/base/series/pointLabel
|
|
1214
|
+
* 시리즈 데이터포인트 {@link https://realchart.co.kr/config/config/base/series#pointlabel 라벨} 표시 위치.<br/>
|
|
1215
|
+
* {@link https://realchart.co.kr/config/config/base/series/pointLabel#position position} 속성 값으로 사용된다.
|
|
1214
1216
|
*
|
|
1215
1217
|
* @enum
|
|
1216
1218
|
*/
|
|
@@ -1358,7 +1360,7 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
1358
1360
|
}
|
|
1359
1361
|
/**
|
|
1360
1362
|
* 시리즈 그룹의 stack label 표시 위치.<br/>
|
|
1361
|
-
* {@link https://realchart.co.kr/config/config/base/seriesGroup/stackLabel
|
|
1363
|
+
* {@link https://realchart.co.kr/config/config/base/seriesGroup/stackLabel#position position} 속성 값으로 사용된다.
|
|
1362
1364
|
*
|
|
1363
1365
|
* @enum
|
|
1364
1366
|
*/
|
|
@@ -1551,12 +1553,12 @@ interface TrendlineMarkerOptions extends ChartItemOptions {
|
|
|
1551
1553
|
*/
|
|
1552
1554
|
visible?: boolean;
|
|
1553
1555
|
/**
|
|
1554
|
-
*
|
|
1556
|
+
* marker 모양.<br/>
|
|
1555
1557
|
* 지정하지 않으면 'circle'
|
|
1556
1558
|
*/
|
|
1557
1559
|
shape?: Shape;
|
|
1558
1560
|
/**
|
|
1559
|
-
*
|
|
1561
|
+
* marker 반지름 크기.<br/>
|
|
1560
1562
|
*
|
|
1561
1563
|
* @default 4
|
|
1562
1564
|
*/
|
|
@@ -1694,12 +1696,13 @@ interface TrendlineOptions extends ChartItemOptions {
|
|
|
1694
1696
|
}
|
|
1695
1697
|
/**
|
|
1696
1698
|
* 시리즈는 {@link data}로 지정된 값들을 데이터포인트로 표시하는 차트의 핵심 구성 요소이다.<br/>
|
|
1697
|
-
* 차트 설정의 다른 부분이나 API에 참조하기 위해서는 {@link name}을 반드시 지정해야
|
|
1698
|
-
* 차트 생성 시 {@link https://realchart.co.kr/config/config/series
|
|
1699
|
+
* 차트 설정의 다른 부분이나 API에 참조하기 위해서는 {@link name}을 반드시 지정해야 한다.
|
|
1700
|
+
* 차트 생성 시 {@link https://realchart.co.kr/config/config/base/series#type type} 을 지정하지 않으면 {@link https://realchart.co.kr/config/config/series/bar bar} 시리즈로 생성된다.<br/>
|
|
1699
1701
|
*
|
|
1700
1702
|
*/
|
|
1701
1703
|
interface SeriesOptions extends ChartItemOptions {
|
|
1702
1704
|
/**
|
|
1705
|
+
* 시리즈 type. {@link https://realchart.co.kr/docs/api/options/SeriesOptions SeriesOptions}를 상속하는 구체 시리즈 옵션에서 지정한다.
|
|
1703
1706
|
*/
|
|
1704
1707
|
type?: string;
|
|
1705
1708
|
/**
|
|
@@ -1770,7 +1773,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1770
1773
|
*/
|
|
1771
1774
|
iconField?: string | number | Function;
|
|
1772
1775
|
/**
|
|
1773
|
-
*
|
|
1776
|
+
* 데이터포인트들을 생성하는 데 사용되는 값 목록.
|
|
1774
1777
|
* 단일 값을 지정할 경우 배열로 처리됩니다. 단, string 타입은 향후 버전에서 사용할 예정이며, 현재는 data를 지정하지 않은 경우와 동일하게 동작한다.
|
|
1775
1778
|
*/
|
|
1776
1779
|
data?: any;
|
|
@@ -1791,7 +1794,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1791
1794
|
/**
|
|
1792
1795
|
* 모든 데이터포인트에 적용되는 {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
1793
1796
|
* {@link Series.style style}로 설정되는 시리즈의 inline 스타일이
|
|
1794
|
-
*
|
|
1797
|
+
* 데이터포인트에 적용되지 않는 경우 이 속성을 사용할 수 있다.
|
|
1795
1798
|
* {@link pointColors}나 {@link color}가 설정되면 이 속성으로 설정된 색상은 무시된다.
|
|
1796
1799
|
* 또, {@link pointStyleCallback}으로 설정된 스타일이 이 속성 스타일보다 우선한다.
|
|
1797
1800
|
*/
|
|
@@ -1945,7 +1948,7 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
|
1945
1948
|
* 포인트 표시 영역 내에서 이 시리즈의 포인트가 차지하는 영역의 상대 크기.<br/>
|
|
1946
1949
|
* 예를 들어 이 시리즈의 속성값이 1이고 다른 시리즈의 값이 2이면 다른 시리즈의 data point가 두 배 두껍게 표시된다.
|
|
1947
1950
|
*
|
|
1948
|
-
* @default
|
|
1951
|
+
* @default 1
|
|
1949
1952
|
*/
|
|
1950
1953
|
pointWidth?: number;
|
|
1951
1954
|
/**
|
|
@@ -1968,7 +1971,7 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
|
1968
1971
|
* 최소 데이터포인트 너비.<br/>
|
|
1969
1972
|
* polar일 때는 무시된다.
|
|
1970
1973
|
*
|
|
1971
|
-
* @default
|
|
1974
|
+
* @default 0
|
|
1972
1975
|
*/
|
|
1973
1976
|
minPointWidth?: number;
|
|
1974
1977
|
/**
|
|
@@ -2022,7 +2025,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
2022
2025
|
/**
|
|
2023
2026
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2024
2027
|
* 그룹에 포함된 경우 먼저 그룹의 baseValue를 따른다.
|
|
2025
|
-
* 또, 이 값을 지정하지 않은 경우 연결된 y축의 { 따르고,
|
|
2028
|
+
* 또, 이 값을 지정하지 않은 경우 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
|
|
2026
2029
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2027
2030
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2028
2031
|
*
|
|
@@ -2179,7 +2182,7 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2179
2182
|
tooltipHeader?: string;
|
|
2180
2183
|
/**
|
|
2181
2184
|
* 그룹 툴팁에 각 시리즈별 표시되는 포인트 툴팁 텍스트.<br/>
|
|
2182
|
-
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series
|
|
2185
|
+
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다.<br/>
|
|
2183
2186
|
*
|
|
2184
2187
|
* @default '${series}: ${detail}'
|
|
2185
2188
|
*/
|
|
@@ -2188,7 +2191,7 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
2188
2191
|
* 축에 포함된 시리즈가 둘 이상일 때,
|
|
2189
2192
|
* 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
2190
2193
|
* 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
|
|
2191
|
-
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series
|
|
2194
|
+
* '${detail}'은 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다.<br/>
|
|
2192
2195
|
*
|
|
2193
2196
|
* @default `['${series}', '${detail}']`
|
|
2194
2197
|
*/
|
|
@@ -2222,8 +2225,8 @@ interface LineSeriesGroupOptions extends SeriesGroupOptions<LineSeriesOptions> {
|
|
|
2222
2225
|
lineType?: LineType;
|
|
2223
2226
|
/**
|
|
2224
2227
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2225
|
-
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 { 적용되고, 그 값도 설정되지 않으면
|
|
2226
|
-
* 연결된 y축의 { 따르고,
|
|
2228
|
+
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2229
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
|
|
2227
2230
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2228
2231
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2229
2232
|
*
|
|
@@ -2249,8 +2252,8 @@ interface AreaSeriesGroupOptions extends SeriesGroupOptions<AreaSeriesOptions> {
|
|
|
2249
2252
|
lineType?: LineType;
|
|
2250
2253
|
/**
|
|
2251
2254
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2252
|
-
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 { 적용되고, 그 값도 설정되지 않으면
|
|
2253
|
-
* 연결된 y축의 { 따르고,
|
|
2255
|
+
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2256
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
|
|
2254
2257
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2255
2258
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
2256
2259
|
*
|
|
@@ -2263,16 +2266,20 @@ interface AreaSeriesGroupOptions extends SeriesGroupOptions<AreaSeriesOptions> {
|
|
|
2263
2266
|
interface ClusterableSeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends SeriesGroupOptions<T> {
|
|
2264
2267
|
/**
|
|
2265
2268
|
* 축 단위 너비에서 이 그룹이 차지하는 상대적 너비.
|
|
2269
|
+
*
|
|
2270
|
+
* @default 1
|
|
2266
2271
|
*/
|
|
2267
2272
|
groupWidth?: number;
|
|
2268
2273
|
/**
|
|
2269
2274
|
* 이 그룹의 너비에서 포인트들이 표시되기 전후의 상대적 여백 크기.
|
|
2275
|
+
*
|
|
2276
|
+
* @default 0.1
|
|
2270
2277
|
*/
|
|
2271
2278
|
groupPadding?: number;
|
|
2272
2279
|
/**
|
|
2273
|
-
* 구분 배치가 가능한 둘 이상의 시리즈나
|
|
2280
|
+
* 구분 배치가 가능한 둘 이상의 시리즈나 시리즈그룹이 표시 중일 때 구분 배치할 지 여부.<br/>
|
|
2274
2281
|
* 명시적 false로 지정하지 않는 한 무리 배치한다.
|
|
2275
|
-
* 즉, 복수 개의 시리즈나 시리즈그룹의 데이터포인트들이 겹치지 않고
|
|
2282
|
+
* 즉, 복수 개의 시리즈나 시리즈그룹의 데이터포인트들이 겹치지 않고 차례대로 표시된다.
|
|
2276
2283
|
*/
|
|
2277
2284
|
clusterable?: boolean;
|
|
2278
2285
|
}
|
|
@@ -2281,8 +2288,8 @@ interface ClusterableSeriesGroupOptions<T extends SeriesOptions = SeriesOptions>
|
|
|
2281
2288
|
interface BarSeriesGroupBaseOptions<T extends BarSeriesBaseOptions> extends ClusterableSeriesGroupOptions<T> {
|
|
2282
2289
|
/**
|
|
2283
2290
|
* 이 그룹에 포함된 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2284
|
-
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 { 적용되고, 그 값도 설정되지 않으면
|
|
2285
|
-
* 연결된 y축의 { 따르고,
|
|
2291
|
+
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2292
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
|
|
2286
2293
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2287
2294
|
*
|
|
2288
2295
|
* @default undefined
|
|
@@ -2343,12 +2350,12 @@ interface MarkerSeriesOptions extends ConnectableSeriesOptions {
|
|
|
2343
2350
|
colorByPoint?: boolean;
|
|
2344
2351
|
/**
|
|
2345
2352
|
* marker가 마우스 아래 있는 지 판단할 때 외부로 추가되는 가상의 두께.<br/>
|
|
2346
|
-
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/chart/
|
|
2353
|
+
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/chart/pointHovering#hintdistance hintDistance} 설정을 따른다.
|
|
2347
2354
|
*/
|
|
2348
2355
|
hintDistance?: number;
|
|
2349
2356
|
}
|
|
2350
2357
|
/**
|
|
2351
|
-
* 데이터 포인트
|
|
2358
|
+
* 데이터 포인트 marker 설정 정보.
|
|
2352
2359
|
*/
|
|
2353
2360
|
interface LineSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
2354
2361
|
/**
|
|
@@ -2398,14 +2405,14 @@ interface LineSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
|
2398
2405
|
/**
|
|
2399
2406
|
* 데이터포인트 위에 마우스가 있을 때 적용되는
|
|
2400
2407
|
* {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
|
|
2401
|
-
* {@link https://realchart.co.kr/config/config/series
|
|
2408
|
+
* {@link https://realchart.co.kr/config/config/base/series#hoverstyle hoverStyle} 보다 우선 적용된다.
|
|
2402
2409
|
*
|
|
2403
2410
|
*
|
|
2404
2411
|
*/
|
|
2405
2412
|
hoverStyle?: SVGStyleOrClass;
|
|
2406
2413
|
/**
|
|
2407
2414
|
* marker가 마우스 아래 있는 지 판단할 때 외부로 추가되는 가상의 두께.<br/>
|
|
2408
|
-
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/chart/
|
|
2415
|
+
* 지정하지 않으면 {@link https://realchart.co.kr/config/config/chart/pointHovering#hintdistance hintDistance} 설정을 따른다.
|
|
2409
2416
|
*/
|
|
2410
2417
|
hintDistance?: number;
|
|
2411
2418
|
}
|
|
@@ -2572,7 +2579,7 @@ interface OthersGroupOptions extends ChartItemOptions {
|
|
|
2572
2579
|
minValue?: PercentSize;
|
|
2573
2580
|
}
|
|
2574
2581
|
/**
|
|
2575
|
-
* {@link https://realchart.co.kr/config/config/series/pie pie} 시리즈나 {@link https://realchart.co.kr/config/config/
|
|
2582
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie} 시리즈나 {@link https://realchart.co.kr/config/config/series/funnel funnel} 시리즈 설정 옵션들의 기반(base).<br/>
|
|
2576
2583
|
*/
|
|
2577
2584
|
interface WidgetSeriesOptions extends SeriesOptions {
|
|
2578
2585
|
/**
|
|
@@ -2950,8 +2957,8 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
2950
2957
|
stepDir?: LineStepDirection;
|
|
2951
2958
|
/**
|
|
2952
2959
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
2953
|
-
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 { 적용되고, 그 값도 설정되지 않으면
|
|
2954
|
-
* 연결된 y축의 { 따르고,
|
|
2960
|
+
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
2961
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
|
|
2955
2962
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
2956
2963
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.<br/>
|
|
2957
2964
|
* {@link https://realchart.co.kr/config/config/series/area area} 시리즈와 다르게,
|
|
@@ -2984,13 +2991,13 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
2984
2991
|
*/
|
|
2985
2992
|
flag?: LineSeriesFlagOptions;
|
|
2986
2993
|
/**
|
|
2987
|
-
* 라인 양 끝(또는 한쪽 끝)에 표시되는 arrow 마커
|
|
2988
|
-
*
|
|
2994
|
+
* 라인 양 끝(또는 한쪽 끝)에 표시되는 arrow 마커 설정.<br/>
|
|
2995
|
+
* {@link position}으로 `'start'`/`'end'`/`'both'`, {@link rotation}으로 `'auto'`/`'auto-reverse'` 또는 각도를 지정한다.
|
|
2989
2996
|
*/
|
|
2990
2997
|
arrow?: LineSeriesArrowOptions;
|
|
2991
2998
|
/**
|
|
2992
2999
|
* polar 좌표계이고, x축의 totalAngle이 360도이 경우,
|
|
2993
|
-
* 양끝
|
|
3000
|
+
* 양끝 데이터포인트를 이어서 표시할 지 여부.<br/>
|
|
2994
3001
|
* 그 외에는 무조건 연결하지 않는다.
|
|
2995
3002
|
*
|
|
2996
3003
|
* @default base 라인이 존재하지 않거나 'spline'이면 true, 아니면 false.
|
|
@@ -3063,8 +3070,8 @@ interface AreaSeriesOptions extends LineSeriesOptions {
|
|
|
3063
3070
|
type?: AreaSeriesTypes;
|
|
3064
3071
|
/**
|
|
3065
3072
|
* 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
|
|
3066
|
-
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 { 적용되고, 그 값도 설정되지 않으면
|
|
3067
|
-
* 연결된 y축의 { 따르고,
|
|
3073
|
+
* 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
|
|
3074
|
+
* 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
|
|
3068
3075
|
* 그 값도 설정되지 않은 경우 0이 적용된다.
|
|
3069
3076
|
* NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
|
|
3070
3077
|
*
|
|
@@ -4049,10 +4056,10 @@ interface ParetoSeriesOptions extends LineSeriesBaseOptions {
|
|
|
4049
4056
|
curved?: boolean;
|
|
4050
4057
|
}
|
|
4051
4058
|
/**
|
|
4052
|
-
* {@link https://realchart.co.kr/config/config/
|
|
4059
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie} 시리즈와 같은 원형 시리즈에 대한 설정 옵션<br/>
|
|
4053
4060
|
* 직교 좌표계가 표시된 경우, {@link https://realchart.co.kr/config/config/body body} 영역을 기준으로
|
|
4054
4061
|
* {@link size}, {@link centerX}, {@link centerY}가 적용된다.<br/>
|
|
4055
|
-
* //TODO: 현재
|
|
4062
|
+
* //TODO: 현재 PieSeries만 계승하고 있다. 추후 PieSeries에 합칠 것.
|
|
4056
4063
|
*/
|
|
4057
4064
|
interface RadialSeriesOptions extends WidgetSeriesOptions {
|
|
4058
4065
|
/**
|
|
@@ -5576,7 +5583,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
5576
5583
|
*/
|
|
5577
5584
|
credits?: CreditsOptions | string | boolean;
|
|
5578
5585
|
/**
|
|
5579
|
-
* 데이터포인트에 마우스가 올라가면 나머지 시리즈들을 반투명 처리해서 연결된
|
|
5586
|
+
* 데이터포인트에 마우스가 올라가면 나머지 시리즈들을 반투명 처리해서 연결된 데이터포인트의 시리즈를 강조한다.<br/>
|
|
5580
5587
|
*
|
|
5581
5588
|
* @default false
|
|
5582
5589
|
*/
|
|
@@ -5714,7 +5721,7 @@ interface ZoomCallbackArgs {
|
|
|
5714
5721
|
}
|
|
5715
5722
|
/**
|
|
5716
5723
|
* {@link BodyDepth.depth depth}가 지정된 body 영역의 양 축 방향에 표시되는
|
|
5717
|
-
* {@link https://realchart.co.kr/config/config/body
|
|
5724
|
+
* {@link https://realchart.co.kr/config/config/body#xside side} panel의 경계선 설정 옵션.<br/>
|
|
5718
5725
|
*/
|
|
5719
5726
|
interface BodyDepthLineOptions extends ChartItemOptions {
|
|
5720
5727
|
/**
|
|
@@ -5743,7 +5750,7 @@ interface BodyDepthSideOptions extends ChartItemOptions {
|
|
|
5743
5750
|
}
|
|
5744
5751
|
/**
|
|
5745
5752
|
* body 깊이 설정 옵션.<br/>
|
|
5746
|
-
* x 축이고 첫번째 연결된 시리즈가 depth가 설정된 {
|
|
5753
|
+
* x 축이고 첫번째 연결된 시리즈가 depth가 설정된 {@link https://realchart.co.kr/config/config/series/bar bar} 시리즈를 표시할 때, 축 깊이를 설정한다.<br/>
|
|
5747
5754
|
* 차트나 분할 pane에 연결된 첫번째 x축일 때만 의미가 있다.
|
|
5748
5755
|
*
|
|
5749
5756
|
* @css 'rct-body-depth'
|
|
@@ -5765,7 +5772,13 @@ interface BodyDepthOptions extends ChartItemOptions {
|
|
|
5765
5772
|
* @default 32
|
|
5766
5773
|
*/
|
|
5767
5774
|
angle?: number;
|
|
5775
|
+
/**
|
|
5776
|
+
* x축 방향 depth side panel 설정 옵션.<br/>
|
|
5777
|
+
*/
|
|
5768
5778
|
xSide?: BodyDepthSideOptions;
|
|
5779
|
+
/**
|
|
5780
|
+
* y축 방향 depth side panel 설정 옵션.<br/>
|
|
5781
|
+
*/
|
|
5769
5782
|
ySide?: BodyDepthSideOptions;
|
|
5770
5783
|
/**
|
|
5771
5784
|
* 원점에서 depth side 끝까지 연결하는 선 설정 옵션.<br/>
|
|
@@ -5792,7 +5805,7 @@ interface BodyDepthOptions extends ChartItemOptions {
|
|
|
5792
5805
|
*/
|
|
5793
5806
|
interface BodyOptions extends ChartItemOptions {
|
|
5794
5807
|
/**
|
|
5795
|
-
* {@link https://realchart.co.kr/config/config
|
|
5808
|
+
* {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 반지름.<br/>
|
|
5796
5809
|
*
|
|
5797
5810
|
* @default '45%'
|
|
5798
5811
|
*/
|
|
@@ -5882,7 +5895,7 @@ interface NavigiatorMaskOptions extends ChartItemOptions {
|
|
|
5882
5895
|
* 시리즈 내비게이터 설정 옵션.<br/>
|
|
5883
5896
|
* 내비게이터에 표시되는 시리즈는 기본적으로 {@link https://realchart.co.kr/config/config/series/area area} 시리즈로 표시되지만,
|
|
5884
5897
|
* {@link https://realchart.co.kr/config/config/series/line line}, {@link https://realchart.co.kr/config/config/series/area area},
|
|
5885
|
-
* {@link https://realchart.co.kr/config/config/series/
|
|
5898
|
+
* {@link https://realchart.co.kr/config/config/series/bar bar} 시리즈로 지정할 수도 있다.<br/>
|
|
5886
5899
|
* 내비게이터의 x축 종류는 명시적으로 설정하지 않으면 소스 시리즈의 x축 type을 따라간다.
|
|
5887
5900
|
* y축은 항상 {@link https://realchart.co.kr/config/config/yAxis/linear linear}로 생성된다.
|
|
5888
5901
|
*
|
|
@@ -5981,7 +5994,7 @@ interface CreditsOptions extends ChartItemOptions {
|
|
|
5981
5994
|
/**
|
|
5982
5995
|
* 제작자 이름 등 표시 텍스트.<br/>
|
|
5983
5996
|
*
|
|
5984
|
-
* @default 'RealChart v1.
|
|
5997
|
+
* @default 'RealChart v1.4'
|
|
5985
5998
|
*/
|
|
5986
5999
|
text?: string;
|
|
5987
6000
|
/**
|
|
@@ -6041,7 +6054,7 @@ interface CreditsOptions extends ChartItemOptions {
|
|
|
6041
6054
|
*/
|
|
6042
6055
|
declare const _PointHoverScope: {
|
|
6043
6056
|
/**
|
|
6044
|
-
* hover된
|
|
6057
|
+
* hover된 데이터포인트의 상태에 따라 자동으로 결정한다.<br/>
|
|
6045
6058
|
* {@link ChartOptionsOptions.seriesHovering seriesHovering}이 true이면 'point',
|
|
6046
6059
|
* 데이터포인트의 x축에 'crosshair'가 동작 중이면 'axis',
|
|
6047
6060
|
* 데이터포인트가 series group에 포함된 경우이면 'group',
|
|
@@ -6080,13 +6093,14 @@ interface PointHoveringOptions extends ChartItemOptions {
|
|
|
6080
6093
|
/**
|
|
6081
6094
|
* 데이터포인트 hover시 동일한 효과를 표시할 연관된 포인트들을 선택하는 범위.<br/>
|
|
6082
6095
|
*
|
|
6096
|
+
* @default 'auto'
|
|
6083
6097
|
*/
|
|
6084
6098
|
scope?: PointHoverScope;
|
|
6085
6099
|
/**
|
|
6086
6100
|
* {@link https://realchart.co.kr/config/config/series/line line},
|
|
6087
6101
|
* {@link https://realchart.co.kr/config/config/series/bubble bubble},
|
|
6088
6102
|
* {@link https://realchart.co.kr/config/config/series/scatter scatter} 시리즈처럼 marker로 표시되는 데이터포인트의 위치를 찾을 때
|
|
6089
|
-
* 데이터포인트
|
|
6103
|
+
* 데이터포인트 marker 외부로 추가되는 가상의 두께.<br/>
|
|
6090
6104
|
* 0이하면 표시되는 크기로 계산된다.
|
|
6091
6105
|
* 상당히 큰 크기로 지정하면 마우스가 어느 위치에 있든 마우스에 가장 가까운 marker가 찾아진다.<br/>
|
|
6092
6106
|
* 물론 마우스가 실제 표시되는 marker 위에 있다면 그 것으로 결정된다.
|
|
@@ -6103,9 +6117,28 @@ interface PointHoveringOptions extends ChartItemOptions {
|
|
|
6103
6117
|
* @enum
|
|
6104
6118
|
*/
|
|
6105
6119
|
declare const _TooltipScope: {
|
|
6120
|
+
/**
|
|
6121
|
+
* {@link https://realchart.co.kr/config/config/chart/pointHovering#scope scope}와 동일한 규칙으로 툴팁에 포함할 데이터포인트 범위를 결정한다.<br/>
|
|
6122
|
+
* 기본값이며, pointHovering이 `'auto'`이면 crosshair·시리즈 그룹·seriesHovering 설정에 따라
|
|
6123
|
+
* `'point'`, `'group'`, `'axis'` 중 하나로 해석된다.
|
|
6124
|
+
*/
|
|
6106
6125
|
readonly HOVER: "hover";
|
|
6126
|
+
/**
|
|
6127
|
+
* hover된 시리즈 하나의 데이터포인트만 툴팁에 표시한다.<br/>
|
|
6128
|
+
* 해당 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltiptext tooltipText} 등이 사용된다.
|
|
6129
|
+
*/
|
|
6107
6130
|
readonly POINT: "point";
|
|
6131
|
+
/**
|
|
6132
|
+
* hover된 시리즈가 시리즈 그룹에 포함된 경우, 그룹에 속한 시리즈들의 동일 x(카테고리) 값
|
|
6133
|
+
* 데이터포인트를 한 툴팁에 표시한다.<br/>
|
|
6134
|
+
* 그룹이 아니면 `'point'`와 같이 해당 시리즈만 표시된다.
|
|
6135
|
+
*/
|
|
6108
6136
|
readonly GROUP: "group";
|
|
6137
|
+
/**
|
|
6138
|
+
* hover된 시리즈가 연결된 x축의 모든 visible 시리즈 중, 동일 x(카테고리) 값을 갖는
|
|
6139
|
+
* 데이터포인트를 한 툴팁에 표시한다.<br/>
|
|
6140
|
+
* x축의 {@link https://realchart.co.kr/config/config/base/axis#tooltipheader tooltipHeader}, {@link https://realchart.co.kr/config/config/base/axis#tooltiprow tooltipRow} 등이 사용된다.
|
|
6141
|
+
*/
|
|
6109
6142
|
readonly AXIS: "axis";
|
|
6110
6143
|
};
|
|
6111
6144
|
/** @dummy */
|
|
@@ -6127,7 +6160,7 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
6127
6160
|
/**
|
|
6128
6161
|
* 하나의 툴팁으로 표시할 범위.
|
|
6129
6162
|
*
|
|
6130
|
-
* @default hover
|
|
6163
|
+
* @default 'hover'
|
|
6131
6164
|
*/
|
|
6132
6165
|
scope?: TooltipScope;
|
|
6133
6166
|
/**
|
|
@@ -6239,10 +6272,11 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
6239
6272
|
listRowGap?: number;
|
|
6240
6273
|
/**
|
|
6241
6274
|
* 리스트 모드로 표시될 때, 마커 모양.<br/>
|
|
6275
|
+
* 'none'으로 지정하면 마커를 표시하지 않는다.
|
|
6242
6276
|
*
|
|
6243
6277
|
* @default 'circle'
|
|
6244
6278
|
*/
|
|
6245
|
-
listMarkerShape?:
|
|
6279
|
+
listMarkerShape?: TooltipMarkerShape;
|
|
6246
6280
|
/**
|
|
6247
6281
|
* 리스트 모드로 표시될 때, 마커 크기.<br/>
|
|
6248
6282
|
*
|
|
@@ -6509,9 +6543,11 @@ interface LegendOptions extends ChartItemOptions {
|
|
|
6509
6543
|
*/
|
|
6510
6544
|
interface PaneOptions extends ChartItemOptions {
|
|
6511
6545
|
/**
|
|
6546
|
+
* 이 pane의 행(row) 인덱스.<br/>
|
|
6512
6547
|
*/
|
|
6513
6548
|
row?: number;
|
|
6514
6549
|
/**
|
|
6550
|
+
* 이 pane의 열(col) 인덱스.<br/>
|
|
6515
6551
|
*/
|
|
6516
6552
|
col?: number;
|
|
6517
6553
|
/**
|
|
@@ -6523,7 +6559,7 @@ interface PaneOptions extends ChartItemOptions {
|
|
|
6523
6559
|
* {@link https://realchart.co.kr/config/config/legend#location location}은 항상 'body'로 적용된다.
|
|
6524
6560
|
* 또, 이 legend에 표시된 시리즈는 다른 legend에 표시될 수 없고,
|
|
6525
6561
|
* visible을 true로 설정하지 않으면 이 pane에 표시되는 시리즈들은
|
|
6526
|
-
* chart {@link https://realchart.co.kr/config/config/
|
|
6562
|
+
* chart {@link https://realchart.co.kr/config/config/legend 기본 legend}에 연결된다.
|
|
6527
6563
|
*/
|
|
6528
6564
|
legend?: LegendOptions;
|
|
6529
6565
|
}
|
|
@@ -6541,7 +6577,7 @@ interface PaneBodyOptions extends BodyOptions {
|
|
|
6541
6577
|
* 분할(split) 모드 설정 옵션.<br/>
|
|
6542
6578
|
* 각 pane에 해당하는 x, y축이 반드시 존재해야 한다.
|
|
6543
6579
|
* axis는 {@link https://realchart.co.kr/config/config/base/axis#row row}, {@link https://realchart.co.kr/config/config/base/axis#col col} 속성으로 위치를 지정한다.
|
|
6544
|
-
* 시리즈는 {@link https://realchart.co.kr/config/config/base/series
|
|
6580
|
+
* 시리즈는 {@link https://realchart.co.kr/config/config/base/series#xaxis xAxis}, {@link https://realchart.co.kr/config/config/base/series#yaxis yAxis} 설정에 따라 연결된 axis 위치에 따라 자동으로 결정된다.
|
|
6545
6581
|
*
|
|
6546
6582
|
* @modules split
|
|
6547
6583
|
* @css 'rct-panes'
|
|
@@ -6563,16 +6599,16 @@ interface SplitOptions extends ChartItemOptions {
|
|
|
6563
6599
|
/**
|
|
6564
6600
|
* y축 방향 분할 수를 지정한다.<br/>
|
|
6565
6601
|
* //숫자로 지정하면 동일한 높이를 갖는 pane들로 표시된다.
|
|
6566
|
-
* //배열로 지정하면 각 항목은 고정 크기
|
|
6602
|
+
* //배열로 지정하면 각 항목은 고정 크기 숫자, 혹은 '*'로 끝나는 상대 크기.
|
|
6567
6603
|
*
|
|
6568
6604
|
*/
|
|
6569
6605
|
rows?: number | (number | `${number}*` | '*')[];
|
|
6570
6606
|
/**
|
|
6571
6607
|
* x축 방향 분할 수를 지정한다.<br/>
|
|
6572
6608
|
* //숫자로 지정하면 동일한 너비를 갖는 pane들로 표시된다.
|
|
6573
|
-
* //배열로 지정하면 각 항목은 고정 크기
|
|
6609
|
+
* //배열로 지정하면 각 항목은 고정 크기 숫자, 혹은 '*'로 끝나는 상대 크기.
|
|
6574
6610
|
*
|
|
6575
|
-
* @default
|
|
6611
|
+
* @default 1
|
|
6576
6612
|
*/
|
|
6577
6613
|
cols?: number | (number | `${number}*` | '*')[];
|
|
6578
6614
|
/**
|
|
@@ -6587,18 +6623,22 @@ interface SplitOptions extends ChartItemOptions {
|
|
|
6587
6623
|
}
|
|
6588
6624
|
|
|
6589
6625
|
/**
|
|
6590
|
-
* 차트
|
|
6626
|
+
* 차트 이미지 보내기(export) 설정 모델.<br/>
|
|
6627
|
+
* {@link https://realchart.co.kr/config/config/exporting exporting} 항목으로 설정한다.
|
|
6591
6628
|
*/
|
|
6592
6629
|
interface ExporterOptions extends ChartItemOptions {
|
|
6593
6630
|
/**
|
|
6594
|
-
* 내보내기 버튼 표시
|
|
6631
|
+
* 내보내기 버튼 표시 여부.
|
|
6632
|
+
*
|
|
6633
|
+
* @default false
|
|
6595
6634
|
*/
|
|
6596
6635
|
visible?: boolean;
|
|
6597
6636
|
/**
|
|
6598
|
-
*
|
|
6599
|
-
*
|
|
6600
|
-
*
|
|
6637
|
+
* 보내기 결과 파일의 확장자 없는 이름.<br/>
|
|
6638
|
+
* `export()` 호출 시 fileName을 지정하지 않으면 이 값이 사용된다.<br/>
|
|
6639
|
+
* 둘 다 없으면 `realchart`와 확장자로 저장된다.
|
|
6601
6640
|
*
|
|
6641
|
+
* @default 'realchart'
|
|
6602
6642
|
*/
|
|
6603
6643
|
fileName?: string;
|
|
6604
6644
|
/**
|
|
@@ -6606,32 +6646,36 @@ interface ExporterOptions extends ChartItemOptions {
|
|
|
6606
6646
|
*/
|
|
6607
6647
|
useLibrary?: boolean;
|
|
6608
6648
|
/**
|
|
6609
|
-
*
|
|
6649
|
+
* 보내기 메뉴에 포함할 형식 목록.
|
|
6650
|
+
*
|
|
6651
|
+
* @default ['png', 'jpeg', 'svg']
|
|
6610
6652
|
*/
|
|
6611
6653
|
menus?: ExportType[];
|
|
6612
6654
|
/**
|
|
6613
|
-
*
|
|
6655
|
+
* 보내기 이미지 너비(픽셀). 지정한 너비에 맞춰 높이가 결정된다.
|
|
6614
6656
|
*/
|
|
6615
6657
|
width?: number;
|
|
6616
6658
|
/**
|
|
6617
|
-
*
|
|
6659
|
+
* 보내기 이미지 배율.
|
|
6660
|
+
*
|
|
6661
|
+
* @default 1
|
|
6618
6662
|
*/
|
|
6619
6663
|
scale?: number;
|
|
6620
6664
|
/**
|
|
6621
|
-
*
|
|
6622
|
-
* 지정하지
|
|
6665
|
+
* 보내기 오류 발생 시 요청을 보낼 서버 URL.<br/>
|
|
6666
|
+
* 지정하지 않으면 RealChart 서버에서 처리한다.
|
|
6623
6667
|
*/
|
|
6624
6668
|
url?: string;
|
|
6625
6669
|
/**
|
|
6626
|
-
* true
|
|
6670
|
+
* true이면 보내기 결과에 {@link https://realchart.co.kr/config/config/base/axis/scrollBar AxisScrollBarOptions}가 포함되지 않는다.
|
|
6627
6671
|
*/
|
|
6628
6672
|
hideScrollbar?: boolean;
|
|
6629
6673
|
/**
|
|
6630
|
-
* true
|
|
6674
|
+
* true이면 보내기 결과에 {@link https://realchart.co.kr/config/config/seriesNavigator SeriesNavigator}가 포함되지 않는다.
|
|
6631
6675
|
*/
|
|
6632
6676
|
hideNavigator?: boolean;
|
|
6633
6677
|
/**
|
|
6634
|
-
* true
|
|
6678
|
+
* true이면 보내기 결과에 {@link https://realchart.co.kr/config/config/body/zoomButton ZoomButtonOptions}가 포함되지 않는다.
|
|
6635
6679
|
*/
|
|
6636
6680
|
hideZoomButton?: boolean;
|
|
6637
6681
|
}
|
|
@@ -6739,7 +6783,7 @@ type HtmlButtonHoverEffect = typeof _HtmlButtonHoverEffect[keyof typeof _HtmlBut
|
|
|
6739
6783
|
*/
|
|
6740
6784
|
declare const _HtmlButtonHintMode: {
|
|
6741
6785
|
/**
|
|
6742
|
-
*
|
|
6786
|
+
* 브라우저 기본 툴팁 모드 사용.<br/>
|
|
6743
6787
|
*/
|
|
6744
6788
|
readonly DEFAULT: "default";
|
|
6745
6789
|
/**
|
|
@@ -6759,7 +6803,7 @@ interface HtmlButtonOptions extends Omit<ChartItemOptions, 'style'> {
|
|
|
6759
6803
|
/**
|
|
6760
6804
|
* 버튼 표시 위치 기준.<br/>
|
|
6761
6805
|
*
|
|
6762
|
-
* @default '
|
|
6806
|
+
* @default 'chart'
|
|
6763
6807
|
*/
|
|
6764
6808
|
scope?: HtmlButtonScope;
|
|
6765
6809
|
/**
|
|
@@ -6818,20 +6862,26 @@ interface HtmlButtonOptions extends Omit<ChartItemOptions, 'style'> {
|
|
|
6818
6862
|
hoverImageUrl?: string;
|
|
6819
6863
|
/**
|
|
6820
6864
|
* 버튼에 마우스 커서를 올렸을 때의 효과.<br/>
|
|
6865
|
+
*
|
|
6866
|
+
* @default 'auto'
|
|
6821
6867
|
*/
|
|
6822
6868
|
hoverEffect?: HtmlButtonHoverEffect;
|
|
6823
6869
|
/**
|
|
6824
6870
|
* 버튼에 표시되는 이미지의 픽셀 단위 너비.<br/>
|
|
6871
|
+
*
|
|
6872
|
+
* @default 24
|
|
6825
6873
|
*/
|
|
6826
6874
|
imageWidth?: number;
|
|
6827
6875
|
/**
|
|
6828
6876
|
* 버튼에 표시되는 이미지의 픽셀 단위 높이.<br/>
|
|
6877
|
+
*
|
|
6878
|
+
* @default 24
|
|
6829
6879
|
*/
|
|
6830
6880
|
imageHeight?: number;
|
|
6831
6881
|
/**
|
|
6832
6882
|
* 버튼의 hint 표시 방식.<br/>
|
|
6833
6883
|
*
|
|
6834
|
-
* @default
|
|
6884
|
+
* @default 'custom'
|
|
6835
6885
|
*/
|
|
6836
6886
|
hintMode?: HtmlButtonHintMode;
|
|
6837
6887
|
/**
|
|
@@ -6868,7 +6918,7 @@ interface GaugeBaseOptions extends ChartItemOptions {
|
|
|
6868
6918
|
*/
|
|
6869
6919
|
col?: number;
|
|
6870
6920
|
/**
|
|
6871
|
-
* plot 영역의 왼쪽 모서리와
|
|
6921
|
+
* plot 영역의 왼쪽 모서리와 widget 사이의 간격.
|
|
6872
6922
|
*
|
|
6873
6923
|
*/
|
|
6874
6924
|
left?: PercentSize;
|
|
@@ -6879,25 +6929,25 @@ interface GaugeBaseOptions extends ChartItemOptions {
|
|
|
6879
6929
|
*/
|
|
6880
6930
|
right?: PercentSize;
|
|
6881
6931
|
/**
|
|
6882
|
-
* plot 영역의 위쪽 모서리와
|
|
6932
|
+
* plot 영역의 위쪽 모서리와 widget 사이의 간격.
|
|
6883
6933
|
*
|
|
6884
6934
|
*/
|
|
6885
6935
|
top?: PercentSize;
|
|
6886
6936
|
/**
|
|
6887
|
-
* plot 영역의 아래쪽 모서리와
|
|
6937
|
+
* plot 영역의 아래쪽 모서리와 widget 사이의 간격.<br/>
|
|
6888
6938
|
* {@link bottom}이 설정되면 이 속성은 무시된다.
|
|
6889
6939
|
*
|
|
6890
6940
|
*/
|
|
6891
6941
|
bottom?: PercentSize;
|
|
6892
6942
|
/**
|
|
6893
6943
|
* 게이지 너비.
|
|
6894
|
-
* 픽셀 단위의 고정 값이나, plot 영역에 대한
|
|
6944
|
+
* 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
|
|
6895
6945
|
*
|
|
6896
6946
|
*/
|
|
6897
6947
|
width?: PercentSize;
|
|
6898
6948
|
/**
|
|
6899
6949
|
* 게이지 높이.
|
|
6900
|
-
* 픽셀 단위의 고정 값이나, plot 영역에 대한
|
|
6950
|
+
* 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
|
|
6901
6951
|
*
|
|
6902
6952
|
*/
|
|
6903
6953
|
height?: PercentSize;
|
|
@@ -6923,6 +6973,7 @@ interface GaugeOptions extends GaugeBaseOptions {
|
|
|
6923
6973
|
/**
|
|
6924
6974
|
* Animation duration.
|
|
6925
6975
|
*
|
|
6976
|
+
* @default 500
|
|
6926
6977
|
*/
|
|
6927
6978
|
duration?: number;
|
|
6928
6979
|
}
|
|
@@ -7095,7 +7146,7 @@ interface LinearGaugeGroupLabelOptions extends LinearGaugeLabelOptions {
|
|
|
7095
7146
|
interface LinearGaugeGroupBaseOptions<T extends LinearGaugeBaseOptions> extends GaugeGroupOptions<T> {
|
|
7096
7147
|
/**
|
|
7097
7148
|
* true면 자식 게이지들을 수직으로 지정하고(자식 게이지의 vertical 속성과 관계없이) 왼쪽에서 오른쪽으로 차례대로 배치한다.<br/>
|
|
7098
|
-
* false면 자식 게이지들을
|
|
7149
|
+
* false면 자식 게이지들을 수평으로 지정하고, 위에서 아래로 순서대로 배치한다.<br/>
|
|
7099
7150
|
* [주의]이런 배치가 의도와 맞지 않다면 그룹없이 개별적으로 배치해야 한다.
|
|
7100
7151
|
*
|
|
7101
7152
|
*
|
|
@@ -7236,7 +7287,7 @@ declare const BulletGaugeType = "bullet";
|
|
|
7236
7287
|
* Bullet 게이지.<br/>
|
|
7237
7288
|
* {@link https://realchart.co.kr/docs/api/options/GaugeOptions#type type}은 'bullet'이다.<br/>
|
|
7238
7289
|
* 현재 값을 목표 값과 비교해서 표시한다.
|
|
7239
|
-
* 또, {@link band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.
|
|
7290
|
+
* 또, {@link BulletGaugeOptions#band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.
|
|
7240
7291
|
*
|
|
7241
7292
|
* @modules gauge
|
|
7242
7293
|
* @css 'rct-bullet-gauge'
|
|
@@ -7251,7 +7302,7 @@ interface BulletGaugeOptions extends LinearGaugeBaseOptions {
|
|
|
7251
7302
|
*/
|
|
7252
7303
|
band?: BulletGaugeBandOptions | boolean;
|
|
7253
7304
|
/**
|
|
7254
|
-
*
|
|
7305
|
+
* 목표 값(target) 막대 설정.
|
|
7255
7306
|
*
|
|
7256
7307
|
*/
|
|
7257
7308
|
targetBar?: BulletTargetBarOptions | boolean;
|
|
@@ -7335,7 +7386,7 @@ interface CircularGaugeLabelOptions extends GaugeLabelOptions {
|
|
|
7335
7386
|
}
|
|
7336
7387
|
/**
|
|
7337
7388
|
* 원형 게이지 모델.
|
|
7338
|
-
* label의 기본 위치의 x는 원호의
|
|
7389
|
+
* label의 기본 위치의 x는 원호의 좌우 최대 각 위치를 연결한 지점,
|
|
7339
7390
|
* y는 중심 각도의 위치.
|
|
7340
7391
|
*/
|
|
7341
7392
|
interface CircularGaugeOptions extends ValueGaugeOptions {
|
|
@@ -7343,12 +7394,14 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
|
|
|
7343
7394
|
* 게이지 중심 수평 위치.
|
|
7344
7395
|
* 픽셀 단위의 크기나, plot 영역 전체 너비에 대한 상대적 크기로 지정할 수 있다.
|
|
7345
7396
|
*
|
|
7397
|
+
* @default '50%'
|
|
7346
7398
|
*/
|
|
7347
7399
|
centerX?: PercentSize;
|
|
7348
7400
|
/**
|
|
7349
7401
|
* 게이지 중심 수직 위치.
|
|
7350
7402
|
* 픽셀 단위의 크기나, plot 영역 전체 높이에 대한 상대적 크기로 지정할 수 있다.
|
|
7351
7403
|
*
|
|
7404
|
+
* @default '50%'
|
|
7352
7405
|
*/
|
|
7353
7406
|
centerY?: PercentSize;
|
|
7354
7407
|
/**
|
|
@@ -7356,6 +7409,7 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
|
|
|
7356
7409
|
* 픽셀 단위의 크기나, plot 영역 전체 크기(너비와 높이 중 작은 값)에 대한 상대적 크기로 지정할 수 있다.
|
|
7357
7410
|
* '50%'로 지정하면 plot 영역의 width나 height중 작은 크기와 동일한 반지름으로 표시된다.
|
|
7358
7411
|
*
|
|
7412
|
+
* @default '40%'
|
|
7359
7413
|
*/
|
|
7360
7414
|
radius?: PercentSize;
|
|
7361
7415
|
/**
|
|
@@ -7363,6 +7417,7 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
|
|
|
7363
7417
|
* 픽셀 단위의 크기나, {@link radius}에 대한 상대적 크기로 지정할 수 있다.
|
|
7364
7418
|
* '100%'이면 게이지 원호의 반지름과 동일하다.
|
|
7365
7419
|
*
|
|
7420
|
+
* @default '80%'
|
|
7366
7421
|
*/
|
|
7367
7422
|
innerRadius?: PercentSize;
|
|
7368
7423
|
/**
|
|
@@ -7518,7 +7573,7 @@ interface GaugeRangeBandOptions extends ChartItemOptions {
|
|
|
7518
7573
|
/**
|
|
7519
7574
|
* 표시 위치.
|
|
7520
7575
|
*
|
|
7521
|
-
* @default '
|
|
7576
|
+
* @default 'default'
|
|
7522
7577
|
*/
|
|
7523
7578
|
position?: GaugeItemPosition;
|
|
7524
7579
|
/**
|
|
@@ -7596,6 +7651,8 @@ interface GaugeScaleOptions extends ChartItemOptions {
|
|
|
7596
7651
|
* opposite: 원 표시 위치의 반대 쪽 게이지 옆에 표시된다.
|
|
7597
7652
|
*
|
|
7598
7653
|
* inside: 게이지 본체 내부에 본체와 같은 두께로 표시된다.
|
|
7654
|
+
*
|
|
7655
|
+
* @default 'default'
|
|
7599
7656
|
*/
|
|
7600
7657
|
position?: 'default' | 'opposite' | 'inside';
|
|
7601
7658
|
/**
|
|
@@ -7630,16 +7687,11 @@ interface GaugeScaleOptions extends ChartItemOptions {
|
|
|
7630
7687
|
*/
|
|
7631
7688
|
interface CircleGaugeScaleOptions extends GaugeScaleOptions {
|
|
7632
7689
|
/**
|
|
7633
|
-
*
|
|
7634
|
-
*
|
|
7635
|
-
* @default false
|
|
7636
|
-
*/
|
|
7637
|
-
/**
|
|
7638
|
-
* @append
|
|
7690
|
+
* tick들 사이의 대략적인 픽셀 간격.<br/>
|
|
7639
7691
|
*
|
|
7640
|
-
* @default
|
|
7692
|
+
* @default 48
|
|
7641
7693
|
*/
|
|
7642
|
-
stepPixels
|
|
7694
|
+
stepPixels?: number;
|
|
7643
7695
|
}
|
|
7644
7696
|
/**
|
|
7645
7697
|
*/
|
|
@@ -7668,7 +7720,7 @@ interface CircleGaugeRimOptions extends CircleGaugeRimBaseOptions {
|
|
|
7668
7720
|
*/
|
|
7669
7721
|
segmentThickness?: PercentSize;
|
|
7670
7722
|
/**
|
|
7671
|
-
*
|
|
7723
|
+
* segment 사이의 간격.
|
|
7672
7724
|
*/
|
|
7673
7725
|
segmentGap?: number;
|
|
7674
7726
|
}
|
|
@@ -7807,7 +7859,7 @@ interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
|
|
|
7807
7859
|
/**
|
|
7808
7860
|
* @append
|
|
7809
7861
|
*
|
|
7810
|
-
* @default '
|
|
7862
|
+
* @default '80%'
|
|
7811
7863
|
*/
|
|
7812
7864
|
innerRadius?: PercentSize;
|
|
7813
7865
|
}
|
|
@@ -7817,7 +7869,7 @@ interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
|
|
|
7817
7869
|
interface ClockGaugeRimOptions extends ChartItemOptions {
|
|
7818
7870
|
/**
|
|
7819
7871
|
* rim 두께.
|
|
7820
|
-
* 픽셀 단위 크기나, 게이지
|
|
7872
|
+
* 픽셀 단위 크기나, 게이지 반지름에 대한 상대 크기로 지정할 수 있다.
|
|
7821
7873
|
*
|
|
7822
7874
|
* @default 7 pixel
|
|
7823
7875
|
*/
|
|
@@ -7997,7 +8049,7 @@ declare const LinearGaugeType = "linear";
|
|
|
7997
8049
|
* 선형 게이지.<br/>
|
|
7998
8050
|
* {@link https://realchart.co.kr/docs/api/options/GaugeOptions#type type}은 'linear'이다.<br/>
|
|
7999
8051
|
* 현재 값을 선형 막대로 표시한다.
|
|
8000
|
-
* 또, {@link band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.<br/>
|
|
8052
|
+
* 또, {@link LinearGaugeOptions#band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.<br/>
|
|
8001
8053
|
*
|
|
8002
8054
|
* @modules gauge
|
|
8003
8055
|
* @css 'rct-linear-gauge'
|
|
@@ -9159,6 +9211,7 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
|
|
|
9159
9211
|
getHeaderHeight(): number;
|
|
9160
9212
|
getTailSize(): number;
|
|
9161
9213
|
getBorderRadius(): number;
|
|
9214
|
+
hasListMarker(): boolean;
|
|
9162
9215
|
getMarkerSize(): number;
|
|
9163
9216
|
getMarkerGap(): number;
|
|
9164
9217
|
protected _doSetSimple(src: any): boolean;
|
|
@@ -9201,7 +9254,7 @@ declare class CategoryAxisLabel extends AxisLabel<CategoryAxisLabelOptions> {
|
|
|
9201
9254
|
* {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisGridOptions AxisGridOptions}이다.
|
|
9202
9255
|
*/
|
|
9203
9256
|
declare class CategoryAxisGrid extends AxisGrid<AxisGridOptions> {
|
|
9204
|
-
getPositions(axis: CategoryAxis): number[];
|
|
9257
|
+
getPositions(axis: CategoryAxis, length: number): number[];
|
|
9205
9258
|
}
|
|
9206
9259
|
/**
|
|
9207
9260
|
* 카테고리 축 모델.<br/>
|
|
@@ -9241,6 +9294,10 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9241
9294
|
private _catLen;
|
|
9242
9295
|
_pts: number[];
|
|
9243
9296
|
_tstep: number;
|
|
9297
|
+
/** 연속 정수 구간이 데이터 대비 과도할 때 linear 축처럼 수치 비율로 배치. */
|
|
9298
|
+
private _numericScale;
|
|
9299
|
+
private static readonly NUMERIC_SCALE_SPAN_THRESHOLD;
|
|
9300
|
+
private static readonly NUMERIC_SCALE_SPAN_FACTOR;
|
|
9244
9301
|
get tick(): CategoryAxisTick;
|
|
9245
9302
|
/**
|
|
9246
9303
|
* @append
|
|
@@ -9299,6 +9356,8 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9299
9356
|
getLabelX(length: number, pos: number): number;
|
|
9300
9357
|
_type(): string;
|
|
9301
9358
|
unitPad(): number;
|
|
9359
|
+
/** numeric scale 모드 여부 (linear 배치). grid 등에서 사용. */
|
|
9360
|
+
isNumericScale(): boolean;
|
|
9302
9361
|
continuous(): boolean;
|
|
9303
9362
|
_prepareZoom(): AxisZoom;
|
|
9304
9363
|
protected _createGrid(): CategoryAxisGrid;
|
|
@@ -9314,6 +9373,8 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9314
9373
|
};
|
|
9315
9374
|
protected _doBuildTicks(min: number, max: number, length: number, phase: number): IAxisTick[];
|
|
9316
9375
|
_calcPoints(length: number, phase: number): void;
|
|
9376
|
+
private $_scaleNumericPts;
|
|
9377
|
+
private $_updateMarkPoints;
|
|
9317
9378
|
getPos(length: number, value: number): number;
|
|
9318
9379
|
valueAt(length: number, pos: number): number;
|
|
9319
9380
|
getUnitLen(length: number, value: number): number;
|
|
@@ -9324,6 +9385,38 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9324
9385
|
min: number;
|
|
9325
9386
|
max: number;
|
|
9326
9387
|
};
|
|
9388
|
+
private $_hasExplicitCategories;
|
|
9389
|
+
/** minValue·maxValue로 tick 범위가 명시된 경우. */
|
|
9390
|
+
private $_hasDefinedTickRange;
|
|
9391
|
+
/**
|
|
9392
|
+
* 데이터 범위에 minValue/maxValue를 반영한다.<br/>
|
|
9393
|
+
* 슬롯 모드에서 둘 다 지정되면 카테고리 tick 범위로 hard clamp하고,
|
|
9394
|
+
* numeric scale에서는 LinearAxis처럼 명시 범위를 확장만 한다.
|
|
9395
|
+
* (hard clamp 시 maxValue보다 큰 데이터가 getPos NaN → 미표시/오류)
|
|
9396
|
+
*/
|
|
9397
|
+
private $_applyRangeOptions;
|
|
9398
|
+
/** 명시 categories에서 유효한 슬롯 인덱스인지. */
|
|
9399
|
+
private $_isValidCategoryIndex;
|
|
9400
|
+
/**
|
|
9401
|
+
* explicit categories + 수치 data일 때 numeric scale 여부.<br/>
|
|
9402
|
+
* 인덱스가 categories 개수를 넘는 것(6, 7…)은 슬롯 확장이고,
|
|
9403
|
+
* 387749 같은 큰 수치만 linear 축으로 처리한다.
|
|
9404
|
+
*/
|
|
9405
|
+
private $_needsNumericScaleForExplicitCategories;
|
|
9406
|
+
private $_shouldUseNumericScale;
|
|
9407
|
+
/**
|
|
9408
|
+
* categories 미지정 + 수치 값만 있을 때 min~max 전체 정수 구간을 펼치면
|
|
9409
|
+
* (예: -130~130000 → 13만 슬롯) 렌더 비용이 폭증한다.
|
|
9410
|
+
* linear 축처럼 수치 비율로 위치를 계산한다.
|
|
9411
|
+
* minValue/maxValue가 명시돼도 span이 크면 동일하게 numeric scale을 사용한다.
|
|
9412
|
+
*/
|
|
9413
|
+
private $_resolveNumericScale;
|
|
9414
|
+
private $_doBuildNumericTicks;
|
|
9415
|
+
private $_buildNumericTickValues;
|
|
9416
|
+
private $_getNumericPos;
|
|
9417
|
+
private $_numericValueAt;
|
|
9418
|
+
/** 데이터 값 → pts 배열 슬롯 인덱스(0 기준). 유효하지 않으면 -1. */
|
|
9419
|
+
private $_slotIndex;
|
|
9327
9420
|
private $_getSpanFromPts;
|
|
9328
9421
|
private $_getDividerPosFromPts;
|
|
9329
9422
|
private $_getCategoryEdgePos;
|
|
@@ -10003,6 +10096,8 @@ declare class PlottingItemCollection extends ChartItemCollection<PlottingItem> {
|
|
|
10003
10096
|
connect(chart: IChart): void;
|
|
10004
10097
|
prepareRender(): void;
|
|
10005
10098
|
prepareAfter(): void;
|
|
10099
|
+
updateOptions(source: any, render: boolean): void;
|
|
10100
|
+
private $_rebuildSeriesList;
|
|
10006
10101
|
private $_loadItem;
|
|
10007
10102
|
private $_add;
|
|
10008
10103
|
}
|
|
@@ -10255,7 +10350,8 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
10255
10350
|
_getVisiblePoints(): DataPoint[];
|
|
10256
10351
|
getLayoutMax(): number;
|
|
10257
10352
|
protected _doInit(op: OP): void;
|
|
10258
|
-
protected
|
|
10353
|
+
protected _doLoad(op: OP, source: any): void;
|
|
10354
|
+
updateOptions(source?: OP, render?: boolean): this;
|
|
10259
10355
|
protected _doSaveArray(prop: string, value: any[]): any[];
|
|
10260
10356
|
_prepareRender(): void;
|
|
10261
10357
|
_connect(chart: IChart): void;
|
|
@@ -10264,7 +10360,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
10264
10360
|
protected abstract _canContain(ser: Series): boolean;
|
|
10265
10361
|
_setIndex(index: number): void;
|
|
10266
10362
|
protected _doPrepareSeries(series: T[]): void;
|
|
10267
|
-
private
|
|
10363
|
+
private _syncChildren;
|
|
10268
10364
|
private $_add;
|
|
10269
10365
|
private $_collectValues;
|
|
10270
10366
|
private $_collectPoints;
|
|
@@ -11146,6 +11242,8 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
|
|
|
11146
11242
|
canUseNumSymbols(): boolean;
|
|
11147
11243
|
_getLength(): number;
|
|
11148
11244
|
_getGap(): number;
|
|
11245
|
+
isShowLast(): boolean;
|
|
11246
|
+
isShowFirst(): boolean;
|
|
11149
11247
|
protected _doSetSimple(src: any): boolean;
|
|
11150
11248
|
protected _doPrepareRender(chart: IChart): void;
|
|
11151
11249
|
}
|
|
@@ -11547,13 +11645,15 @@ declare class AxisCollection extends ChartItemCollection<Axis> {
|
|
|
11547
11645
|
*/
|
|
11548
11646
|
declare const _AxisTitleAlign: {
|
|
11549
11647
|
/**
|
|
11648
|
+
* 축 시작 방향(왼쪽 또는 아래)에 배치한다.
|
|
11550
11649
|
*/
|
|
11551
11650
|
readonly START: "start";
|
|
11552
11651
|
/**
|
|
11553
|
-
*
|
|
11652
|
+
* 축 중앙에 배치한다.
|
|
11554
11653
|
*/
|
|
11555
11654
|
readonly MIDDLE: "middle";
|
|
11556
11655
|
/**
|
|
11656
|
+
* 축 끝 방향(오른쪽 또는 위)에 배치한다.
|
|
11557
11657
|
*/
|
|
11558
11658
|
readonly END: "end";
|
|
11559
11659
|
};
|
|
@@ -11618,7 +11718,7 @@ interface AxisTitleOptions extends AxisItemOptions {
|
|
|
11618
11718
|
* 타이틀을 가로 또는 세로로 배치할지 여부와 블록의 진행 방향을 지정한다.<br/>
|
|
11619
11719
|
* 'vertical-lr' 또는 'vertical-rl'로 설정하면 수직 쓰기가 적용되며,
|
|
11620
11720
|
* 이때 한글 등 동아시아 문자는 글자 단위, 영문 등 기타 문자는 단어 단위로 배치된다.
|
|
11621
|
-
* {@link
|
|
11721
|
+
* {@link textOrientation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
|
|
11622
11722
|
* writingMode를 지원하지 않는 브라우저에서도 모든 문자를 글자 단위로 일관되게 세로 표시하고자 할 때는
|
|
11623
11723
|
* 신규 속성인 `vertical`을 사용할 수 있다. 단, `vertical` 속성에서는 `<br>`과 같은 줄바꿈 기능이 적용되지 않는다.
|
|
11624
11724
|
*/
|
|
@@ -11660,7 +11760,7 @@ interface AxisUnitLabelOptions extends AxisItemOptions {
|
|
|
11660
11760
|
*/
|
|
11661
11761
|
position?: AxisUnitLabelPosition;
|
|
11662
11762
|
/**
|
|
11663
|
-
*
|
|
11763
|
+
* 축 label과의 최소 간격.
|
|
11664
11764
|
*
|
|
11665
11765
|
* @default 2
|
|
11666
11766
|
*/
|
|
@@ -11752,6 +11852,29 @@ interface AxisTickOptions extends AxisItemOptions {
|
|
|
11752
11852
|
* @default 3 픽셀
|
|
11753
11853
|
*/
|
|
11754
11854
|
gap?: number;
|
|
11855
|
+
/**
|
|
11856
|
+
* true면 다른 설정과 상관없이 첫번째 tick은 항상 표시된다.<br/>
|
|
11857
|
+
* category 축의 {@link https://realchart.co.kr/config/config/xAxis/category/tick#step tick step} 등으로 생략되더라도
|
|
11858
|
+
* 첫 tick을 유지한다.<br/>
|
|
11859
|
+
* linear, log, time 축에서는 `true`로 명시했을 때만
|
|
11860
|
+
* 범위(trim) 계산 시 첫 tick을 제거하지 않는다.
|
|
11861
|
+
*
|
|
11862
|
+
* @default category 축 true. linear, log, time 축은 undefined.
|
|
11863
|
+
*/
|
|
11864
|
+
showFirst?: boolean;
|
|
11865
|
+
/**
|
|
11866
|
+
* 마지막 tick 라벨 표시 여부.<br/>
|
|
11867
|
+
* `true`이면 category 축의 {@link https://realchart.co.kr/config/config/xAxis/category/tick#step tick step} 등으로
|
|
11868
|
+
* 생략되더라도 마지막 tick을 추가한다.<br/>
|
|
11869
|
+
* `false`이면 step에 포함되어 있어도 마지막 tick을 표시하지 않는다.<br/>
|
|
11870
|
+
* 미지정(undefined)이면 step 등 기존 규칙만 따른다.
|
|
11871
|
+
* cartesian, polar 차트 모두 동일하게 적용된다.<br/>
|
|
11872
|
+
* linear, log, time 축에서는 `true`로 명시했을 때만
|
|
11873
|
+
* 범위(trim) 계산 시 마지막 tick을 제거하지 않는다.
|
|
11874
|
+
*
|
|
11875
|
+
* @default undefined
|
|
11876
|
+
*/
|
|
11877
|
+
showLast?: boolean;
|
|
11755
11878
|
}
|
|
11756
11879
|
/**
|
|
11757
11880
|
* major grid 사이 보조 격자선(minor grid line) 설정 옵션.<br/>
|
|
@@ -11846,15 +11969,15 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11846
11969
|
*/
|
|
11847
11970
|
stepInterval?: number | string | ((args: StepCallbackArgs) => string);
|
|
11848
11971
|
/**
|
|
11849
|
-
* tick들 사이의 대략적인 픽셀
|
|
11972
|
+
* tick들 사이의 대략적인 픽셀 간격이나 간격 목록.<br/>
|
|
11850
11973
|
* 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.
|
|
11851
11974
|
* 다른 설정이 없다면 이 값을 기준으로 tick 개수가 결정된다.<br/>
|
|
11852
|
-
* [plot크기, pixels] 목록으로 지정한다. 단일 값으로 지정하면 [[
|
|
11975
|
+
* [plot크기, pixels] 목록으로 지정한다. 단일 값으로 지정하면 [[Infinity, pixels]]으로 설정된다.
|
|
11853
11976
|
* plot 영역의 크기가 첫번째 값 이하면 두번째로 지정한 값만큼의 pixels로 계산한다.<br/>
|
|
11854
11977
|
* 지정하지 않거나 잘못 지정하면 아래 목록으로 기본 적용된다.<br/>
|
|
11855
|
-
* 수직축: `[[130, 36], [300, 48], [
|
|
11856
|
-
* 수평축: `[[400, 48], [
|
|
11857
|
-
* polar: `48`<br/>
|
|
11978
|
+
* 수직축: `[[130, 36], [300, 48], [700, 72], [Infinity, 96]]`<br/>
|
|
11979
|
+
* 수평축: `[[400, 48], [900, 72], [Infinity, 96]]`<br/>
|
|
11980
|
+
* polar: `[[300, 48], [700, 72], [900, 96], [Infinity, 120]]`<br/>
|
|
11858
11981
|
*/
|
|
11859
11982
|
stepPixels?: number | [number, number][] | ((args: StepCallbackArgs) => [number, number][]);
|
|
11860
11983
|
/**
|
|
@@ -11871,7 +11994,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11871
11994
|
fineStep?: boolean;
|
|
11872
11995
|
/**
|
|
11873
11996
|
* {@link stepPixels}가 적용 중일 때,
|
|
11874
|
-
* step 간격을
|
|
11997
|
+
* step 간격을 계산하는데 사용되는 단위 배수 목록.<br/>
|
|
11875
11998
|
* 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.<br/>
|
|
11876
11999
|
* 지정하지 않으면 {@link enableDecimals} 설정에 따라,
|
|
11877
12000
|
* `[1, 2, 5, 10]` 또는 `[1, 2, 2.5, 5, 10]`이 사용된다.
|
|
@@ -11893,7 +12016,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11893
12016
|
*/
|
|
11894
12017
|
maxCount?: number;
|
|
11895
12018
|
/**
|
|
11896
|
-
* 명시적으로 설정하는
|
|
12019
|
+
* 명시적으로 설정하는 step 목록<br/>
|
|
11897
12020
|
* 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.<br/>
|
|
11898
12021
|
* 양 끝을 NaN으로 지정하면 계산된 min/max로 설정된다.
|
|
11899
12022
|
* 이 목록이나 콜백이 설정되면 tick 스텝 설정과 관련된 다른 속성들은 무시된다.<br/>
|
|
@@ -11922,7 +12045,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11922
12045
|
* {@link baseAxis}가 지정된 경우, true로 지정하면 base 축의 범위와 동일하게
|
|
11923
12046
|
* 축의 최소/최대가 결정된다.
|
|
11924
12047
|
*
|
|
11925
|
-
* @default
|
|
12048
|
+
* @default false
|
|
11926
12049
|
*/
|
|
11927
12050
|
baseRange?: boolean;
|
|
11928
12051
|
}
|
|
@@ -11941,9 +12064,14 @@ interface ContinuousAxisGridOptions extends AxisGridOptions {
|
|
|
11941
12064
|
*/
|
|
11942
12065
|
declare const _AxisLabelLocation: {
|
|
11943
12066
|
/**
|
|
12067
|
+
* 축선 바깥쪽(기본)에 label을 표시한다.<br/>
|
|
12068
|
+
* {@link https://realchart.co.kr/config/config/base/axis/tick#location tick.location}과 독립적으로 동작한다.
|
|
11944
12069
|
*/
|
|
11945
12070
|
readonly DEFAULT: "default";
|
|
11946
12071
|
/**
|
|
12072
|
+
* 축선 안쪽(플롯 방향)에 label을 표시한다.<br/>
|
|
12073
|
+
* tick을 숨기려면 {@link https://realchart.co.kr/config/config/base/axis/tick#visible tick.visible}: false 또는
|
|
12074
|
+
* {@link https://realchart.co.kr/config/config/base/axis/tick#length tick.length}: 0을 별도로 지정한다.
|
|
11947
12075
|
*/
|
|
11948
12076
|
readonly INSIDE: "inside";
|
|
11949
12077
|
};
|
|
@@ -12043,6 +12171,10 @@ interface AxisLabelArgs {
|
|
|
12043
12171
|
interface AxisLabelOptions extends IconedTextOptions {
|
|
12044
12172
|
/**
|
|
12045
12173
|
* 축 label 표시 위치.<br/>
|
|
12174
|
+
* {@link https://realchart.co.kr/config/config/base/axis/tick#location tick.location}과 독립적으로 동작한다.<br/>
|
|
12175
|
+
* v1.4.28 이전에는 label만 'inside'로 두면 tick이 숨겨졌지만, 이제는 tick 설정을 별도로 지정해야 한다.
|
|
12176
|
+
*
|
|
12177
|
+
* @default 'default'
|
|
12046
12178
|
*/
|
|
12047
12179
|
location?: AxisLabelLocation;
|
|
12048
12180
|
/**
|
|
@@ -12110,7 +12242,7 @@ interface AxisLabelOptions extends IconedTextOptions {
|
|
|
12110
12242
|
*/
|
|
12111
12243
|
autoArrange?: AxisLabelArrange;
|
|
12112
12244
|
/**
|
|
12113
|
-
* @default clip
|
|
12245
|
+
* @default 'clip'
|
|
12114
12246
|
*/
|
|
12115
12247
|
overflow?: ChartTextOverflow;
|
|
12116
12248
|
/**
|
|
@@ -12149,7 +12281,7 @@ interface AxisLabelOptions extends IconedTextOptions {
|
|
|
12149
12281
|
* 차트나 분할 경계를 넘어가는 첫번째나 마지막 tick 라벨을 끌어 당겨서 표시할 때 이전 라벨과의 최소 간격.<br/>
|
|
12150
12282
|
* 이 간격보다 작게 되면 표시하지 않는다.
|
|
12151
12283
|
*
|
|
12152
|
-
* @default
|
|
12284
|
+
* @default 12
|
|
12153
12285
|
*/
|
|
12154
12286
|
overflowGap?: number;
|
|
12155
12287
|
/**
|
|
@@ -12290,11 +12422,16 @@ interface AxisGuideOptions extends AxisItemOptions {
|
|
|
12290
12422
|
*/
|
|
12291
12423
|
zindex?: number;
|
|
12292
12424
|
/**
|
|
12425
|
+
* 분할 pane 열(col) index 또는 index 목록.
|
|
12293
12426
|
*/
|
|
12294
12427
|
col?: number | number[];
|
|
12295
12428
|
/**
|
|
12429
|
+
* 분할 pane 행(row) index 또는 index 목록.
|
|
12296
12430
|
*/
|
|
12297
12431
|
row?: number | number[];
|
|
12432
|
+
/**
|
|
12433
|
+
* 이 grid row가 적용될 추가 값 범위 [min, max].
|
|
12434
|
+
*/
|
|
12298
12435
|
otherRange?: [number, number];
|
|
12299
12436
|
}
|
|
12300
12437
|
/**
|
|
@@ -12526,7 +12663,7 @@ declare const _AxisPosition: {
|
|
|
12526
12663
|
readonly OPPOSITE: "opposite";
|
|
12527
12664
|
/**
|
|
12528
12665
|
* @private
|
|
12529
|
-
* @deprecated
|
|
12666
|
+
* @deprecated split 모드로 대체
|
|
12530
12667
|
*
|
|
12531
12668
|
* 상대 축의 baseValue 지점에 표시된다.<br/>
|
|
12532
12669
|
* 분할 모드 없이 x축을 좌우로 분할해서 표시할 때 사용할 수 있다.<br/>
|
|
@@ -12534,7 +12671,7 @@ declare const _AxisPosition: {
|
|
|
12534
12671
|
* [주의] <br/>
|
|
12535
12672
|
* 1. 축에 연결된 시리즈들이 BarSeries 계열일 때만 가능하다.<br/>
|
|
12536
12673
|
* 2. 차트의 X축 하나에만 적용할 수 있다. 두번째로 지정된 축의 속성은 'normal'로 적용된다.<br/>
|
|
12537
|
-
* 3. 상대 축이 **linear** 가 아니거나 {@link
|
|
12674
|
+
* 3. 상대 축이 **linear** 가 아니거나 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}가 min 보다 작거나 max보다 크면 이 값은 무시되고,
|
|
12538
12675
|
* 'normal'로 적용된다.
|
|
12539
12676
|
*
|
|
12540
12677
|
*
|
|
@@ -12542,7 +12679,7 @@ declare const _AxisPosition: {
|
|
|
12542
12679
|
readonly BASE: "base";
|
|
12543
12680
|
/**
|
|
12544
12681
|
* split 모드일 때, 중간 분할 위치에 표시한다.<br/>
|
|
12545
|
-
*
|
|
12682
|
+
* 마지막 pane이 아니면 'opposite'와 동일하고,
|
|
12546
12683
|
* 마지막 pane이면 'normal'과 동일하다.
|
|
12547
12684
|
*/
|
|
12548
12685
|
readonly BETWEEN: "between";
|
|
@@ -12757,7 +12894,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12757
12894
|
tooltipHeader?: string;
|
|
12758
12895
|
/**
|
|
12759
12896
|
* 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12760
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series
|
|
12897
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12761
12898
|
*
|
|
12762
12899
|
* @default '${series}: ${detail}'
|
|
12763
12900
|
*/
|
|
@@ -12766,7 +12903,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12766
12903
|
* 축에 포함된 시리즈가 둘 이상일 때,
|
|
12767
12904
|
* 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12768
12905
|
* 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
|
|
12769
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series
|
|
12906
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12770
12907
|
*
|
|
12771
12908
|
* @default `['${series}', '${detail}']`
|
|
12772
12909
|
*/
|
|
@@ -12793,7 +12930,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12793
12930
|
*/
|
|
12794
12931
|
declare const _CategoryTickPosition: {
|
|
12795
12932
|
/**
|
|
12796
|
-
* x
|
|
12933
|
+
* 미지정 시 x축은 'point', y축은 'edge'로 적용된다.
|
|
12797
12934
|
*/
|
|
12798
12935
|
readonly DEFAULT: "default";
|
|
12799
12936
|
/**
|
|
@@ -12812,7 +12949,9 @@ type CategoryTickPosition = typeof _CategoryTickPosition[keyof typeof _CategoryT
|
|
|
12812
12949
|
*/
|
|
12813
12950
|
interface CategoryAxisTickOptions extends AxisTickOptions {
|
|
12814
12951
|
/**
|
|
12815
|
-
* tick 표시
|
|
12952
|
+
* tick 표시 위치 (point/edge/default).<br/>
|
|
12953
|
+
* category 축 전용이며, {@link https://realchart.co.kr/config/config/base/axis/tick#location tick.location}(inside/default)과 별도로 동작한다.<br/>
|
|
12954
|
+
* 미지정('default') 시 x축은 'point', y축은 'edge'로 적용된다.
|
|
12816
12955
|
*/
|
|
12817
12956
|
position?: CategoryTickPosition;
|
|
12818
12957
|
/**
|
|
@@ -12975,8 +13114,6 @@ interface CategoryTreeLevelLabelOptions {
|
|
|
12975
13114
|
* 숫자를 지정하면 해당 각도로 고정 회전한다.<br/>
|
|
12976
13115
|
* 지정하지 않으면 {@link xAxis.label label}의 {@link rotation} 값을 따르고,
|
|
12977
13116
|
* 그 값도 없으면 'auto'로 동작한다.
|
|
12978
|
-
*
|
|
12979
|
-
* @default 'auto'
|
|
12980
13117
|
*/
|
|
12981
13118
|
rotation?: number | 'auto';
|
|
12982
13119
|
/**
|
|
@@ -13057,7 +13194,7 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
13057
13194
|
* 카테고리로 사용되는 dataPoint 속성.<br/>
|
|
13058
13195
|
* 각 데이터포인트의 이 속성 값 중 문자열값들이 연결된 카테고리 축의 category 목록으로 사용된다.
|
|
13059
13196
|
* field가 둘 이상일때는 마지막 필드 값이 문자열이어야 한다.
|
|
13060
|
-
* 또, x 값 대신 이 속성 값에 해당하는
|
|
13197
|
+
* 또, x 값 대신 이 속성 값에 해당하는 category 값이 데이터포인트의 x값이 된다.<br/>
|
|
13061
13198
|
* {@link categoryTree}가 꺼져 있을 때는 tick·tooltip에 마지막 필드 값이 표시된다.<br/>
|
|
13062
13199
|
* {@link categoryTree}가 켜져 있을 때는 배열 순서대로 축에 가장 가까운 행(level 0)부터
|
|
13063
13200
|
* 바깥쪽 행으로 쌓이므로, 가장 세분화된 필드를 배열의 <b>첫 번째</b>에 두는 것이 일반적이다
|
|
@@ -13076,14 +13213,14 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
13076
13213
|
* {@link categoryField}가 2개 이상일 때 계층 구조 라벨 및 관련 표시 옵션.<br/>
|
|
13077
13214
|
* true이면 {@link categoryTree.visible visible}이 true인 것과 같고 기본값
|
|
13078
13215
|
* ({@link categoryTree.divider.edge edge}: true, {@link categoryTree.divider.between between}: true,
|
|
13079
|
-
* {@link categoryTree.divider.below below}: true, {@link band}: false)이 적용된다.
|
|
13216
|
+
* {@link categoryTree.divider.below below}: true, {@link categoryTree.band band}: false)이 적용된다.
|
|
13080
13217
|
* 각 필드가 하나의 라벨 행이 되며
|
|
13081
13218
|
* 입력한 필드 순서대로 축에 가장 가까운 행부터 바깥쪽으로 쌓인다.<br/>
|
|
13082
13219
|
* 같은 행에서 값이 연속으로 동일하면 하나의 라벨로 통합되어 해당 구간 전체를 차지한다.<br/>
|
|
13083
13220
|
* false이면 {@link categoryTree.visible visible}이 false인 것과 같고, tick에는 마지막 필드 값만 표시된다.<br/>
|
|
13084
13221
|
* 빈 객체({})를 지정하면 {@link categoryTree.visible visible}이 true인 것과 같고 위 기본값이 적용된다.<br/>
|
|
13085
13222
|
* 객체를 지정하면 {@link visible}, {@link divider}, {@link band}, {@link levels}를 개별 설정할 수 있다.<br/>
|
|
13086
|
-
* 지정하지 않으면
|
|
13223
|
+
* 지정하지 않으면 기본값 false이며, 계층 표시 없이 tick에는 마지막 {@link categoryField} 값만 표시된다.<br/>
|
|
13087
13224
|
* {@link chart.polar polar} 차트에서는 지원하지 않는다.
|
|
13088
13225
|
*
|
|
13089
13226
|
* @default false
|
|
@@ -13275,14 +13412,14 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13275
13412
|
baseValue?: number;
|
|
13276
13413
|
/**
|
|
13277
13414
|
* {@link minPadding}, {@link maxPadding}이 설정되지 않았을 때 적용되는 기본값이다.<br/>
|
|
13278
|
-
* [plot크기, padding] 목록으로 지정한다. 단일 값으로 지정하면 [[
|
|
13415
|
+
* [plot크기, padding] 목록으로 지정한다. 단일 값으로 지정하면 [[Infinity, padding]]으로 설정된다.
|
|
13279
13416
|
* plot 영역의 크기가 첫번째 값 이하면 두번째로 지정한 값만큼 padding을 적용한다.<br/>
|
|
13280
13417
|
* 지정하지 않거나 잘못 지정하면 아래 목록이 기본 적용된다.
|
|
13281
13418
|
* 또, polar이고 x축이면 0으로 적용된다.<br/>
|
|
13282
13419
|
* `[[170, 0.2], [340, 0.1], [700, 0.05], [Infinity, 0.03]]`<br/>
|
|
13283
13420
|
* 또, 숫자와 'px'로 끝나는 문자열로 지정하면 위 설정을 무시하고,
|
|
13284
13421
|
* 적어도 지정한 pixel 정도의 여백이 생길 수 있도록 조정된다.<br/>
|
|
13285
|
-
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/series#paddingrate paddingRate}가 추가로 적용된다.
|
|
13422
|
+
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/base/series#paddingrate paddingRate}가 추가로 적용된다.
|
|
13286
13423
|
*/
|
|
13287
13424
|
padding?: number | [number, number][] | string;
|
|
13288
13425
|
/**
|
|
@@ -13307,10 +13444,10 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13307
13444
|
maxPadding?: number | [number, number][] | string;
|
|
13308
13445
|
/**
|
|
13309
13446
|
* #1375
|
|
13310
|
-
* x축일 때, 양 끝
|
|
13447
|
+
* x축일 때, 양 끝 데이터포인트에 추가하는 여백을 데이터포인트 하나가 차지하는 평균 폭에 대한 비율로 지정한다.<br/>
|
|
13311
13448
|
* 기본값 0.5이면 계산된 크기대로 적용되고, 0이면 여백이 추가되지 않는다.<br/>
|
|
13312
13449
|
* polar 축일 때는 {@link polarMargin}이 설정데 따라 축 끝(max) 쪽에만 적용된다.<br/>
|
|
13313
|
-
* ex) line 시리즈만 있는 경우, 이 값을 0으로 지정하고 {@link
|
|
13450
|
+
* ex) line 시리즈만 있는 경우, 이 값을 0으로 지정하고 {@link padding}을 0으로 지정하면
|
|
13314
13451
|
* 축의 양 끝 데이터포인트가 축의 양 끝에 딱 맞게 표시된다.<br/>
|
|
13315
13452
|
*
|
|
13316
13453
|
* @default 0.5
|
|
@@ -13338,7 +13475,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13338
13475
|
strictMax?: number | string;
|
|
13339
13476
|
/**
|
|
13340
13477
|
* 축 시작 위치에 tick 표시 여부.<br/>
|
|
13341
|
-
*
|
|
13478
|
+
* padding이나 base 설정 등은 반영된 상태에서 적용된다.
|
|
13342
13479
|
* {@link strictMin}가 설정되면 'value'로 적용된다.<br/>
|
|
13343
13480
|
* 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
|
|
13344
13481
|
*
|
|
@@ -13347,7 +13484,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13347
13484
|
startFit?: AxisFit;
|
|
13348
13485
|
/**
|
|
13349
13486
|
* 축 끝 위치에 tick 표시 여부.<br/>
|
|
13350
|
-
*
|
|
13487
|
+
* padding이나 base 설정 등은 반영된 상태에서 적용된다.
|
|
13351
13488
|
* {@link strictMax}가 설정되면 무시되고 'value'로 적용된다.<br/>
|
|
13352
13489
|
* 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
|
|
13353
13490
|
*
|
|
@@ -13655,10 +13792,15 @@ interface ChartTextOptions extends ChartItemOptions {
|
|
|
13655
13792
|
* @enum
|
|
13656
13793
|
*/
|
|
13657
13794
|
declare const _IconPosition: {
|
|
13795
|
+
/** 기본 위치(텍스트 앞). */
|
|
13658
13796
|
readonly DEFAULT: "default";
|
|
13797
|
+
/** 텍스트 왼쪽. */
|
|
13659
13798
|
readonly LEFT: "left";
|
|
13799
|
+
/** 텍스트 오른쪽. */
|
|
13660
13800
|
readonly RIGHT: "right";
|
|
13801
|
+
/** 텍스트 위쪽. */
|
|
13661
13802
|
readonly TOP: "top";
|
|
13803
|
+
/** 텍스트 아래쪽. */
|
|
13662
13804
|
readonly BOTTOM: "bottom";
|
|
13663
13805
|
};
|
|
13664
13806
|
/** @dummy */
|
|
@@ -13667,7 +13809,7 @@ type IconPosition = typeof _IconPosition[keyof typeof _IconPosition];
|
|
|
13667
13809
|
*/
|
|
13668
13810
|
interface IconedTextOptions extends ChartTextOptions {
|
|
13669
13811
|
/**
|
|
13670
|
-
*
|
|
13812
|
+
* 아이콘 표시 위치<br/>
|
|
13671
13813
|
*
|
|
13672
13814
|
* @default 'default'
|
|
13673
13815
|
*/
|
|
@@ -13702,6 +13844,8 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
13702
13844
|
* null 또는 0으로 지정하면 미지정으로 처리된다.
|
|
13703
13845
|
* {@link iconWidth}가 지정된 경우 원본 비율로 높이가 결정되고,
|
|
13704
13846
|
* {@link iconWidth}도 미지정이면 이미지 원본 크기로 표시된다.
|
|
13847
|
+
*
|
|
13848
|
+
* @default 16
|
|
13705
13849
|
*/
|
|
13706
13850
|
iconHeight?: number;
|
|
13707
13851
|
/**
|
|
@@ -13723,67 +13867,86 @@ interface DataPointCallbackArgs {
|
|
|
13723
13867
|
*/
|
|
13724
13868
|
chart: object;
|
|
13725
13869
|
/**
|
|
13870
|
+
* 콜백이 호출된 시리즈의 공개 모델.
|
|
13726
13871
|
*/
|
|
13727
13872
|
series: object;
|
|
13728
13873
|
/**
|
|
13874
|
+
* 시리즈의 전체 데이터포인트 개수.
|
|
13729
13875
|
*/
|
|
13730
13876
|
count: number;
|
|
13731
13877
|
/**
|
|
13878
|
+
* 현재 표시 중인 데이터포인트 개수.
|
|
13732
13879
|
*/
|
|
13733
13880
|
vcount: number;
|
|
13734
13881
|
/**
|
|
13882
|
+
* 시리즈 y값 최소.
|
|
13735
13883
|
*/
|
|
13736
13884
|
yMin: number;
|
|
13737
13885
|
/**
|
|
13886
|
+
* 시리즈 y값 최대.
|
|
13738
13887
|
*/
|
|
13739
13888
|
yMax: number;
|
|
13740
13889
|
/**
|
|
13890
|
+
* 시리즈 x값 최소.
|
|
13741
13891
|
*/
|
|
13742
13892
|
xMin: number;
|
|
13743
13893
|
/**
|
|
13894
|
+
* 시리즈 x값 최대.
|
|
13744
13895
|
*/
|
|
13745
13896
|
xMax: number;
|
|
13746
13897
|
/**
|
|
13898
|
+
* 시리즈 z값 최소.
|
|
13747
13899
|
*/
|
|
13748
13900
|
zMin: number;
|
|
13749
13901
|
/**
|
|
13902
|
+
* 시리즈 z값 최대.
|
|
13750
13903
|
*/
|
|
13751
13904
|
zMax: number;
|
|
13752
13905
|
/**
|
|
13906
|
+
* 데이터포인트 index.
|
|
13753
13907
|
*/
|
|
13754
13908
|
index: number;
|
|
13755
13909
|
/**
|
|
13910
|
+
* 표시 중인 데이터포인트 기준 index.
|
|
13756
13911
|
*/
|
|
13757
13912
|
vindex: number;
|
|
13758
13913
|
/**
|
|
13914
|
+
* 데이터포인트 원본 x 필드 값.
|
|
13759
13915
|
*/
|
|
13760
13916
|
x: any;
|
|
13761
13917
|
/**
|
|
13918
|
+
* 데이터포인트 원본 y 필드 값.
|
|
13762
13919
|
*/
|
|
13763
13920
|
y: any;
|
|
13764
13921
|
/**
|
|
13922
|
+
* 데이터포인트 원본 z 필드 값.
|
|
13765
13923
|
*/
|
|
13766
13924
|
z: any;
|
|
13767
13925
|
/**
|
|
13926
|
+
* 축 좌표로 변환된 x 값.
|
|
13768
13927
|
*/
|
|
13769
13928
|
xValue: any;
|
|
13770
13929
|
/**
|
|
13930
|
+
* 축 좌표로 변환된 y 값.
|
|
13771
13931
|
*/
|
|
13772
13932
|
yValue: any;
|
|
13773
13933
|
/**
|
|
13934
|
+
* 축 좌표로 변환된 z 값.
|
|
13774
13935
|
*/
|
|
13775
13936
|
zValue: any;
|
|
13776
13937
|
/**
|
|
13938
|
+
* 라벨 표시용 index.
|
|
13777
13939
|
*/
|
|
13778
13940
|
labelIndex: number;
|
|
13779
13941
|
/**
|
|
13942
|
+
* 데이터 원본 객체.
|
|
13780
13943
|
*/
|
|
13781
13944
|
source: any;
|
|
13782
13945
|
}
|
|
13783
13946
|
|
|
13784
13947
|
/**
|
|
13785
13948
|
* 어노테이션 배치 기준.<br/>
|
|
13786
|
-
* [주의]body에 설정된
|
|
13949
|
+
* [주의]body에 설정된 annotation에는 적용되지 않는다.
|
|
13787
13950
|
* @enum
|
|
13788
13951
|
*/
|
|
13789
13952
|
declare const _AnnotationScope: {
|
|
@@ -13803,7 +13966,13 @@ declare const _AnnotationScope: {
|
|
|
13803
13966
|
/** @dummy */
|
|
13804
13967
|
type AnnotationScope = typeof _AnnotationScope[keyof typeof _AnnotationScope];
|
|
13805
13968
|
interface AnnotationAnimationOptions {
|
|
13969
|
+
/**
|
|
13970
|
+
* 애니메이션 종류.
|
|
13971
|
+
*/
|
|
13806
13972
|
type: string;
|
|
13973
|
+
/**
|
|
13974
|
+
* 애니메이션 지속 시간(밀리초).
|
|
13975
|
+
*/
|
|
13807
13976
|
duration?: number;
|
|
13808
13977
|
}
|
|
13809
13978
|
/**
|
|
@@ -13829,6 +13998,8 @@ interface AnnotationClickArgs {
|
|
|
13829
13998
|
*/
|
|
13830
13999
|
interface AnnotationOptions extends ChartItemOptions {
|
|
13831
14000
|
/**
|
|
14001
|
+
* 어노테이션 종류. `'text'`, `'image'`, `'shape'` 중 하나.<br/>
|
|
14002
|
+
* {@link https://realchart.co.kr/config/config/annotation/text text}, {@link https://realchart.co.kr/config/config/annotation/image image}, {@link https://realchart.co.kr/config/config/annotation/shape shape} 참조.
|
|
13832
14003
|
*/
|
|
13833
14004
|
type?: AnnotationType;
|
|
13834
14005
|
/**
|
|
@@ -13840,8 +14011,6 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13840
14011
|
/**
|
|
13841
14012
|
* 어노테이션 이름.<br/>
|
|
13842
14013
|
* 동적으로 어노테이션을 다루기 위해서는 반드시 지정해야 한다.
|
|
13843
|
-
*
|
|
13844
|
-
* @default false
|
|
13845
14014
|
*/
|
|
13846
14015
|
name?: string;
|
|
13847
14016
|
/**
|
|
@@ -13849,7 +14018,7 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13849
14018
|
*/
|
|
13850
14019
|
row?: number;
|
|
13851
14020
|
/**
|
|
13852
|
-
* 분할 모드일 때 이 속성과 {@link row}가 모두 지정되면 annotation이 표시될 pane의
|
|
14021
|
+
* 분할 모드일 때 이 속성과 {@link row}가 모두 지정되면 annotation이 표시될 pane의 수평 index.<br/>
|
|
13853
14022
|
*/
|
|
13854
14023
|
col?: number;
|
|
13855
14024
|
/**
|
|
@@ -13866,12 +14035,12 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13866
14035
|
/**
|
|
13867
14036
|
* 수직 배치.<br/>
|
|
13868
14037
|
*
|
|
13869
|
-
* @default top
|
|
14038
|
+
* @default 'top'
|
|
13870
14039
|
*/
|
|
13871
14040
|
verticalAlign?: VerticalAlign;
|
|
13872
14041
|
/**
|
|
13873
14042
|
* {@link align}과 {@link verticalAlign}으로 지정된 위치에서 실제 표시될 위치의 수평 간격.<br/>
|
|
13874
|
-
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor
|
|
14043
|
+
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템의 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
|
|
13875
14044
|
* 또, {@link anchor}가 지정된 경우 **'0.5w'** 등으로 이 어노테이션의 너비를 기준으로 한 크기로 지정할 수 있다.
|
|
13876
14045
|
*
|
|
13877
14046
|
* @default 0
|
|
@@ -13879,8 +14048,8 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13879
14048
|
offsetX?: number | string;
|
|
13880
14049
|
/**
|
|
13881
14050
|
* {@link align}과 {@link verticalAlign}으로 지정된 위치에서 실제 표시될 위치의 수직 간격.<br/>
|
|
13882
|
-
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor
|
|
13883
|
-
* 또, {@link anchor}가 지정된 경우 **'0.5h'** 처럼 이 어노테이션의
|
|
14051
|
+
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템의 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
|
|
14052
|
+
* 또, {@link anchor}가 지정된 경우 **'0.5h'** 처럼 이 어노테이션의 높이를 기준으로 한 크기로 지정할 수 있다.
|
|
13884
14053
|
*
|
|
13885
14054
|
* @default 0
|
|
13886
14055
|
*/
|
|
@@ -13892,7 +14061,7 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13892
14061
|
rotation?: number;
|
|
13893
14062
|
/**
|
|
13894
14063
|
* 어노테이션 배치 기준.<br/>
|
|
13895
|
-
* [주의]body에 설정된
|
|
14064
|
+
* [주의]body에 설정된 annotation에는 적용되지 않는다.
|
|
13896
14065
|
*
|
|
13897
14066
|
* @default 'chart'
|
|
13898
14067
|
*/
|
|
@@ -13947,12 +14116,12 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13947
14116
|
y2?: number | Date;
|
|
13948
14117
|
/**
|
|
13949
14118
|
* Annotation 너비.<br/>
|
|
13950
|
-
* 픽셀 단위의 고정 값이나, plot 영역에 대한
|
|
14119
|
+
* 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
|
|
13951
14120
|
*/
|
|
13952
14121
|
width?: PercentSize;
|
|
13953
14122
|
/**
|
|
13954
14123
|
* Annotation 높이.<br/>
|
|
13955
|
-
* 픽셀 단위의 고정 값이나, plot 영역에 대한
|
|
14124
|
+
* 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
|
|
13956
14125
|
*/
|
|
13957
14126
|
height?: PercentSize;
|
|
13958
14127
|
}
|
|
@@ -14004,7 +14173,7 @@ declare const _ShapeAnnotationShape: {
|
|
|
14004
14173
|
*/
|
|
14005
14174
|
readonly CIRCLE: "circle";
|
|
14006
14175
|
/**
|
|
14007
|
-
*
|
|
14176
|
+
* 다이아몬드
|
|
14008
14177
|
*/
|
|
14009
14178
|
readonly DIAMOND: "diamond";
|
|
14010
14179
|
/**
|
|
@@ -14162,7 +14331,7 @@ interface TextAnnotationOptions extends AnnotationOptions {
|
|
|
14162
14331
|
* 타이틀을 가로 또는 세로로 배치할지 여부와 블록의 진행 방향을 지정한다.<br/>
|
|
14163
14332
|
* 'vertical-lr' 또는 'vertical-rl'로 설정하면 수직 쓰기가 적용되며,
|
|
14164
14333
|
* 이때 한글 등 동아시아 문자는 글자 단위, 영문 등 기타 문자는 단어 단위로 배치된다.
|
|
14165
|
-
* {@link
|
|
14334
|
+
* {@link textOrientation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
|
|
14166
14335
|
* writingMode를 지원하지 않는 브라우저에서도 모든 문자를 글자 단위로 일관되게 세로 표시하고자 할 때는
|
|
14167
14336
|
* 신규 속성인 `vertical`을 사용할 수 있다. 단, `vertical` 속성에서는 `<br>`과 같은 줄바꿈 기능이 적용되지 않는다.
|
|
14168
14337
|
*/
|
|
@@ -15785,6 +15954,16 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
15785
15954
|
annotationByDom(elt: Element): AnnotationView;
|
|
15786
15955
|
findSeries(ser: Series): SeriesView;
|
|
15787
15956
|
isConnected(axis: Axis): boolean;
|
|
15957
|
+
/**
|
|
15958
|
+
* 이 body의 시리즈가 연결된 축 목록(중복 제거). crosshair 동기화 대상 판정에 사용.
|
|
15959
|
+
*/
|
|
15960
|
+
getConnectedAxes(): Axis[];
|
|
15961
|
+
/**
|
|
15962
|
+
* 지정한 축의 crosshair(주로 공유 X축의 세로선)를 주어진 위치에 강제로 표시한다.
|
|
15963
|
+
* 다른 crosshair는 숨긴다. (split 동기화 전용)
|
|
15964
|
+
*/
|
|
15965
|
+
showAxisCrosshair(axis: Axis, x: number, y: number): void;
|
|
15966
|
+
hideCrosshairs(): void;
|
|
15788
15967
|
getButton(dom: Element): ButtonElement;
|
|
15789
15968
|
buttonClicked(button: ButtonElement): void;
|
|
15790
15969
|
addFeedback(view: RcElement): void;
|
|
@@ -16045,6 +16224,7 @@ declare class CreditView extends ChartElement<Credits> {
|
|
|
16045
16224
|
declare abstract class PaneContainer extends LayerElement {
|
|
16046
16225
|
abstract get bodies(): BodyView[];
|
|
16047
16226
|
abstract bodyViewOf(dom: Element): BodyView;
|
|
16227
|
+
abstract axisViewOf(axis: Axis): AxisView;
|
|
16048
16228
|
abstract prepare(doc: Document, model: ISplit): void;
|
|
16049
16229
|
abstract measure(doc: Document, model: ISplit, width: number, height: number, phase: number): any;
|
|
16050
16230
|
abstract layout(): void;
|
|
@@ -16114,6 +16294,18 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
16114
16294
|
bodyOf(elt: Element): BodyView;
|
|
16115
16295
|
pointerMoved(x: number, y: number, target: EventTarget): void;
|
|
16116
16296
|
pointerLeaved(x: number, y: number, target: EventTarget): void;
|
|
16297
|
+
private $_hideCrosshairs;
|
|
16298
|
+
/**
|
|
16299
|
+
* 하나의 축에 대해 crosshair flag(축 위 라벨) 표시 + 최근접 point 계산 후 onChange 콜백 호출.
|
|
16300
|
+
*/
|
|
16301
|
+
private $_axisFlagAndMoved;
|
|
16302
|
+
/**
|
|
16303
|
+
* split 모드 crosshair 오케스트레이션.
|
|
16304
|
+
* - 커서 pane이 연결된 X축의 세로선을 같은 축에 연결된 모든 pane에 동기화한다.
|
|
16305
|
+
* - 커서 pane이 연결된 축들(X 공유축 + 해당 pane Y축)의 flag를 표시한다.
|
|
16306
|
+
*/
|
|
16307
|
+
private $_updateSplitCrosshair;
|
|
16308
|
+
private $_clearSplitCrosshair;
|
|
16117
16309
|
getAxis(axis: Axis): AxisView;
|
|
16118
16310
|
getButton(dom: Element): ButtonElement;
|
|
16119
16311
|
buttonClicked(button: ButtonElement): void;
|
|
@@ -18239,4 +18431,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
18239
18431
|
declare const createData: typeof Globals.createData;
|
|
18240
18432
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
18241
18433
|
|
|
18242
|
-
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, AxisMinorGridOptions, AxisMinorTickOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletBandLabelOptions, BulletBarLabelOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisLabelOptions, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, CategoryTreeBandOptions, CategoryTreeDividerOptions, CategoryTreeLevelLabelOptions, CategoryTreeLevelOptions, CategoryTreeOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, 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, LineArrowPosition, LineArrowRotation, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesArrowOptions, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, 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, PolarInnerTextOptions, 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 };
|
|
18434
|
+
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, AxisMinorGridOptions, AxisMinorTickOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletBandLabelOptions, BulletBarLabelOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisLabelOptions, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, CategoryTreeBandOptions, CategoryTreeDividerOptions, CategoryTreeLevelLabelOptions, CategoryTreeLevelOptions, CategoryTreeOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, HtmlButtonClickArgs, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineArrowPosition, LineArrowRotation, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesArrowOptions, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, 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, PolarInnerTextOptions, 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 };
|