realchart 1.4.28 → 1.4.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gauge.js +1 -1
- package/gauge.mjs +1 -1
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +1 -1
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +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 +261 -137
- 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;
|
|
@@ -11547,13 +11600,15 @@ declare class AxisCollection extends ChartItemCollection<Axis> {
|
|
|
11547
11600
|
*/
|
|
11548
11601
|
declare const _AxisTitleAlign: {
|
|
11549
11602
|
/**
|
|
11603
|
+
* 축 시작 방향(왼쪽 또는 아래)에 배치한다.
|
|
11550
11604
|
*/
|
|
11551
11605
|
readonly START: "start";
|
|
11552
11606
|
/**
|
|
11553
|
-
*
|
|
11607
|
+
* 축 중앙에 배치한다.
|
|
11554
11608
|
*/
|
|
11555
11609
|
readonly MIDDLE: "middle";
|
|
11556
11610
|
/**
|
|
11611
|
+
* 축 끝 방향(오른쪽 또는 위)에 배치한다.
|
|
11557
11612
|
*/
|
|
11558
11613
|
readonly END: "end";
|
|
11559
11614
|
};
|
|
@@ -11618,7 +11673,7 @@ interface AxisTitleOptions extends AxisItemOptions {
|
|
|
11618
11673
|
* 타이틀을 가로 또는 세로로 배치할지 여부와 블록의 진행 방향을 지정한다.<br/>
|
|
11619
11674
|
* 'vertical-lr' 또는 'vertical-rl'로 설정하면 수직 쓰기가 적용되며,
|
|
11620
11675
|
* 이때 한글 등 동아시아 문자는 글자 단위, 영문 등 기타 문자는 단어 단위로 배치된다.
|
|
11621
|
-
* {@link
|
|
11676
|
+
* {@link textOrientation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
|
|
11622
11677
|
* writingMode를 지원하지 않는 브라우저에서도 모든 문자를 글자 단위로 일관되게 세로 표시하고자 할 때는
|
|
11623
11678
|
* 신규 속성인 `vertical`을 사용할 수 있다. 단, `vertical` 속성에서는 `<br>`과 같은 줄바꿈 기능이 적용되지 않는다.
|
|
11624
11679
|
*/
|
|
@@ -11660,7 +11715,7 @@ interface AxisUnitLabelOptions extends AxisItemOptions {
|
|
|
11660
11715
|
*/
|
|
11661
11716
|
position?: AxisUnitLabelPosition;
|
|
11662
11717
|
/**
|
|
11663
|
-
*
|
|
11718
|
+
* 축 label과의 최소 간격.
|
|
11664
11719
|
*
|
|
11665
11720
|
* @default 2
|
|
11666
11721
|
*/
|
|
@@ -11846,15 +11901,15 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11846
11901
|
*/
|
|
11847
11902
|
stepInterval?: number | string | ((args: StepCallbackArgs) => string);
|
|
11848
11903
|
/**
|
|
11849
|
-
* tick들 사이의 대략적인 픽셀
|
|
11904
|
+
* tick들 사이의 대략적인 픽셀 간격이나 간격 목록.<br/>
|
|
11850
11905
|
* 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.
|
|
11851
11906
|
* 다른 설정이 없다면 이 값을 기준으로 tick 개수가 결정된다.<br/>
|
|
11852
|
-
* [plot크기, pixels] 목록으로 지정한다. 단일 값으로 지정하면 [[
|
|
11907
|
+
* [plot크기, pixels] 목록으로 지정한다. 단일 값으로 지정하면 [[Infinity, pixels]]으로 설정된다.
|
|
11853
11908
|
* plot 영역의 크기가 첫번째 값 이하면 두번째로 지정한 값만큼의 pixels로 계산한다.<br/>
|
|
11854
11909
|
* 지정하지 않거나 잘못 지정하면 아래 목록으로 기본 적용된다.<br/>
|
|
11855
|
-
* 수직축: `[[130, 36], [300, 48], [
|
|
11856
|
-
* 수평축: `[[400, 48], [
|
|
11857
|
-
* polar: `48`<br/>
|
|
11910
|
+
* 수직축: `[[130, 36], [300, 48], [700, 72], [Infinity, 96]]`<br/>
|
|
11911
|
+
* 수평축: `[[400, 48], [900, 72], [Infinity, 96]]`<br/>
|
|
11912
|
+
* polar: `[[300, 48], [700, 72], [900, 96], [Infinity, 120]]`<br/>
|
|
11858
11913
|
*/
|
|
11859
11914
|
stepPixels?: number | [number, number][] | ((args: StepCallbackArgs) => [number, number][]);
|
|
11860
11915
|
/**
|
|
@@ -11871,7 +11926,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11871
11926
|
fineStep?: boolean;
|
|
11872
11927
|
/**
|
|
11873
11928
|
* {@link stepPixels}가 적용 중일 때,
|
|
11874
|
-
* step 간격을
|
|
11929
|
+
* step 간격을 계산하는데 사용되는 단위 배수 목록.<br/>
|
|
11875
11930
|
* 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.<br/>
|
|
11876
11931
|
* 지정하지 않으면 {@link enableDecimals} 설정에 따라,
|
|
11877
11932
|
* `[1, 2, 5, 10]` 또는 `[1, 2, 2.5, 5, 10]`이 사용된다.
|
|
@@ -11893,7 +11948,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11893
11948
|
*/
|
|
11894
11949
|
maxCount?: number;
|
|
11895
11950
|
/**
|
|
11896
|
-
* 명시적으로 설정하는
|
|
11951
|
+
* 명시적으로 설정하는 step 목록<br/>
|
|
11897
11952
|
* 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.<br/>
|
|
11898
11953
|
* 양 끝을 NaN으로 지정하면 계산된 min/max로 설정된다.
|
|
11899
11954
|
* 이 목록이나 콜백이 설정되면 tick 스텝 설정과 관련된 다른 속성들은 무시된다.<br/>
|
|
@@ -11922,7 +11977,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11922
11977
|
* {@link baseAxis}가 지정된 경우, true로 지정하면 base 축의 범위와 동일하게
|
|
11923
11978
|
* 축의 최소/최대가 결정된다.
|
|
11924
11979
|
*
|
|
11925
|
-
* @default
|
|
11980
|
+
* @default false
|
|
11926
11981
|
*/
|
|
11927
11982
|
baseRange?: boolean;
|
|
11928
11983
|
}
|
|
@@ -11941,9 +11996,14 @@ interface ContinuousAxisGridOptions extends AxisGridOptions {
|
|
|
11941
11996
|
*/
|
|
11942
11997
|
declare const _AxisLabelLocation: {
|
|
11943
11998
|
/**
|
|
11999
|
+
* 축선 바깥쪽(기본)에 label을 표시한다.<br/>
|
|
12000
|
+
* {@link https://realchart.co.kr/config/config/base/axis/tick#location tick.location}과 독립적으로 동작한다.
|
|
11944
12001
|
*/
|
|
11945
12002
|
readonly DEFAULT: "default";
|
|
11946
12003
|
/**
|
|
12004
|
+
* 축선 안쪽(플롯 방향)에 label을 표시한다.<br/>
|
|
12005
|
+
* tick을 숨기려면 {@link https://realchart.co.kr/config/config/base/axis/tick#visible tick.visible}: false 또는
|
|
12006
|
+
* {@link https://realchart.co.kr/config/config/base/axis/tick#length tick.length}: 0을 별도로 지정한다.
|
|
11947
12007
|
*/
|
|
11948
12008
|
readonly INSIDE: "inside";
|
|
11949
12009
|
};
|
|
@@ -12043,6 +12103,10 @@ interface AxisLabelArgs {
|
|
|
12043
12103
|
interface AxisLabelOptions extends IconedTextOptions {
|
|
12044
12104
|
/**
|
|
12045
12105
|
* 축 label 표시 위치.<br/>
|
|
12106
|
+
* {@link https://realchart.co.kr/config/config/base/axis/tick#location tick.location}과 독립적으로 동작한다.<br/>
|
|
12107
|
+
* v1.4.28 이전에는 label만 'inside'로 두면 tick이 숨겨졌지만, 이제는 tick 설정을 별도로 지정해야 한다.
|
|
12108
|
+
*
|
|
12109
|
+
* @default 'default'
|
|
12046
12110
|
*/
|
|
12047
12111
|
location?: AxisLabelLocation;
|
|
12048
12112
|
/**
|
|
@@ -12110,7 +12174,7 @@ interface AxisLabelOptions extends IconedTextOptions {
|
|
|
12110
12174
|
*/
|
|
12111
12175
|
autoArrange?: AxisLabelArrange;
|
|
12112
12176
|
/**
|
|
12113
|
-
* @default clip
|
|
12177
|
+
* @default 'clip'
|
|
12114
12178
|
*/
|
|
12115
12179
|
overflow?: ChartTextOverflow;
|
|
12116
12180
|
/**
|
|
@@ -12149,7 +12213,7 @@ interface AxisLabelOptions extends IconedTextOptions {
|
|
|
12149
12213
|
* 차트나 분할 경계를 넘어가는 첫번째나 마지막 tick 라벨을 끌어 당겨서 표시할 때 이전 라벨과의 최소 간격.<br/>
|
|
12150
12214
|
* 이 간격보다 작게 되면 표시하지 않는다.
|
|
12151
12215
|
*
|
|
12152
|
-
* @default
|
|
12216
|
+
* @default 12
|
|
12153
12217
|
*/
|
|
12154
12218
|
overflowGap?: number;
|
|
12155
12219
|
/**
|
|
@@ -12290,11 +12354,16 @@ interface AxisGuideOptions extends AxisItemOptions {
|
|
|
12290
12354
|
*/
|
|
12291
12355
|
zindex?: number;
|
|
12292
12356
|
/**
|
|
12357
|
+
* 분할 pane 열(col) index 또는 index 목록.
|
|
12293
12358
|
*/
|
|
12294
12359
|
col?: number | number[];
|
|
12295
12360
|
/**
|
|
12361
|
+
* 분할 pane 행(row) index 또는 index 목록.
|
|
12296
12362
|
*/
|
|
12297
12363
|
row?: number | number[];
|
|
12364
|
+
/**
|
|
12365
|
+
* 이 grid row가 적용될 추가 값 범위 [min, max].
|
|
12366
|
+
*/
|
|
12298
12367
|
otherRange?: [number, number];
|
|
12299
12368
|
}
|
|
12300
12369
|
/**
|
|
@@ -12526,7 +12595,7 @@ declare const _AxisPosition: {
|
|
|
12526
12595
|
readonly OPPOSITE: "opposite";
|
|
12527
12596
|
/**
|
|
12528
12597
|
* @private
|
|
12529
|
-
* @deprecated
|
|
12598
|
+
* @deprecated split 모드로 대체
|
|
12530
12599
|
*
|
|
12531
12600
|
* 상대 축의 baseValue 지점에 표시된다.<br/>
|
|
12532
12601
|
* 분할 모드 없이 x축을 좌우로 분할해서 표시할 때 사용할 수 있다.<br/>
|
|
@@ -12534,7 +12603,7 @@ declare const _AxisPosition: {
|
|
|
12534
12603
|
* [주의] <br/>
|
|
12535
12604
|
* 1. 축에 연결된 시리즈들이 BarSeries 계열일 때만 가능하다.<br/>
|
|
12536
12605
|
* 2. 차트의 X축 하나에만 적용할 수 있다. 두번째로 지정된 축의 속성은 'normal'로 적용된다.<br/>
|
|
12537
|
-
* 3. 상대 축이 **linear** 가 아니거나 {@link
|
|
12606
|
+
* 3. 상대 축이 **linear** 가 아니거나 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}가 min 보다 작거나 max보다 크면 이 값은 무시되고,
|
|
12538
12607
|
* 'normal'로 적용된다.
|
|
12539
12608
|
*
|
|
12540
12609
|
*
|
|
@@ -12542,7 +12611,7 @@ declare const _AxisPosition: {
|
|
|
12542
12611
|
readonly BASE: "base";
|
|
12543
12612
|
/**
|
|
12544
12613
|
* split 모드일 때, 중간 분할 위치에 표시한다.<br/>
|
|
12545
|
-
*
|
|
12614
|
+
* 마지막 pane이 아니면 'opposite'와 동일하고,
|
|
12546
12615
|
* 마지막 pane이면 'normal'과 동일하다.
|
|
12547
12616
|
*/
|
|
12548
12617
|
readonly BETWEEN: "between";
|
|
@@ -12757,7 +12826,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12757
12826
|
tooltipHeader?: string;
|
|
12758
12827
|
/**
|
|
12759
12828
|
* 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12760
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series
|
|
12829
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12761
12830
|
*
|
|
12762
12831
|
* @default '${series}: ${detail}'
|
|
12763
12832
|
*/
|
|
@@ -12766,7 +12835,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12766
12835
|
* 축에 포함된 시리즈가 둘 이상일 때,
|
|
12767
12836
|
* 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
|
|
12768
12837
|
* 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
|
|
12769
|
-
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series
|
|
12838
|
+
* '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다. // #1386
|
|
12770
12839
|
*
|
|
12771
12840
|
* @default `['${series}', '${detail}']`
|
|
12772
12841
|
*/
|
|
@@ -12793,7 +12862,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12793
12862
|
*/
|
|
12794
12863
|
declare const _CategoryTickPosition: {
|
|
12795
12864
|
/**
|
|
12796
|
-
* x
|
|
12865
|
+
* 미지정 시 x축은 'point', y축은 'edge'로 적용된다.
|
|
12797
12866
|
*/
|
|
12798
12867
|
readonly DEFAULT: "default";
|
|
12799
12868
|
/**
|
|
@@ -12812,7 +12881,9 @@ type CategoryTickPosition = typeof _CategoryTickPosition[keyof typeof _CategoryT
|
|
|
12812
12881
|
*/
|
|
12813
12882
|
interface CategoryAxisTickOptions extends AxisTickOptions {
|
|
12814
12883
|
/**
|
|
12815
|
-
* tick 표시
|
|
12884
|
+
* tick 표시 위치 (point/edge/default).<br/>
|
|
12885
|
+
* category 축 전용이며, {@link https://realchart.co.kr/config/config/base/axis/tick#location tick.location}(inside/default)과 별도로 동작한다.<br/>
|
|
12886
|
+
* 미지정('default') 시 x축은 'point', y축은 'edge'로 적용된다.
|
|
12816
12887
|
*/
|
|
12817
12888
|
position?: CategoryTickPosition;
|
|
12818
12889
|
/**
|
|
@@ -12975,8 +13046,6 @@ interface CategoryTreeLevelLabelOptions {
|
|
|
12975
13046
|
* 숫자를 지정하면 해당 각도로 고정 회전한다.<br/>
|
|
12976
13047
|
* 지정하지 않으면 {@link xAxis.label label}의 {@link rotation} 값을 따르고,
|
|
12977
13048
|
* 그 값도 없으면 'auto'로 동작한다.
|
|
12978
|
-
*
|
|
12979
|
-
* @default 'auto'
|
|
12980
13049
|
*/
|
|
12981
13050
|
rotation?: number | 'auto';
|
|
12982
13051
|
/**
|
|
@@ -13057,7 +13126,7 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
13057
13126
|
* 카테고리로 사용되는 dataPoint 속성.<br/>
|
|
13058
13127
|
* 각 데이터포인트의 이 속성 값 중 문자열값들이 연결된 카테고리 축의 category 목록으로 사용된다.
|
|
13059
13128
|
* field가 둘 이상일때는 마지막 필드 값이 문자열이어야 한다.
|
|
13060
|
-
* 또, x 값 대신 이 속성 값에 해당하는
|
|
13129
|
+
* 또, x 값 대신 이 속성 값에 해당하는 category 값이 데이터포인트의 x값이 된다.<br/>
|
|
13061
13130
|
* {@link categoryTree}가 꺼져 있을 때는 tick·tooltip에 마지막 필드 값이 표시된다.<br/>
|
|
13062
13131
|
* {@link categoryTree}가 켜져 있을 때는 배열 순서대로 축에 가장 가까운 행(level 0)부터
|
|
13063
13132
|
* 바깥쪽 행으로 쌓이므로, 가장 세분화된 필드를 배열의 <b>첫 번째</b>에 두는 것이 일반적이다
|
|
@@ -13076,14 +13145,14 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
13076
13145
|
* {@link categoryField}가 2개 이상일 때 계층 구조 라벨 및 관련 표시 옵션.<br/>
|
|
13077
13146
|
* true이면 {@link categoryTree.visible visible}이 true인 것과 같고 기본값
|
|
13078
13147
|
* ({@link categoryTree.divider.edge edge}: true, {@link categoryTree.divider.between between}: true,
|
|
13079
|
-
* {@link categoryTree.divider.below below}: true, {@link band}: false)이 적용된다.
|
|
13148
|
+
* {@link categoryTree.divider.below below}: true, {@link categoryTree.band band}: false)이 적용된다.
|
|
13080
13149
|
* 각 필드가 하나의 라벨 행이 되며
|
|
13081
13150
|
* 입력한 필드 순서대로 축에 가장 가까운 행부터 바깥쪽으로 쌓인다.<br/>
|
|
13082
13151
|
* 같은 행에서 값이 연속으로 동일하면 하나의 라벨로 통합되어 해당 구간 전체를 차지한다.<br/>
|
|
13083
13152
|
* false이면 {@link categoryTree.visible visible}이 false인 것과 같고, tick에는 마지막 필드 값만 표시된다.<br/>
|
|
13084
13153
|
* 빈 객체({})를 지정하면 {@link categoryTree.visible visible}이 true인 것과 같고 위 기본값이 적용된다.<br/>
|
|
13085
13154
|
* 객체를 지정하면 {@link visible}, {@link divider}, {@link band}, {@link levels}를 개별 설정할 수 있다.<br/>
|
|
13086
|
-
* 지정하지 않으면
|
|
13155
|
+
* 지정하지 않으면 기본값 false이며, 계층 표시 없이 tick에는 마지막 {@link categoryField} 값만 표시된다.<br/>
|
|
13087
13156
|
* {@link chart.polar polar} 차트에서는 지원하지 않는다.
|
|
13088
13157
|
*
|
|
13089
13158
|
* @default false
|
|
@@ -13275,14 +13344,14 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13275
13344
|
baseValue?: number;
|
|
13276
13345
|
/**
|
|
13277
13346
|
* {@link minPadding}, {@link maxPadding}이 설정되지 않았을 때 적용되는 기본값이다.<br/>
|
|
13278
|
-
* [plot크기, padding] 목록으로 지정한다. 단일 값으로 지정하면 [[
|
|
13347
|
+
* [plot크기, padding] 목록으로 지정한다. 단일 값으로 지정하면 [[Infinity, padding]]으로 설정된다.
|
|
13279
13348
|
* plot 영역의 크기가 첫번째 값 이하면 두번째로 지정한 값만큼 padding을 적용한다.<br/>
|
|
13280
13349
|
* 지정하지 않거나 잘못 지정하면 아래 목록이 기본 적용된다.
|
|
13281
13350
|
* 또, polar이고 x축이면 0으로 적용된다.<br/>
|
|
13282
13351
|
* `[[170, 0.2], [340, 0.1], [700, 0.05], [Infinity, 0.03]]`<br/>
|
|
13283
13352
|
* 또, 숫자와 'px'로 끝나는 문자열로 지정하면 위 설정을 무시하고,
|
|
13284
13353
|
* 적어도 지정한 pixel 정도의 여백이 생길 수 있도록 조정된다.<br/>
|
|
13285
|
-
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/series#paddingrate paddingRate}가 추가로 적용된다.
|
|
13354
|
+
* 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/base/series#paddingrate paddingRate}가 추가로 적용된다.
|
|
13286
13355
|
*/
|
|
13287
13356
|
padding?: number | [number, number][] | string;
|
|
13288
13357
|
/**
|
|
@@ -13307,10 +13376,10 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13307
13376
|
maxPadding?: number | [number, number][] | string;
|
|
13308
13377
|
/**
|
|
13309
13378
|
* #1375
|
|
13310
|
-
* x축일 때, 양 끝
|
|
13379
|
+
* x축일 때, 양 끝 데이터포인트에 추가하는 여백을 데이터포인트 하나가 차지하는 평균 폭에 대한 비율로 지정한다.<br/>
|
|
13311
13380
|
* 기본값 0.5이면 계산된 크기대로 적용되고, 0이면 여백이 추가되지 않는다.<br/>
|
|
13312
13381
|
* polar 축일 때는 {@link polarMargin}이 설정데 따라 축 끝(max) 쪽에만 적용된다.<br/>
|
|
13313
|
-
* ex) line 시리즈만 있는 경우, 이 값을 0으로 지정하고 {@link
|
|
13382
|
+
* ex) line 시리즈만 있는 경우, 이 값을 0으로 지정하고 {@link padding}을 0으로 지정하면
|
|
13314
13383
|
* 축의 양 끝 데이터포인트가 축의 양 끝에 딱 맞게 표시된다.<br/>
|
|
13315
13384
|
*
|
|
13316
13385
|
* @default 0.5
|
|
@@ -13338,7 +13407,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13338
13407
|
strictMax?: number | string;
|
|
13339
13408
|
/**
|
|
13340
13409
|
* 축 시작 위치에 tick 표시 여부.<br/>
|
|
13341
|
-
*
|
|
13410
|
+
* padding이나 base 설정 등은 반영된 상태에서 적용된다.
|
|
13342
13411
|
* {@link strictMin}가 설정되면 'value'로 적용된다.<br/>
|
|
13343
13412
|
* 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
|
|
13344
13413
|
*
|
|
@@ -13347,7 +13416,7 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
13347
13416
|
startFit?: AxisFit;
|
|
13348
13417
|
/**
|
|
13349
13418
|
* 축 끝 위치에 tick 표시 여부.<br/>
|
|
13350
|
-
*
|
|
13419
|
+
* padding이나 base 설정 등은 반영된 상태에서 적용된다.
|
|
13351
13420
|
* {@link strictMax}가 설정되면 무시되고 'value'로 적용된다.<br/>
|
|
13352
13421
|
* 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
|
|
13353
13422
|
*
|
|
@@ -13655,10 +13724,15 @@ interface ChartTextOptions extends ChartItemOptions {
|
|
|
13655
13724
|
* @enum
|
|
13656
13725
|
*/
|
|
13657
13726
|
declare const _IconPosition: {
|
|
13727
|
+
/** 기본 위치(텍스트 앞). */
|
|
13658
13728
|
readonly DEFAULT: "default";
|
|
13729
|
+
/** 텍스트 왼쪽. */
|
|
13659
13730
|
readonly LEFT: "left";
|
|
13731
|
+
/** 텍스트 오른쪽. */
|
|
13660
13732
|
readonly RIGHT: "right";
|
|
13733
|
+
/** 텍스트 위쪽. */
|
|
13661
13734
|
readonly TOP: "top";
|
|
13735
|
+
/** 텍스트 아래쪽. */
|
|
13662
13736
|
readonly BOTTOM: "bottom";
|
|
13663
13737
|
};
|
|
13664
13738
|
/** @dummy */
|
|
@@ -13667,7 +13741,7 @@ type IconPosition = typeof _IconPosition[keyof typeof _IconPosition];
|
|
|
13667
13741
|
*/
|
|
13668
13742
|
interface IconedTextOptions extends ChartTextOptions {
|
|
13669
13743
|
/**
|
|
13670
|
-
*
|
|
13744
|
+
* 아이콘 표시 위치<br/>
|
|
13671
13745
|
*
|
|
13672
13746
|
* @default 'default'
|
|
13673
13747
|
*/
|
|
@@ -13702,6 +13776,8 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
13702
13776
|
* null 또는 0으로 지정하면 미지정으로 처리된다.
|
|
13703
13777
|
* {@link iconWidth}가 지정된 경우 원본 비율로 높이가 결정되고,
|
|
13704
13778
|
* {@link iconWidth}도 미지정이면 이미지 원본 크기로 표시된다.
|
|
13779
|
+
*
|
|
13780
|
+
* @default 16
|
|
13705
13781
|
*/
|
|
13706
13782
|
iconHeight?: number;
|
|
13707
13783
|
/**
|
|
@@ -13723,67 +13799,86 @@ interface DataPointCallbackArgs {
|
|
|
13723
13799
|
*/
|
|
13724
13800
|
chart: object;
|
|
13725
13801
|
/**
|
|
13802
|
+
* 콜백이 호출된 시리즈의 공개 모델.
|
|
13726
13803
|
*/
|
|
13727
13804
|
series: object;
|
|
13728
13805
|
/**
|
|
13806
|
+
* 시리즈의 전체 데이터포인트 개수.
|
|
13729
13807
|
*/
|
|
13730
13808
|
count: number;
|
|
13731
13809
|
/**
|
|
13810
|
+
* 현재 표시 중인 데이터포인트 개수.
|
|
13732
13811
|
*/
|
|
13733
13812
|
vcount: number;
|
|
13734
13813
|
/**
|
|
13814
|
+
* 시리즈 y값 최소.
|
|
13735
13815
|
*/
|
|
13736
13816
|
yMin: number;
|
|
13737
13817
|
/**
|
|
13818
|
+
* 시리즈 y값 최대.
|
|
13738
13819
|
*/
|
|
13739
13820
|
yMax: number;
|
|
13740
13821
|
/**
|
|
13822
|
+
* 시리즈 x값 최소.
|
|
13741
13823
|
*/
|
|
13742
13824
|
xMin: number;
|
|
13743
13825
|
/**
|
|
13826
|
+
* 시리즈 x값 최대.
|
|
13744
13827
|
*/
|
|
13745
13828
|
xMax: number;
|
|
13746
13829
|
/**
|
|
13830
|
+
* 시리즈 z값 최소.
|
|
13747
13831
|
*/
|
|
13748
13832
|
zMin: number;
|
|
13749
13833
|
/**
|
|
13834
|
+
* 시리즈 z값 최대.
|
|
13750
13835
|
*/
|
|
13751
13836
|
zMax: number;
|
|
13752
13837
|
/**
|
|
13838
|
+
* 데이터포인트 index.
|
|
13753
13839
|
*/
|
|
13754
13840
|
index: number;
|
|
13755
13841
|
/**
|
|
13842
|
+
* 표시 중인 데이터포인트 기준 index.
|
|
13756
13843
|
*/
|
|
13757
13844
|
vindex: number;
|
|
13758
13845
|
/**
|
|
13846
|
+
* 데이터포인트 원본 x 필드 값.
|
|
13759
13847
|
*/
|
|
13760
13848
|
x: any;
|
|
13761
13849
|
/**
|
|
13850
|
+
* 데이터포인트 원본 y 필드 값.
|
|
13762
13851
|
*/
|
|
13763
13852
|
y: any;
|
|
13764
13853
|
/**
|
|
13854
|
+
* 데이터포인트 원본 z 필드 값.
|
|
13765
13855
|
*/
|
|
13766
13856
|
z: any;
|
|
13767
13857
|
/**
|
|
13858
|
+
* 축 좌표로 변환된 x 값.
|
|
13768
13859
|
*/
|
|
13769
13860
|
xValue: any;
|
|
13770
13861
|
/**
|
|
13862
|
+
* 축 좌표로 변환된 y 값.
|
|
13771
13863
|
*/
|
|
13772
13864
|
yValue: any;
|
|
13773
13865
|
/**
|
|
13866
|
+
* 축 좌표로 변환된 z 값.
|
|
13774
13867
|
*/
|
|
13775
13868
|
zValue: any;
|
|
13776
13869
|
/**
|
|
13870
|
+
* 라벨 표시용 index.
|
|
13777
13871
|
*/
|
|
13778
13872
|
labelIndex: number;
|
|
13779
13873
|
/**
|
|
13874
|
+
* 데이터 원본 객체.
|
|
13780
13875
|
*/
|
|
13781
13876
|
source: any;
|
|
13782
13877
|
}
|
|
13783
13878
|
|
|
13784
13879
|
/**
|
|
13785
13880
|
* 어노테이션 배치 기준.<br/>
|
|
13786
|
-
* [주의]body에 설정된
|
|
13881
|
+
* [주의]body에 설정된 annotation에는 적용되지 않는다.
|
|
13787
13882
|
* @enum
|
|
13788
13883
|
*/
|
|
13789
13884
|
declare const _AnnotationScope: {
|
|
@@ -13803,7 +13898,13 @@ declare const _AnnotationScope: {
|
|
|
13803
13898
|
/** @dummy */
|
|
13804
13899
|
type AnnotationScope = typeof _AnnotationScope[keyof typeof _AnnotationScope];
|
|
13805
13900
|
interface AnnotationAnimationOptions {
|
|
13901
|
+
/**
|
|
13902
|
+
* 애니메이션 종류.
|
|
13903
|
+
*/
|
|
13806
13904
|
type: string;
|
|
13905
|
+
/**
|
|
13906
|
+
* 애니메이션 지속 시간(밀리초).
|
|
13907
|
+
*/
|
|
13807
13908
|
duration?: number;
|
|
13808
13909
|
}
|
|
13809
13910
|
/**
|
|
@@ -13829,6 +13930,8 @@ interface AnnotationClickArgs {
|
|
|
13829
13930
|
*/
|
|
13830
13931
|
interface AnnotationOptions extends ChartItemOptions {
|
|
13831
13932
|
/**
|
|
13933
|
+
* 어노테이션 종류. `'text'`, `'image'`, `'shape'` 중 하나.<br/>
|
|
13934
|
+
* {@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
13935
|
*/
|
|
13833
13936
|
type?: AnnotationType;
|
|
13834
13937
|
/**
|
|
@@ -13840,8 +13943,6 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13840
13943
|
/**
|
|
13841
13944
|
* 어노테이션 이름.<br/>
|
|
13842
13945
|
* 동적으로 어노테이션을 다루기 위해서는 반드시 지정해야 한다.
|
|
13843
|
-
*
|
|
13844
|
-
* @default false
|
|
13845
13946
|
*/
|
|
13846
13947
|
name?: string;
|
|
13847
13948
|
/**
|
|
@@ -13849,7 +13950,7 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13849
13950
|
*/
|
|
13850
13951
|
row?: number;
|
|
13851
13952
|
/**
|
|
13852
|
-
* 분할 모드일 때 이 속성과 {@link row}가 모두 지정되면 annotation이 표시될 pane의
|
|
13953
|
+
* 분할 모드일 때 이 속성과 {@link row}가 모두 지정되면 annotation이 표시될 pane의 수평 index.<br/>
|
|
13853
13954
|
*/
|
|
13854
13955
|
col?: number;
|
|
13855
13956
|
/**
|
|
@@ -13866,12 +13967,12 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13866
13967
|
/**
|
|
13867
13968
|
* 수직 배치.<br/>
|
|
13868
13969
|
*
|
|
13869
|
-
* @default top
|
|
13970
|
+
* @default 'top'
|
|
13870
13971
|
*/
|
|
13871
13972
|
verticalAlign?: VerticalAlign;
|
|
13872
13973
|
/**
|
|
13873
13974
|
* {@link align}과 {@link verticalAlign}으로 지정된 위치에서 실제 표시될 위치의 수평 간격.<br/>
|
|
13874
|
-
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor
|
|
13975
|
+
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템의 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
|
|
13875
13976
|
* 또, {@link anchor}가 지정된 경우 **'0.5w'** 등으로 이 어노테이션의 너비를 기준으로 한 크기로 지정할 수 있다.
|
|
13876
13977
|
*
|
|
13877
13978
|
* @default 0
|
|
@@ -13879,8 +13980,8 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13879
13980
|
offsetX?: number | string;
|
|
13880
13981
|
/**
|
|
13881
13982
|
* {@link align}과 {@link verticalAlign}으로 지정된 위치에서 실제 표시될 위치의 수직 간격.<br/>
|
|
13882
|
-
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor
|
|
13883
|
-
* 또, {@link anchor}가 지정된 경우 **'0.5h'** 처럼 이 어노테이션의
|
|
13983
|
+
* 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템의 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
|
|
13984
|
+
* 또, {@link anchor}가 지정된 경우 **'0.5h'** 처럼 이 어노테이션의 높이를 기준으로 한 크기로 지정할 수 있다.
|
|
13884
13985
|
*
|
|
13885
13986
|
* @default 0
|
|
13886
13987
|
*/
|
|
@@ -13892,7 +13993,7 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13892
13993
|
rotation?: number;
|
|
13893
13994
|
/**
|
|
13894
13995
|
* 어노테이션 배치 기준.<br/>
|
|
13895
|
-
* [주의]body에 설정된
|
|
13996
|
+
* [주의]body에 설정된 annotation에는 적용되지 않는다.
|
|
13896
13997
|
*
|
|
13897
13998
|
* @default 'chart'
|
|
13898
13999
|
*/
|
|
@@ -13947,12 +14048,12 @@ interface AnnotationOptions extends ChartItemOptions {
|
|
|
13947
14048
|
y2?: number | Date;
|
|
13948
14049
|
/**
|
|
13949
14050
|
* Annotation 너비.<br/>
|
|
13950
|
-
* 픽셀 단위의 고정 값이나, plot 영역에 대한
|
|
14051
|
+
* 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
|
|
13951
14052
|
*/
|
|
13952
14053
|
width?: PercentSize;
|
|
13953
14054
|
/**
|
|
13954
14055
|
* Annotation 높이.<br/>
|
|
13955
|
-
* 픽셀 단위의 고정 값이나, plot 영역에 대한
|
|
14056
|
+
* 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
|
|
13956
14057
|
*/
|
|
13957
14058
|
height?: PercentSize;
|
|
13958
14059
|
}
|
|
@@ -14004,7 +14105,7 @@ declare const _ShapeAnnotationShape: {
|
|
|
14004
14105
|
*/
|
|
14005
14106
|
readonly CIRCLE: "circle";
|
|
14006
14107
|
/**
|
|
14007
|
-
*
|
|
14108
|
+
* 다이아몬드
|
|
14008
14109
|
*/
|
|
14009
14110
|
readonly DIAMOND: "diamond";
|
|
14010
14111
|
/**
|
|
@@ -14162,7 +14263,7 @@ interface TextAnnotationOptions extends AnnotationOptions {
|
|
|
14162
14263
|
* 타이틀을 가로 또는 세로로 배치할지 여부와 블록의 진행 방향을 지정한다.<br/>
|
|
14163
14264
|
* 'vertical-lr' 또는 'vertical-rl'로 설정하면 수직 쓰기가 적용되며,
|
|
14164
14265
|
* 이때 한글 등 동아시아 문자는 글자 단위, 영문 등 기타 문자는 단어 단위로 배치된다.
|
|
14165
|
-
* {@link
|
|
14266
|
+
* {@link textOrientation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
|
|
14166
14267
|
* writingMode를 지원하지 않는 브라우저에서도 모든 문자를 글자 단위로 일관되게 세로 표시하고자 할 때는
|
|
14167
14268
|
* 신규 속성인 `vertical`을 사용할 수 있다. 단, `vertical` 속성에서는 `<br>`과 같은 줄바꿈 기능이 적용되지 않는다.
|
|
14168
14269
|
*/
|
|
@@ -15785,6 +15886,16 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
15785
15886
|
annotationByDom(elt: Element): AnnotationView;
|
|
15786
15887
|
findSeries(ser: Series): SeriesView;
|
|
15787
15888
|
isConnected(axis: Axis): boolean;
|
|
15889
|
+
/**
|
|
15890
|
+
* 이 body의 시리즈가 연결된 축 목록(중복 제거). crosshair 동기화 대상 판정에 사용.
|
|
15891
|
+
*/
|
|
15892
|
+
getConnectedAxes(): Axis[];
|
|
15893
|
+
/**
|
|
15894
|
+
* 지정한 축의 crosshair(주로 공유 X축의 세로선)를 주어진 위치에 강제로 표시한다.
|
|
15895
|
+
* 다른 crosshair는 숨긴다. (split 동기화 전용)
|
|
15896
|
+
*/
|
|
15897
|
+
showAxisCrosshair(axis: Axis, x: number, y: number): void;
|
|
15898
|
+
hideCrosshairs(): void;
|
|
15788
15899
|
getButton(dom: Element): ButtonElement;
|
|
15789
15900
|
buttonClicked(button: ButtonElement): void;
|
|
15790
15901
|
addFeedback(view: RcElement): void;
|
|
@@ -16045,6 +16156,7 @@ declare class CreditView extends ChartElement<Credits> {
|
|
|
16045
16156
|
declare abstract class PaneContainer extends LayerElement {
|
|
16046
16157
|
abstract get bodies(): BodyView[];
|
|
16047
16158
|
abstract bodyViewOf(dom: Element): BodyView;
|
|
16159
|
+
abstract axisViewOf(axis: Axis): AxisView;
|
|
16048
16160
|
abstract prepare(doc: Document, model: ISplit): void;
|
|
16049
16161
|
abstract measure(doc: Document, model: ISplit, width: number, height: number, phase: number): any;
|
|
16050
16162
|
abstract layout(): void;
|
|
@@ -16114,6 +16226,18 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
16114
16226
|
bodyOf(elt: Element): BodyView;
|
|
16115
16227
|
pointerMoved(x: number, y: number, target: EventTarget): void;
|
|
16116
16228
|
pointerLeaved(x: number, y: number, target: EventTarget): void;
|
|
16229
|
+
private $_hideCrosshairs;
|
|
16230
|
+
/**
|
|
16231
|
+
* 하나의 축에 대해 crosshair flag(축 위 라벨) 표시 + 최근접 point 계산 후 onChange 콜백 호출.
|
|
16232
|
+
*/
|
|
16233
|
+
private $_axisFlagAndMoved;
|
|
16234
|
+
/**
|
|
16235
|
+
* split 모드 crosshair 오케스트레이션.
|
|
16236
|
+
* - 커서 pane이 연결된 X축의 세로선을 같은 축에 연결된 모든 pane에 동기화한다.
|
|
16237
|
+
* - 커서 pane이 연결된 축들(X 공유축 + 해당 pane Y축)의 flag를 표시한다.
|
|
16238
|
+
*/
|
|
16239
|
+
private $_updateSplitCrosshair;
|
|
16240
|
+
private $_clearSplitCrosshair;
|
|
16117
16241
|
getAxis(axis: Axis): AxisView;
|
|
16118
16242
|
getButton(dom: Element): ButtonElement;
|
|
16119
16243
|
buttonClicked(button: ButtonElement): void;
|
|
@@ -18239,4 +18363,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
18239
18363
|
declare const createData: typeof Globals.createData;
|
|
18240
18364
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
18241
18365
|
|
|
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 };
|
|
18366
|
+
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 };
|