realchart 1.4.27 → 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/index.d.ts CHANGED
@@ -590,7 +590,7 @@ interface LinearGradientOptions extends GradientOptions {
590
590
  dir?: 'down' | 'up' | 'right' | 'left';
591
591
  }
592
592
  /**
593
- * 원 중심에서 바깥으로 생상이 변해가는 효과를 표시한다.<br/>
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 widths}나 20 pixels.
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/pointLabel 라벨} 표시 위치.<br/>
1213
- * {@link https://realchart.co.kr/config/config/base/series/pointLabel/position position} 속성 값으로 사용된다.
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/position position} 속성 값으로 사용된다.
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
- * maker 모양.<br/>
1556
+ * marker 모양.<br/>
1555
1557
  * 지정하지 않으면 'circle'
1556
1558
  */
1557
1559
  shape?: Shape;
1558
1560
  /**
1559
- * maker 반지름 크기.<br/>
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/#type type} 을 지정하지 않으면 {@link https://realchart.co.kr/config/config/series/bar bar} 시리즈로 생성된다.<br/>
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 1 픽셀
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/tooltipDetail tooltipDetail} 속성값으로 대체된다.<br/>
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/tooltipDetail tooltipDetail} 속성값으로 대체된다.<br/>
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
- * 구분 배치가 가능한 둘 이상의 시리즈나 시리즈그룸이 표시 중일 때 구분 배치할 지 여부.<br/>
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/options/pointHovering/hintDistance hintDistance} 설정을 따른다.
2353
+ * 지정하지 않으면 {@link https://realchart.co.kr/config/config/chart/pointHovering#hintdistance hintDistance} 설정을 따른다.
2347
2354
  */
2348
2355
  hintDistance?: number;
2349
2356
  }
2350
2357
  /**
2351
- * 데이터 포인트 maker 설정 정보.
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/hoverStyle hoverStyle} 보다 우선 적용된다.
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/options/pointHovering/hintDistance hintDistance} 설정을 따른다.
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/seriesfunnel seriesfunnel} 시리즈 설정 옵션들의 기반(base).<br/>
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
  /**
@@ -2814,6 +2821,92 @@ interface LineSeriesFlagOptions extends Omit<IconedTextOptions, 'numberFormat' |
2814
2821
  */
2815
2822
  offset?: number;
2816
2823
  }
2824
+ /**
2825
+ * line 시리즈 arrow 마커 회전 방식.<br/>
2826
+ * @enum
2827
+ */
2828
+ declare const _LineArrowRotation: {
2829
+ /**
2830
+ * 인접 데이터포인트를 잇는 선분(또는 step/spline의 마지막 구간) 방향으로 회전한다.
2831
+ *
2832
+ *
2833
+ */
2834
+ readonly AUTO: "auto";
2835
+ /**
2836
+ * {@link auto} 방향의 반대(180도)로 회전한다.
2837
+ *
2838
+ *
2839
+ */
2840
+ readonly AUTO_REVERSE: "auto-reverse";
2841
+ };
2842
+ /** @dummy */
2843
+ type LineArrowRotation = typeof _LineArrowRotation[keyof typeof _LineArrowRotation] | number;
2844
+ /**
2845
+ * line 시리즈 arrow 마커 표시 위치.<br/>
2846
+ * @enum
2847
+ */
2848
+ declare const _LineArrowPosition: {
2849
+ /**
2850
+ * 첫 번째 유효 데이터포인트.
2851
+ *
2852
+ *
2853
+ */
2854
+ readonly START: "start";
2855
+ /**
2856
+ * 마지막 유효 데이터포인트.
2857
+ *
2858
+ *
2859
+ */
2860
+ readonly END: "end";
2861
+ /**
2862
+ * 양 끝 데이터포인트.
2863
+ *
2864
+ *
2865
+ */
2866
+ readonly BOTH: "both";
2867
+ };
2868
+ /** @dummy */
2869
+ type LineArrowPosition = typeof _LineArrowPosition[keyof typeof _LineArrowPosition];
2870
+ /**
2871
+ * Line 시리즈 양 끝(또는 한쪽 끝)에 표시되는 arrow 마커 설정.<br/>
2872
+ * {@link shape} 등 marker와 동일한 도형을 사용하며, {@link rotation}으로 방향을 지정한다.<br/>
2873
+ * {@link style}을 지정하지 않으면 시리즈 color가 fill로 적용되고, line strokeDasharray는 상속되지 않는다.
2874
+ */
2875
+ interface LineSeriesArrowOptions extends SeriesMarkerOptions {
2876
+ /**
2877
+ * @append
2878
+ *
2879
+ * @default false
2880
+ */
2881
+ visible?: boolean;
2882
+ /**
2883
+ * @append
2884
+ *
2885
+ * @default 'triangle'
2886
+ */
2887
+ shape?: Shape;
2888
+ /**
2889
+ * @append
2890
+ *
2891
+ * @default 6
2892
+ */
2893
+ radius?: number;
2894
+ /**
2895
+ * arrow 마커 회전 각도.<br/>
2896
+ * `'auto'`/`'auto-reverse'`이면 인접 데이터포인트를 잇는 선분(또는 step의 해당 직각 구간) 방향으로 회전한다.
2897
+ * spline 등 곡선 시리즈는 인접 포인트를 잇는 직선(chord) 방향을 따른다.
2898
+ * 숫자이면 라인 기울기와 무관하게 지정한 각도(도)로 회전한다.
2899
+ *
2900
+ * @default 'auto'
2901
+ */
2902
+ rotation?: LineArrowRotation;
2903
+ /**
2904
+ * arrow 마커를 표시할 위치.
2905
+ *
2906
+ * @default 'end'
2907
+ */
2908
+ position?: LineArrowPosition;
2909
+ }
2817
2910
  /**
2818
2911
  * @enum
2819
2912
  */
@@ -2864,8 +2957,8 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
2864
2957
  stepDir?: LineStepDirection;
2865
2958
  /**
2866
2959
  * 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
2867
- * 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 { 적용되고, 그 값도 설정되지 않으면
2868
- * 연결된 y축의 { 따르고,
2960
+ * 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
2961
+ * 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
2869
2962
  * 그 값도 설정되지 않은 경우 0이 적용된다.
2870
2963
  * NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.<br/>
2871
2964
  * {@link https://realchart.co.kr/config/config/series/area area} 시리즈와 다르게,
@@ -2897,9 +2990,14 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
2897
2990
  *
2898
2991
  */
2899
2992
  flag?: LineSeriesFlagOptions;
2993
+ /**
2994
+ * 라인 양 끝(또는 한쪽 끝)에 표시되는 arrow 마커 설정.<br/>
2995
+ * {@link position}으로 `'start'`/`'end'`/`'both'`, {@link rotation}으로 `'auto'`/`'auto-reverse'` 또는 각도를 지정한다.
2996
+ */
2997
+ arrow?: LineSeriesArrowOptions;
2900
2998
  /**
2901
2999
  * polar 좌표계이고, x축의 totalAngle이 360도이 경우,
2902
- * 양끝 데이터포인터를 이어서 표시할 지 여부.<br/>
3000
+ * 양끝 데이터포인트를 이어서 표시할 지 여부.<br/>
2903
3001
  * 그 외에는 무조건 연결하지 않는다.
2904
3002
  *
2905
3003
  * @default base 라인이 존재하지 않거나 'spline'이면 true, 아니면 false.
@@ -2972,8 +3070,8 @@ interface AreaSeriesOptions extends LineSeriesOptions {
2972
3070
  type?: AreaSeriesTypes;
2973
3071
  /**
2974
3072
  * 데이터포인트를 표시하기 위한 y축 기준 위치 값.<br/>
2975
- * 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 { 적용되고, 그 값도 설정되지 않으면
2976
- * 연결된 y축의 { 따르고,
3073
+ * 또, 이 값을 지정하지 않은 경우 포함된 시리즈의 {@link baseValue}가 적용되고, 그 값도 설정되지 않으면
3074
+ * 연결된 y축의 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}를 따르고,
2977
3075
  * 그 값도 설정되지 않은 경우 0이 적용된다.
2978
3076
  * NaN으로 지정하면 기준값 없이 최소값과 축의 padding으로 기준 위치가 정해진다.
2979
3077
  *
@@ -3958,10 +4056,10 @@ interface ParetoSeriesOptions extends LineSeriesBaseOptions {
3958
4056
  curved?: boolean;
3959
4057
  }
3960
4058
  /**
3961
- * {@link https://realchart.co.kr/config/config/sereies/pie pie} 시리즈와 같은 원형 시리즈에 대한 설정 옵션<br/>
4059
+ * {@link https://realchart.co.kr/config/config/series/pie pie} 시리즈와 같은 원형 시리즈에 대한 설정 옵션<br/>
3962
4060
  * 직교 좌표계가 표시된 경우, {@link https://realchart.co.kr/config/config/body body} 영역을 기준으로
3963
4061
  * {@link size}, {@link centerX}, {@link centerY}가 적용된다.<br/>
3964
- * //TODO: 현재 PieSeris만 계승하고 있다. 추후 PieSeries에 합칠 것.
4062
+ * //TODO: 현재 PieSeries만 계승하고 있다. 추후 PieSeries에 합칠 것.
3965
4063
  */
3966
4064
  interface RadialSeriesOptions extends WidgetSeriesOptions {
3967
4065
  /**
@@ -5485,7 +5583,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
5485
5583
  */
5486
5584
  credits?: CreditsOptions | string | boolean;
5487
5585
  /**
5488
- * 데이터포인트에 마우스가 올라가면 나머지 시리즈들을 반투명 처리해서 연결된 데이터포인터의 시리즈를 강조한다.<br/>
5586
+ * 데이터포인트에 마우스가 올라가면 나머지 시리즈들을 반투명 처리해서 연결된 데이터포인트의 시리즈를 강조한다.<br/>
5489
5587
  *
5490
5588
  * @default false
5491
5589
  */
@@ -5623,7 +5721,7 @@ interface ZoomCallbackArgs {
5623
5721
  }
5624
5722
  /**
5625
5723
  * {@link BodyDepth.depth depth}가 지정된 body 영역의 양 축 방향에 표시되는
5626
- * {@link https://realchart.co.kr/config/config/body/xSide side}s panel의 경계선 설정 옵션.<br/>
5724
+ * {@link https://realchart.co.kr/config/config/body#xside side} panel의 경계선 설정 옵션.<br/>
5627
5725
  */
5628
5726
  interface BodyDepthLineOptions extends ChartItemOptions {
5629
5727
  /**
@@ -5652,7 +5750,7 @@ interface BodyDepthSideOptions extends ChartItemOptions {
5652
5750
  }
5653
5751
  /**
5654
5752
  * body 깊이 설정 옵션.<br/>
5655
- * x 축이고 첫번째 연결된 시리즈가 depth가 설정된 { 'bar'} 시리즈를 표시할 때, 축 깊이를 설정한다.<br/>
5753
+ * x 축이고 첫번째 연결된 시리즈가 depth가 설정된 {@link https://realchart.co.kr/config/config/series/bar bar} 시리즈를 표시할 때, 축 깊이를 설정한다.<br/>
5656
5754
  * 차트나 분할 pane에 연결된 첫번째 x축일 때만 의미가 있다.
5657
5755
  *
5658
5756
  * @css 'rct-body-depth'
@@ -5674,7 +5772,13 @@ interface BodyDepthOptions extends ChartItemOptions {
5674
5772
  * @default 32
5675
5773
  */
5676
5774
  angle?: number;
5775
+ /**
5776
+ * x축 방향 depth side panel 설정 옵션.<br/>
5777
+ */
5677
5778
  xSide?: BodyDepthSideOptions;
5779
+ /**
5780
+ * y축 방향 depth side panel 설정 옵션.<br/>
5781
+ */
5678
5782
  ySide?: BodyDepthSideOptions;
5679
5783
  /**
5680
5784
  * 원점에서 depth side 끝까지 연결하는 선 설정 옵션.<br/>
@@ -5701,7 +5805,7 @@ interface BodyDepthOptions extends ChartItemOptions {
5701
5805
  */
5702
5806
  interface BodyOptions extends ChartItemOptions {
5703
5807
  /**
5704
- * {@link https://realchart.co.kr/config/config/config#polar 극좌표계} 차트일 때 반지름.<br/>
5808
+ * {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 반지름.<br/>
5705
5809
  *
5706
5810
  * @default '45%'
5707
5811
  */
@@ -5791,7 +5895,7 @@ interface NavigiatorMaskOptions extends ChartItemOptions {
5791
5895
  * 시리즈 내비게이터 설정 옵션.<br/>
5792
5896
  * 내비게이터에 표시되는 시리즈는 기본적으로 {@link https://realchart.co.kr/config/config/series/area area} 시리즈로 표시되지만,
5793
5897
  * {@link https://realchart.co.kr/config/config/series/line line}, {@link https://realchart.co.kr/config/config/series/area area},
5794
- * {@link https://realchart.co.kr/config/config/series/bara bar} 시리즈로 지정할 수도 있다.<br/>
5898
+ * {@link https://realchart.co.kr/config/config/series/bar bar} 시리즈로 지정할 수도 있다.<br/>
5795
5899
  * 내비게이터의 x축 종류는 명시적으로 설정하지 않으면 소스 시리즈의 x축 type을 따라간다.
5796
5900
  * y축은 항상 {@link https://realchart.co.kr/config/config/yAxis/linear linear}로 생성된다.
5797
5901
  *
@@ -5890,7 +5994,7 @@ interface CreditsOptions extends ChartItemOptions {
5890
5994
  /**
5891
5995
  * 제작자 이름 등 표시 텍스트.<br/>
5892
5996
  *
5893
- * @default 'RealChart v1.0'
5997
+ * @default 'RealChart v1.4'
5894
5998
  */
5895
5999
  text?: string;
5896
6000
  /**
@@ -5950,7 +6054,7 @@ interface CreditsOptions extends ChartItemOptions {
5950
6054
  */
5951
6055
  declare const _PointHoverScope: {
5952
6056
  /**
5953
- * hover된 데이터포인터의 상태에 따라 자동으로 결정한다.<br/>
6057
+ * hover된 데이터포인트의 상태에 따라 자동으로 결정한다.<br/>
5954
6058
  * {@link ChartOptionsOptions.seriesHovering seriesHovering}이 true이면 'point',
5955
6059
  * 데이터포인트의 x축에 'crosshair'가 동작 중이면 'axis',
5956
6060
  * 데이터포인트가 series group에 포함된 경우이면 'group',
@@ -5989,13 +6093,14 @@ interface PointHoveringOptions extends ChartItemOptions {
5989
6093
  /**
5990
6094
  * 데이터포인트 hover시 동일한 효과를 표시할 연관된 포인트들을 선택하는 범위.<br/>
5991
6095
  *
6096
+ * @default 'auto'
5992
6097
  */
5993
6098
  scope?: PointHoverScope;
5994
6099
  /**
5995
6100
  * {@link https://realchart.co.kr/config/config/series/line line},
5996
6101
  * {@link https://realchart.co.kr/config/config/series/bubble bubble},
5997
6102
  * {@link https://realchart.co.kr/config/config/series/scatter scatter} 시리즈처럼 marker로 표시되는 데이터포인트의 위치를 찾을 때
5998
- * 데이터포인트 maker 외부로 추가되는 가상의 두께.<br/>
6103
+ * 데이터포인트 marker 외부로 추가되는 가상의 두께.<br/>
5999
6104
  * 0이하면 표시되는 크기로 계산된다.
6000
6105
  * 상당히 큰 크기로 지정하면 마우스가 어느 위치에 있든 마우스에 가장 가까운 marker가 찾아진다.<br/>
6001
6106
  * 물론 마우스가 실제 표시되는 marker 위에 있다면 그 것으로 결정된다.
@@ -6012,9 +6117,28 @@ interface PointHoveringOptions extends ChartItemOptions {
6012
6117
  * @enum
6013
6118
  */
6014
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
+ */
6015
6125
  readonly HOVER: "hover";
6126
+ /**
6127
+ * hover된 시리즈 하나의 데이터포인트만 툴팁에 표시한다.<br/>
6128
+ * 해당 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltiptext tooltipText} 등이 사용된다.
6129
+ */
6016
6130
  readonly POINT: "point";
6131
+ /**
6132
+ * hover된 시리즈가 시리즈 그룹에 포함된 경우, 그룹에 속한 시리즈들의 동일 x(카테고리) 값
6133
+ * 데이터포인트를 한 툴팁에 표시한다.<br/>
6134
+ * 그룹이 아니면 `'point'`와 같이 해당 시리즈만 표시된다.
6135
+ */
6017
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
+ */
6018
6142
  readonly AXIS: "axis";
6019
6143
  };
6020
6144
  /** @dummy */
@@ -6036,7 +6160,7 @@ interface TooltipOptions extends ChartItemOptions {
6036
6160
  /**
6037
6161
  * 하나의 툴팁으로 표시할 범위.
6038
6162
  *
6039
- * @default hover
6163
+ * @default 'hover'
6040
6164
  */
6041
6165
  scope?: TooltipScope;
6042
6166
  /**
@@ -6148,10 +6272,11 @@ interface TooltipOptions extends ChartItemOptions {
6148
6272
  listRowGap?: number;
6149
6273
  /**
6150
6274
  * 리스트 모드로 표시될 때, 마커 모양.<br/>
6275
+ * 'none'으로 지정하면 마커를 표시하지 않는다.
6151
6276
  *
6152
6277
  * @default 'circle'
6153
6278
  */
6154
- listMarkerShape?: Shape;
6279
+ listMarkerShape?: TooltipMarkerShape;
6155
6280
  /**
6156
6281
  * 리스트 모드로 표시될 때, 마커 크기.<br/>
6157
6282
  *
@@ -6418,9 +6543,11 @@ interface LegendOptions extends ChartItemOptions {
6418
6543
  */
6419
6544
  interface PaneOptions extends ChartItemOptions {
6420
6545
  /**
6546
+ * 이 pane의 행(row) 인덱스.<br/>
6421
6547
  */
6422
6548
  row?: number;
6423
6549
  /**
6550
+ * 이 pane의 열(col) 인덱스.<br/>
6424
6551
  */
6425
6552
  col?: number;
6426
6553
  /**
@@ -6432,7 +6559,7 @@ interface PaneOptions extends ChartItemOptions {
6432
6559
  * {@link https://realchart.co.kr/config/config/legend#location location}은 항상 'body'로 적용된다.
6433
6560
  * 또, 이 legend에 표시된 시리즈는 다른 legend에 표시될 수 없고,
6434
6561
  * visible을 true로 설정하지 않으면 이 pane에 표시되는 시리즈들은
6435
- * chart {@link https://realchart.co.kr/config/config/chart#legend 기본 legend}에 연결된다.
6562
+ * chart {@link https://realchart.co.kr/config/config/legend 기본 legend}에 연결된다.
6436
6563
  */
6437
6564
  legend?: LegendOptions;
6438
6565
  }
@@ -6450,7 +6577,7 @@ interface PaneBodyOptions extends BodyOptions {
6450
6577
  * 분할(split) 모드 설정 옵션.<br/>
6451
6578
  * 각 pane에 해당하는 x, y축이 반드시 존재해야 한다.
6452
6579
  * axis는 {@link https://realchart.co.kr/config/config/base/axis#row row}, {@link https://realchart.co.kr/config/config/base/axis#col col} 속성으로 위치를 지정한다.
6453
- * 시리즈는 {@link https://realchart.co.kr/config/config/base/series/xAxis xAxis}, {@link https://realchart.co.kr/config/config/base/series/yAxis yAxis} 설정에 따라 연결된 axis 위치에 따라 자동으로 결정된다.
6580
+ * 시리즈는 {@link https://realchart.co.kr/config/config/base/series#xaxis xAxis}, {@link https://realchart.co.kr/config/config/base/series#yaxis yAxis} 설정에 따라 연결된 axis 위치에 따라 자동으로 결정된다.
6454
6581
  *
6455
6582
  * @modules split
6456
6583
  * @css 'rct-panes'
@@ -6472,16 +6599,16 @@ interface SplitOptions extends ChartItemOptions {
6472
6599
  /**
6473
6600
  * y축 방향 분할 수를 지정한다.<br/>
6474
6601
  * //숫자로 지정하면 동일한 높이를 갖는 pane들로 표시된다.
6475
- * //배열로 지정하면 각 항목은 고정 크기 수자, 혹은 '*'로 끝나는 상대 크기.
6602
+ * //배열로 지정하면 각 항목은 고정 크기 숫자, 혹은 '*'로 끝나는 상대 크기.
6476
6603
  *
6477
6604
  */
6478
6605
  rows?: number | (number | `${number}*` | '*')[];
6479
6606
  /**
6480
6607
  * x축 방향 분할 수를 지정한다.<br/>
6481
6608
  * //숫자로 지정하면 동일한 너비를 갖는 pane들로 표시된다.
6482
- * //배열로 지정하면 각 항목은 고정 크기 수자, 혹은 '*'로 끝나는 상대 크기.
6609
+ * //배열로 지정하면 각 항목은 고정 크기 숫자, 혹은 '*'로 끝나는 상대 크기.
6483
6610
  *
6484
- * @default false
6611
+ * @default 1
6485
6612
  */
6486
6613
  cols?: number | (number | `${number}*` | '*')[];
6487
6614
  /**
@@ -6496,18 +6623,22 @@ interface SplitOptions extends ChartItemOptions {
6496
6623
  }
6497
6624
 
6498
6625
  /**
6499
- * 차트 내보내기 설정 모델
6626
+ * 차트 이미지 보내기(export) 설정 모델.<br/>
6627
+ * {@link https://realchart.co.kr/config/config/exporting exporting} 항목으로 설정한다.
6500
6628
  */
6501
6629
  interface ExporterOptions extends ChartItemOptions {
6502
6630
  /**
6503
- * 내보내기 버튼 표시 여부 지정
6631
+ * 내보내기 버튼 표시 여부.
6632
+ *
6633
+ * @default false
6504
6634
  */
6505
6635
  visible?: boolean;
6506
6636
  /**
6507
- * 내보내기 버튼을 사용해 내보낸 차트에 사용할 확장자 없는 파일 이름.\
6508
- * 'export' 함수를 호출할 fileName을 지정하지 않을 경우 속성이 적용된다.
6509
- * fileName을 지정하지 않을 경우 realchart.type으로 다운로드 된다.
6637
+ * 보내기 결과 파일의 확장자 없는 이름.<br/>
6638
+ * `export()` 호출 fileName을 지정하지 않으면값이 사용된다.<br/>
6639
+ * 없으면 `realchart`와 확장자로 저장된다.
6510
6640
  *
6641
+ * @default 'realchart'
6511
6642
  */
6512
6643
  fileName?: string;
6513
6644
  /**
@@ -6515,32 +6646,36 @@ interface ExporterOptions extends ChartItemOptions {
6515
6646
  */
6516
6647
  useLibrary?: boolean;
6517
6648
  /**
6518
- * 내보내기 메뉴에 포함할 export types
6649
+ * 보내기 메뉴에 포함할 형식 목록.
6650
+ *
6651
+ * @default ['png', 'jpeg', 'svg']
6519
6652
  */
6520
6653
  menus?: ExportType[];
6521
6654
  /**
6522
- * 너비, 지정한 너비에 맞춰 높이가 결정된다.
6655
+ * 보내기 이미지 너비(픽셀). 지정한 너비에 맞춰 높이가 결정된다.
6523
6656
  */
6524
6657
  width?: number;
6525
6658
  /**
6526
- * 이미지의 scale
6659
+ * 보내기 이미지 배율.
6660
+ *
6661
+ * @default 1
6527
6662
  */
6528
6663
  scale?: number;
6529
6664
  /**
6530
- * 내보내기 도중 에러가 발생했을 처리할 서버 URL.\
6531
- * 지정하지 않을경우 realchart 서버에서 처리한다.
6665
+ * 보내기 오류 발생 요청을 보낼 서버 URL.<br/>
6666
+ * 지정하지 않으면 RealChart 서버에서 처리한다.
6532
6667
  */
6533
6668
  url?: string;
6534
6669
  /**
6535
- * true 지정하면 내보내기 결과에 {@link https://realchart.co.kr/config/config/axis/scrollBar AxisScrollBarOptions}가 포함되지 않는다.
6670
+ * true이면 보내기 결과에 {@link https://realchart.co.kr/config/config/base/axis/scrollBar AxisScrollBarOptions}가 포함되지 않는다.
6536
6671
  */
6537
6672
  hideScrollbar?: boolean;
6538
6673
  /**
6539
- * true 지정하면 내보내기 결과에 {@link https://realchart.co.kr/config/config/seriesNavigator SeriesNavigator}가 포함되지 않는다.
6674
+ * true이면 보내기 결과에 {@link https://realchart.co.kr/config/config/seriesNavigator SeriesNavigator}가 포함되지 않는다.
6540
6675
  */
6541
6676
  hideNavigator?: boolean;
6542
6677
  /**
6543
- * true 지정하면 내보내기 결과에 {@link https://realchart.co.kr/config/config/body/zoomButton ZoomButtonOptions}가 포함되지 않는다.
6678
+ * true이면 보내기 결과에 {@link https://realchart.co.kr/config/config/body/zoomButton ZoomButtonOptions}가 포함되지 않는다.
6544
6679
  */
6545
6680
  hideZoomButton?: boolean;
6546
6681
  }
@@ -6648,7 +6783,7 @@ type HtmlButtonHoverEffect = typeof _HtmlButtonHoverEffect[keyof typeof _HtmlBut
6648
6783
  */
6649
6784
  declare const _HtmlButtonHintMode: {
6650
6785
  /**
6651
- * 브리우저 기본 툴팁 모드 사용.<br/>
6786
+ * 브라우저 기본 툴팁 모드 사용.<br/>
6652
6787
  */
6653
6788
  readonly DEFAULT: "default";
6654
6789
  /**
@@ -6668,7 +6803,7 @@ interface HtmlButtonOptions extends Omit<ChartItemOptions, 'style'> {
6668
6803
  /**
6669
6804
  * 버튼 표시 위치 기준.<br/>
6670
6805
  *
6671
- * @default 'container'
6806
+ * @default 'chart'
6672
6807
  */
6673
6808
  scope?: HtmlButtonScope;
6674
6809
  /**
@@ -6727,20 +6862,26 @@ interface HtmlButtonOptions extends Omit<ChartItemOptions, 'style'> {
6727
6862
  hoverImageUrl?: string;
6728
6863
  /**
6729
6864
  * 버튼에 마우스 커서를 올렸을 때의 효과.<br/>
6865
+ *
6866
+ * @default 'auto'
6730
6867
  */
6731
6868
  hoverEffect?: HtmlButtonHoverEffect;
6732
6869
  /**
6733
6870
  * 버튼에 표시되는 이미지의 픽셀 단위 너비.<br/>
6871
+ *
6872
+ * @default 24
6734
6873
  */
6735
6874
  imageWidth?: number;
6736
6875
  /**
6737
6876
  * 버튼에 표시되는 이미지의 픽셀 단위 높이.<br/>
6877
+ *
6878
+ * @default 24
6738
6879
  */
6739
6880
  imageHeight?: number;
6740
6881
  /**
6741
6882
  * 버튼의 hint 표시 방식.<br/>
6742
6883
  *
6743
- * @default HtmlButtonHintMode.CUSTOM
6884
+ * @default 'custom'
6744
6885
  */
6745
6886
  hintMode?: HtmlButtonHintMode;
6746
6887
  /**
@@ -6777,7 +6918,7 @@ interface GaugeBaseOptions extends ChartItemOptions {
6777
6918
  */
6778
6919
  col?: number;
6779
6920
  /**
6780
- * plot 영역의 왼쪽 모서리와 wid사이의 간격.
6921
+ * plot 영역의 왼쪽 모서리와 widget 사이의 간격.
6781
6922
  *
6782
6923
  */
6783
6924
  left?: PercentSize;
@@ -6788,25 +6929,25 @@ interface GaugeBaseOptions extends ChartItemOptions {
6788
6929
  */
6789
6930
  right?: PercentSize;
6790
6931
  /**
6791
- * plot 영역의 위쪽 모서리와 wid사이의 간격.
6932
+ * plot 영역의 위쪽 모서리와 widget 사이의 간격.
6792
6933
  *
6793
6934
  */
6794
6935
  top?: PercentSize;
6795
6936
  /**
6796
- * plot 영역의 아래쪽 모서리와 wid사이의 간격.<br/>
6937
+ * plot 영역의 아래쪽 모서리와 widget 사이의 간격.<br/>
6797
6938
  * {@link bottom}이 설정되면 이 속성은 무시된다.
6798
6939
  *
6799
6940
  */
6800
6941
  bottom?: PercentSize;
6801
6942
  /**
6802
6943
  * 게이지 너비.
6803
- * 픽셀 단위의 고정 값이나, plot 영역에 대한 상태 크기롤 지정할 수 있다.
6944
+ * 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
6804
6945
  *
6805
6946
  */
6806
6947
  width?: PercentSize;
6807
6948
  /**
6808
6949
  * 게이지 높이.
6809
- * 픽셀 단위의 고정 값이나, plot 영역에 대한 상태 크기롤 지정할 수 있다.
6950
+ * 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
6810
6951
  *
6811
6952
  */
6812
6953
  height?: PercentSize;
@@ -6832,6 +6973,7 @@ interface GaugeOptions extends GaugeBaseOptions {
6832
6973
  /**
6833
6974
  * Animation duration.
6834
6975
  *
6976
+ * @default 500
6835
6977
  */
6836
6978
  duration?: number;
6837
6979
  }
@@ -7004,7 +7146,7 @@ interface LinearGaugeGroupLabelOptions extends LinearGaugeLabelOptions {
7004
7146
  interface LinearGaugeGroupBaseOptions<T extends LinearGaugeBaseOptions> extends GaugeGroupOptions<T> {
7005
7147
  /**
7006
7148
  * true면 자식 게이지들을 수직으로 지정하고(자식 게이지의 vertical 속성과 관계없이) 왼쪽에서 오른쪽으로 차례대로 배치한다.<br/>
7007
- * false면 자식 게이지들을 수펑으로 지정하고, 위에서 아래로 순서대로 배치한다.<br/>
7149
+ * false면 자식 게이지들을 수평으로 지정하고, 위에서 아래로 순서대로 배치한다.<br/>
7008
7150
  * [주의]이런 배치가 의도와 맞지 않다면 그룹없이 개별적으로 배치해야 한다.
7009
7151
  *
7010
7152
  *
@@ -7145,7 +7287,7 @@ declare const BulletGaugeType = "bullet";
7145
7287
  * Bullet 게이지.<br/>
7146
7288
  * {@link https://realchart.co.kr/docs/api/options/GaugeOptions#type type}은 'bullet'이다.<br/>
7147
7289
  * 현재 값을 목표 값과 비교해서 표시한다.
7148
- * 또, {@link band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.
7290
+ * 또, {@link BulletGaugeOptions#band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.
7149
7291
  *
7150
7292
  * @modules gauge
7151
7293
  * @css 'rct-bullet-gauge'
@@ -7160,7 +7302,7 @@ interface BulletGaugeOptions extends LinearGaugeBaseOptions {
7160
7302
  */
7161
7303
  band?: BulletGaugeBandOptions | boolean;
7162
7304
  /**
7163
- * tarbar.
7305
+ * 목표 값(target) 막대 설정.
7164
7306
  *
7165
7307
  */
7166
7308
  targetBar?: BulletTargetBarOptions | boolean;
@@ -7244,7 +7386,7 @@ interface CircularGaugeLabelOptions extends GaugeLabelOptions {
7244
7386
  }
7245
7387
  /**
7246
7388
  * 원형 게이지 모델.
7247
- * label의 기본 위치의 x는 원호의 좌위 최대 각 위치를 연결한 지점,
7389
+ * label의 기본 위치의 x는 원호의 좌우 최대 각 위치를 연결한 지점,
7248
7390
  * y는 중심 각도의 위치.
7249
7391
  */
7250
7392
  interface CircularGaugeOptions extends ValueGaugeOptions {
@@ -7252,12 +7394,14 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
7252
7394
  * 게이지 중심 수평 위치.
7253
7395
  * 픽셀 단위의 크기나, plot 영역 전체 너비에 대한 상대적 크기로 지정할 수 있다.
7254
7396
  *
7397
+ * @default '50%'
7255
7398
  */
7256
7399
  centerX?: PercentSize;
7257
7400
  /**
7258
7401
  * 게이지 중심 수직 위치.
7259
7402
  * 픽셀 단위의 크기나, plot 영역 전체 높이에 대한 상대적 크기로 지정할 수 있다.
7260
7403
  *
7404
+ * @default '50%'
7261
7405
  */
7262
7406
  centerY?: PercentSize;
7263
7407
  /**
@@ -7265,6 +7409,7 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
7265
7409
  * 픽셀 단위의 크기나, plot 영역 전체 크기(너비와 높이 중 작은 값)에 대한 상대적 크기로 지정할 수 있다.
7266
7410
  * '50%'로 지정하면 plot 영역의 width나 height중 작은 크기와 동일한 반지름으로 표시된다.
7267
7411
  *
7412
+ * @default '40%'
7268
7413
  */
7269
7414
  radius?: PercentSize;
7270
7415
  /**
@@ -7272,6 +7417,7 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
7272
7417
  * 픽셀 단위의 크기나, {@link radius}에 대한 상대적 크기로 지정할 수 있다.
7273
7418
  * '100%'이면 게이지 원호의 반지름과 동일하다.
7274
7419
  *
7420
+ * @default '80%'
7275
7421
  */
7276
7422
  innerRadius?: PercentSize;
7277
7423
  /**
@@ -7427,7 +7573,7 @@ interface GaugeRangeBandOptions extends ChartItemOptions {
7427
7573
  /**
7428
7574
  * 표시 위치.
7429
7575
  *
7430
- * @default 'defalut'
7576
+ * @default 'default'
7431
7577
  */
7432
7578
  position?: GaugeItemPosition;
7433
7579
  /**
@@ -7505,6 +7651,8 @@ interface GaugeScaleOptions extends ChartItemOptions {
7505
7651
  * opposite: 원 표시 위치의 반대 쪽 게이지 옆에 표시된다.
7506
7652
  *
7507
7653
  * inside: 게이지 본체 내부에 본체와 같은 두께로 표시된다.
7654
+ *
7655
+ * @default 'default'
7508
7656
  */
7509
7657
  position?: 'default' | 'opposite' | 'inside';
7510
7658
  /**
@@ -7539,16 +7687,11 @@ interface GaugeScaleOptions extends ChartItemOptions {
7539
7687
  */
7540
7688
  interface CircleGaugeScaleOptions extends GaugeScaleOptions {
7541
7689
  /**
7542
- * @append
7543
- *
7544
- * @default false
7545
- */
7546
- /**
7547
- * @append
7690
+ * tick들 사이의 대략적인 픽셀 간격.<br/>
7548
7691
  *
7549
- * @default 72
7692
+ * @default 48
7550
7693
  */
7551
- stepPixels: number;
7694
+ stepPixels?: number;
7552
7695
  }
7553
7696
  /**
7554
7697
  */
@@ -7577,7 +7720,7 @@ interface CircleGaugeRimOptions extends CircleGaugeRimBaseOptions {
7577
7720
  */
7578
7721
  segmentThickness?: PercentSize;
7579
7722
  /**
7580
- * segement 사이의 간격.
7723
+ * segment 사이의 간격.
7581
7724
  */
7582
7725
  segmentGap?: number;
7583
7726
  }
@@ -7716,7 +7859,7 @@ interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
7716
7859
  /**
7717
7860
  * @append
7718
7861
  *
7719
- * @default '50%'
7862
+ * @default '80%'
7720
7863
  */
7721
7864
  innerRadius?: PercentSize;
7722
7865
  }
@@ -7726,7 +7869,7 @@ interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
7726
7869
  interface ClockGaugeRimOptions extends ChartItemOptions {
7727
7870
  /**
7728
7871
  * rim 두께.
7729
- * 픽셀 단위 크기나, 게이지 반지름 대한 상대 크기로 지정할 수 있다.
7872
+ * 픽셀 단위 크기나, 게이지 반지름에 대한 상대 크기로 지정할 수 있다.
7730
7873
  *
7731
7874
  * @default 7 pixel
7732
7875
  */
@@ -7906,7 +8049,7 @@ declare const LinearGaugeType = "linear";
7906
8049
  * 선형 게이지.<br/>
7907
8050
  * {@link https://realchart.co.kr/docs/api/options/GaugeOptions#type type}은 'linear'이다.<br/>
7908
8051
  * 현재 값을 선형 막대로 표시한다.
7909
- * 또, {@link band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.<br/>
8052
+ * 또, {@link LinearGaugeOptions#band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.<br/>
7910
8053
  *
7911
8054
  * @modules gauge
7912
8055
  * @css 'rct-linear-gauge'
@@ -9068,12 +9211,22 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
9068
9211
  getHeaderHeight(): number;
9069
9212
  getTailSize(): number;
9070
9213
  getBorderRadius(): number;
9214
+ hasListMarker(): boolean;
9071
9215
  getMarkerSize(): number;
9072
9216
  getMarkerGap(): number;
9073
9217
  protected _doSetSimple(src: any): boolean;
9074
9218
  protected _doApply(options: TooltipOptions): void;
9075
9219
  }
9076
9220
 
9221
+ /**
9222
+ * @private
9223
+ */
9224
+ interface ICategoryTreeGroup {
9225
+ level: number;
9226
+ start: number;
9227
+ end: number;
9228
+ label: string;
9229
+ }
9077
9230
  /**
9078
9231
  * 카테고리축의 tick 모델.<br/>
9079
9232
  * {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/CategoryAxisTickOptions CategoryAxisTickOptions}이다.
@@ -9110,12 +9263,24 @@ declare class CategoryAxisGrid extends AxisGrid<AxisGridOptions> {
9110
9263
  */
9111
9264
  declare class CategoryAxis extends Axis<CategoryAxisOptions> {
9112
9265
  static type: string;
9266
+ static readonly categoryTreeDividerDefaults: Readonly<CategoryTreeDividerOptions>;
9267
+ static readonly categoryTreeDefaults: Readonly<CategoryTreeOptions>;
9113
9268
  static defaults: CategoryAxisOptions;
9114
9269
  _categories: {
9115
9270
  c: string;
9116
9271
  t: string;
9272
+ levels?: string[];
9117
9273
  i?: string;
9274
+ v?: number;
9118
9275
  }[];
9276
+ _categoryTreeDepth: number;
9277
+ _categoryTreeGroups: ICategoryTreeGroup[];
9278
+ _categoryTreeDividerEnds: number[];
9279
+ _categoryTreeDividerLevel: number;
9280
+ private _categoryTreeOp;
9281
+ private _bandColors;
9282
+ private _categoryTreeLevelGroups;
9283
+ private _categoryTreeLevelEnds;
9119
9284
  _weights: Map<number, number>;
9120
9285
  _len: number;
9121
9286
  _minPad: number;
@@ -9136,7 +9301,55 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
9136
9301
  get label(): CategoryAxisLabel;
9137
9302
  xValueAt(pos: number): number;
9138
9303
  getCategorySeparator(): string;
9304
+ isCategoryTreeEnabled(): boolean;
9305
+ hasCategoryTree(): boolean;
9306
+ private $_resolveCategoryTreeOp;
9307
+ private $_normalizeDivider;
9308
+ private $_isDividerOn;
9309
+ private $_dividerProp;
9310
+ isLevelVisible(level: number): boolean;
9311
+ /**
9312
+ * 계층 행 라벨 회전 각도를 반환한다.<br/>
9313
+ * 'auto'(기본값)는 라벨 폭이 자기 영역(span)을 벗어날 때만 -90°로 회전해야 하므로,
9314
+ * 실제 각도 결정은 라벨 폭과 span을 아는 View로 위임한다.
9315
+ */
9316
+ getLevelRotation(level: number): number | 'auto';
9317
+ private $_resolveLevelRotation;
9318
+ getLevelStyle(level: number): SVGStyleOrClass | undefined;
9319
+ getLevelAlign(level: number): Align;
9320
+ getCategoryTreeDepth(): number;
9321
+ getCategoryTreeGroups(): ICategoryTreeGroup[];
9322
+ getDividerLevel(): number;
9323
+ /** level 생략 시 기준 레벨 경계, 지정 시 해당 레벨 행의 그룹 경계 인덱스. */
9324
+ getDividerEnds(level?: number): number[];
9325
+ private $_groupsAtLevel;
9326
+ isDividerBetween(level: number): boolean;
9327
+ isDividerEdge(level: number): boolean;
9328
+ isDividerBelow(level: number): boolean;
9329
+ isDividerTopCap(): boolean;
9330
+ isDividerVisible(): boolean;
9331
+ /** 배경 stripe는 구분선 기준 레벨을 그대로 따른다. */
9332
+ getBandLevel(): number;
9333
+ private $_resolveDividerStyle;
9334
+ private $_dividerStyleOf;
9335
+ getDividerStyle(level?: number): SVGStyleOrClass | undefined;
9336
+ private $_isBandEnabled;
9337
+ isBandVisible(): boolean;
9338
+ getBandGroups(): ICategoryTreeGroup[];
9339
+ getBandColor(index: number): string;
9340
+ private $_resolveBandColors;
9341
+ getCategoryTreeSpan(start: number, end: number, length: number): {
9342
+ center: number;
9343
+ size: number;
9344
+ };
9345
+ getDividerPos(categoryEnd: number, length: number): number;
9346
+ /** 구분선 위치: 첫 카테고리 왼쪽, 그룹 경계, 마지막 카테고리 오른쪽. */
9347
+ getDividerLinePositions(length?: number): number[];
9139
9348
  getWeight(key: number): number;
9349
+ /** 수직 축 라벨 배치 Y (시리즈 inverted 카테고리 좌표와 동일). */
9350
+ getLabelY(length: number, pos: number): number;
9351
+ /** 수평 축 라벨 배치 X. */
9352
+ getLabelX(length: number, pos: number): number;
9140
9353
  _type(): string;
9141
9354
  unitPad(): number;
9142
9355
  continuous(): boolean;
@@ -9144,6 +9357,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
9144
9357
  protected _createGrid(): CategoryAxisGrid;
9145
9358
  protected _createTickModel(): CategoryAxisTick;
9146
9359
  protected _createLabel(): CategoryAxisLabel;
9360
+ protected _doApply(op: CategoryAxisOptions): void;
9147
9361
  collectValues(): void;
9148
9362
  getStartAngle(): number;
9149
9363
  protected _doPrepareRender(): void;
@@ -9163,6 +9377,12 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
9163
9377
  min: number;
9164
9378
  max: number;
9165
9379
  };
9380
+ private $_getSpanFromPts;
9381
+ private $_getDividerPosFromPts;
9382
+ private $_getCategoryEdgePos;
9383
+ private $_parseCategoryLevels;
9384
+ private $_pushCategory;
9385
+ private $_buildCategoryTree;
9166
9386
  private $_collectCategories;
9167
9387
  }
9168
9388
 
@@ -10722,7 +10942,8 @@ declare class AxisAnimation extends RcAnimation {
10722
10942
  private _offset;
10723
10943
  constructor(axis: Axis, prevMin: number, prevMax: number, endHandler: RcAnimationEndHandler);
10724
10944
  getPos(pos: number, reversed: boolean): number;
10725
- protected _doUpdate(rate: number): boolean;
10945
+ protected _doUpdate(rate: number, _oldRate: number): boolean;
10946
+ protected _stop(canceled: boolean): void;
10726
10947
  protected _doStop(): void;
10727
10948
  private $_calcRange;
10728
10949
  }
@@ -10974,6 +11195,7 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
10974
11195
  static defaults: AxisTickOptions;
10975
11196
  private _length;
10976
11197
  private _gap;
11198
+ _inside: boolean;
10977
11199
  canUseNumSymbols(): boolean;
10978
11200
  _getLength(): number;
10979
11201
  _getGap(): number;
@@ -11378,13 +11600,15 @@ declare class AxisCollection extends ChartItemCollection<Axis> {
11378
11600
  */
11379
11601
  declare const _AxisTitleAlign: {
11380
11602
  /**
11603
+ * 축 시작 방향(왼쪽 또는 아래)에 배치한다.
11381
11604
  */
11382
11605
  readonly START: "start";
11383
11606
  /**
11384
- * is middle.
11607
+ * 중앙에 배치한다.
11385
11608
  */
11386
11609
  readonly MIDDLE: "middle";
11387
11610
  /**
11611
+ * 축 끝 방향(오른쪽 또는 위)에 배치한다.
11388
11612
  */
11389
11613
  readonly END: "end";
11390
11614
  };
@@ -11449,7 +11673,7 @@ interface AxisTitleOptions extends AxisItemOptions {
11449
11673
  * 타이틀을 가로 또는 세로로 배치할지 여부와 블록의 진행 방향을 지정한다.<br/>
11450
11674
  * 'vertical-lr' 또는 'vertical-rl'로 설정하면 수직 쓰기가 적용되며,
11451
11675
  * 이때 한글 등 동아시아 문자는 글자 단위, 영문 등 기타 문자는 단어 단위로 배치된다.
11452
- * {@link textOrinetation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
11676
+ * {@link textOrientation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
11453
11677
  * writingMode를 지원하지 않는 브라우저에서도 모든 문자를 글자 단위로 일관되게 세로 표시하고자 할 때는
11454
11678
  * 신규 속성인 `vertical`을 사용할 수 있다. 단, `vertical` 속성에서는 `<br>`과 같은 줄바꿈 기능이 적용되지 않는다.
11455
11679
  */
@@ -11491,7 +11715,7 @@ interface AxisUnitLabelOptions extends AxisItemOptions {
11491
11715
  */
11492
11716
  position?: AxisUnitLabelPosition;
11493
11717
  /**
11494
- * label과의 최소 간격.
11718
+ * label과의 최소 간격.
11495
11719
  *
11496
11720
  * @default 2
11497
11721
  */
@@ -11523,6 +11747,21 @@ interface AxisLineOptions extends AxisItemOptions {
11523
11747
  */
11524
11748
  interface AxisSectorLineOptions extends AxisLineOptions {
11525
11749
  }
11750
+ /**
11751
+ * @enum
11752
+ */
11753
+ declare const _AxisTickLocation: {
11754
+ /**
11755
+ * 축선 바깥쪽(기본)으로 tick이 그려진다.
11756
+ */
11757
+ readonly DEFAULT: "default";
11758
+ /**
11759
+ * 축선 안쪽(플롯 방향)으로 tick이 그려진다.
11760
+ */
11761
+ readonly INSIDE: "inside";
11762
+ };
11763
+ /** @dummy */
11764
+ type AxisTickLocation = typeof _AxisTickLocation[keyof typeof _AxisTickLocation];
11526
11765
  /**
11527
11766
  * 축 tick 표시 방식과 tick 위치 마다 표시되는 선(line) 등에 대한 설정 옵션 기반(base).<br/>
11528
11767
  * 축 종류에 따라 다양한 설정 속성들이 존재한다.
@@ -11541,14 +11780,23 @@ interface AxisSectorLineOptions extends AxisLineOptions {
11541
11780
  * @css 'rct-axis-tick'
11542
11781
  */
11543
11782
  interface AxisTickOptions extends AxisItemOptions {
11783
+ /**
11784
+ * tick line 표시 위치 (inside/default).<br/>
11785
+ * 'inside'이면 축선 안쪽(플롯 방향), 'default'이면 바깥쪽으로 tick이 그려진다.<br/>
11786
+ * {@link https://realchart.co.kr/config/config/base/axis/label#location label.location}과 독립적으로 동작한다.
11787
+ * label이 'inside'여도 tick.location이 'inside'가 아니면 tick은 바깥쪽에 표시된다.<br/>
11788
+ * category 축은 {@link https://realchart.co.kr/config/config/base/axis/tick#position position}이 point/edge용이므로 inside/default는 이 속성으로 지정한다.
11789
+ *
11790
+ * @default 'default'
11791
+ */
11792
+ location?: AxisTickLocation;
11544
11793
  /**
11545
11794
  * @default false
11546
11795
  */
11547
11796
  visible?: boolean;
11548
11797
  /**
11549
11798
  * axis tick line length.<br/>
11550
- * 지정하지 않거나 잘못 지정하면 {@link https://realchart.co.kr/config/config/base/axis/label#position position}이 'inner'이면 0,
11551
- * 아니면 7 픽셀로 적용된다.
11799
+ * 지정하지 않거나 잘못 지정하면 7 픽셀로 적용된다.<br/>
11552
11800
  * 또, {@link visible}이 false이어도 이 설정만큼 공간을 차지한다.
11553
11801
  */
11554
11802
  length?: number;
@@ -11653,15 +11901,15 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
11653
11901
  */
11654
11902
  stepInterval?: number | string | ((args: StepCallbackArgs) => string);
11655
11903
  /**
11656
- * tick들 사이의 대략적인 픽셀 간격아나 간격 목록.<br/>
11904
+ * tick들 사이의 대략적인 픽셀 간격이나 간격 목록.<br/>
11657
11905
  * 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.
11658
11906
  * 다른 설정이 없다면 이 값을 기준으로 tick 개수가 결정된다.<br/>
11659
- * [plot크기, pixels] 목록으로 지정한다. 단일 값으로 지정하면 [[Infiniy, pixels]]으로 설정된다.
11907
+ * [plot크기, pixels] 목록으로 지정한다. 단일 값으로 지정하면 [[Infinity, pixels]]으로 설정된다.
11660
11908
  * plot 영역의 크기가 첫번째 값 이하면 두번째로 지정한 값만큼의 pixels로 계산한다.<br/>
11661
11909
  * 지정하지 않거나 잘못 지정하면 아래 목록으로 기본 적용된다.<br/>
11662
- * 수직축: `[[130, 36], [300, 48], [450, 72], [Infinity, 96]]`<br/>
11663
- * 수평축: `[[400, 48], [700, 72], [Infinity, 96]]`<br/>
11664
- * 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/>
11665
11913
  */
11666
11914
  stepPixels?: number | [number, number][] | ((args: StepCallbackArgs) => [number, number][]);
11667
11915
  /**
@@ -11678,7 +11926,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
11678
11926
  fineStep?: boolean;
11679
11927
  /**
11680
11928
  * {@link stepPixels}가 적용 중일 때,
11681
- * step 간격을 계사하는데 사용되는 단위 배수 목록.<br/>
11929
+ * step 간격을 계산하는데 사용되는 단위 배수 목록.<br/>
11682
11930
  * 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.<br/>
11683
11931
  * 지정하지 않으면 {@link enableDecimals} 설정에 따라,
11684
11932
  * `[1, 2, 5, 10]` 또는 `[1, 2, 2.5, 5, 10]`이 사용된다.
@@ -11700,7 +11948,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
11700
11948
  */
11701
11949
  maxCount?: number;
11702
11950
  /**
11703
- * 명시적으로 설정하는 setp 목록<br/>
11951
+ * 명시적으로 설정하는 step 목록<br/>
11704
11952
  * 최소/최대값을 기준으로 동적으로 목록을 리턴하는 콜백을 지정할 수도 있다.<br/>
11705
11953
  * 양 끝을 NaN으로 지정하면 계산된 min/max로 설정된다.
11706
11954
  * 이 목록이나 콜백이 설정되면 tick 스텝 설정과 관련된 다른 속성들은 무시된다.<br/>
@@ -11729,7 +11977,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
11729
11977
  * {@link baseAxis}가 지정된 경우, true로 지정하면 base 축의 범위와 동일하게
11730
11978
  * 축의 최소/최대가 결정된다.
11731
11979
  *
11732
- * @default 0
11980
+ * @default false
11733
11981
  */
11734
11982
  baseRange?: boolean;
11735
11983
  }
@@ -11748,9 +11996,14 @@ interface ContinuousAxisGridOptions extends AxisGridOptions {
11748
11996
  */
11749
11997
  declare const _AxisLabelLocation: {
11750
11998
  /**
11999
+ * 축선 바깥쪽(기본)에 label을 표시한다.<br/>
12000
+ * {@link https://realchart.co.kr/config/config/base/axis/tick#location tick.location}과 독립적으로 동작한다.
11751
12001
  */
11752
12002
  readonly DEFAULT: "default";
11753
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을 별도로 지정한다.
11754
12007
  */
11755
12008
  readonly INSIDE: "inside";
11756
12009
  };
@@ -11850,6 +12103,10 @@ interface AxisLabelArgs {
11850
12103
  interface AxisLabelOptions extends IconedTextOptions {
11851
12104
  /**
11852
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'
11853
12110
  */
11854
12111
  location?: AxisLabelLocation;
11855
12112
  /**
@@ -11917,7 +12174,7 @@ interface AxisLabelOptions extends IconedTextOptions {
11917
12174
  */
11918
12175
  autoArrange?: AxisLabelArrange;
11919
12176
  /**
11920
- * @default clip
12177
+ * @default 'clip'
11921
12178
  */
11922
12179
  overflow?: ChartTextOverflow;
11923
12180
  /**
@@ -11956,7 +12213,7 @@ interface AxisLabelOptions extends IconedTextOptions {
11956
12213
  * 차트나 분할 경계를 넘어가는 첫번째나 마지막 tick 라벨을 끌어 당겨서 표시할 때 이전 라벨과의 최소 간격.<br/>
11957
12214
  * 이 간격보다 작게 되면 표시하지 않는다.
11958
12215
  *
11959
- * @default 2
12216
+ * @default 12
11960
12217
  */
11961
12218
  overflowGap?: number;
11962
12219
  /**
@@ -12097,11 +12354,16 @@ interface AxisGuideOptions extends AxisItemOptions {
12097
12354
  */
12098
12355
  zindex?: number;
12099
12356
  /**
12357
+ * 분할 pane 열(col) index 또는 index 목록.
12100
12358
  */
12101
12359
  col?: number | number[];
12102
12360
  /**
12361
+ * 분할 pane 행(row) index 또는 index 목록.
12103
12362
  */
12104
12363
  row?: number | number[];
12364
+ /**
12365
+ * 이 grid row가 적용될 추가 값 범위 [min, max].
12366
+ */
12105
12367
  otherRange?: [number, number];
12106
12368
  }
12107
12369
  /**
@@ -12333,7 +12595,7 @@ declare const _AxisPosition: {
12333
12595
  readonly OPPOSITE: "opposite";
12334
12596
  /**
12335
12597
  * @private
12336
- * @deprecated splite 모드로 대체
12598
+ * @deprecated split 모드로 대체
12337
12599
  *
12338
12600
  * 상대 축의 baseValue 지점에 표시된다.<br/>
12339
12601
  * 분할 모드 없이 x축을 좌우로 분할해서 표시할 때 사용할 수 있다.<br/>
@@ -12341,7 +12603,7 @@ declare const _AxisPosition: {
12341
12603
  * [주의] <br/>
12342
12604
  * 1. 축에 연결된 시리즈들이 BarSeries 계열일 때만 가능하다.<br/>
12343
12605
  * 2. 차트의 X축 하나에만 적용할 수 있다. 두번째로 지정된 축의 속성은 'normal'로 적용된다.<br/>
12344
- * 3. 상대 축이 **linear** 가 아니거나 {@link rc.LinearAxis.baseValue baseValue}가 min 보다 작거나 max보다 크면 이 값은 무시되고,
12606
+ * 3. 상대 축이 **linear** 가 아니거나 {@link https://realchart.co.kr/config/config/yAxis/linear#basevalue baseValue}가 min 보다 작거나 max보다 크면 이 값은 무시되고,
12345
12607
  * 'normal'로 적용된다.
12346
12608
  *
12347
12609
  *
@@ -12349,7 +12611,7 @@ declare const _AxisPosition: {
12349
12611
  readonly BASE: "base";
12350
12612
  /**
12351
12613
  * split 모드일 때, 중간 분할 위치에 표시한다.<br/>
12352
- * 마자믹 pane이 아니면 'opposite'와 동일하고,
12614
+ * 마지막 pane이 아니면 'opposite'와 동일하고,
12353
12615
  * 마지막 pane이면 'normal'과 동일하다.
12354
12616
  */
12355
12617
  readonly BETWEEN: "between";
@@ -12564,7 +12826,7 @@ interface AxisOptions extends ChartItemOptions {
12564
12826
  tooltipHeader?: string;
12565
12827
  /**
12566
12828
  * 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
12567
- * '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series/tooltipDetail tooltipDetail} 속성값으로 대체된다. // #1386
12829
+ * '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다. // #1386
12568
12830
  *
12569
12831
  * @default '${series}: ${detail}'
12570
12832
  */
@@ -12573,7 +12835,7 @@ interface AxisOptions extends ChartItemOptions {
12573
12835
  * 축에 포함된 시리즈가 둘 이상일 때,
12574
12836
  * 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
12575
12837
  * 이 속성을 빈 값으로 지정하면 {@link tooltipRow} 속성을 이용해서 표시된다.<br/>
12576
- * '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series/tooltipDetail tooltipDetail} 속성값으로 대체된다. // #1386
12838
+ * '${detail}'은 시리즈의 {@link https://realchart.co.kr/config/config/base/series#tooltipdetail tooltipDetail} 속성값으로 대체된다. // #1386
12577
12839
  *
12578
12840
  * @default `['${series}', '${detail}']`
12579
12841
  */
@@ -12600,7 +12862,7 @@ interface AxisOptions extends ChartItemOptions {
12600
12862
  */
12601
12863
  declare const _CategoryTickPosition: {
12602
12864
  /**
12603
- * x축이면 {@link POINT}, y축이면 {@link EDGE}이다.
12865
+ * 미지정 시 x축은 'point', y축은 'edge'로 적용된다.
12604
12866
  */
12605
12867
  readonly DEFAULT: "default";
12606
12868
  /**
@@ -12619,7 +12881,9 @@ type CategoryTickPosition = typeof _CategoryTickPosition[keyof typeof _CategoryT
12619
12881
  */
12620
12882
  interface CategoryAxisTickOptions extends AxisTickOptions {
12621
12883
  /**
12622
- * tick 표시 위치.<br/>
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'로 적용된다.
12623
12887
  */
12624
12888
  position?: CategoryTickPosition;
12625
12889
  /**
@@ -12653,6 +12917,166 @@ interface CategoryAxisLabelOptions extends AxisLabelOptions {
12653
12917
  fillToCategory?: boolean;
12654
12918
  }
12655
12919
  declare const CategoryAxisType = "category";
12920
+ /**
12921
+ * {@link categoryTree.band band} 세부 설정.
12922
+ */
12923
+ interface CategoryTreeBandOptions {
12924
+ /**
12925
+ * 교차 배경 stripe 표시 여부.<br/>
12926
+ * {@link colors}만 지정한 경우 기본값은 true이다.
12927
+ *
12928
+ * @default true
12929
+ */
12930
+ visible?: boolean;
12931
+ /**
12932
+ * 교차로 적용할 배경색 목록.<br/>
12933
+ * 2개 이상 지정하면 순서대로 반복 적용된다.
12934
+ */
12935
+ colors?: string[];
12936
+ }
12937
+ /**
12938
+ * {@link categoryTree.divider divider} 계층 구분선 설정.
12939
+ */
12940
+ interface CategoryTreeDividerOptions {
12941
+ /**
12942
+ * 계층 구분선 표시 마스터 on/off.<br/>
12943
+ * false이면 {@link edge}, {@link between}, {@link below}의
12944
+ * 기본 상속이 비활성화된다.
12945
+ * 이때 {@link categoryTree.levels levels} 항목에서 개별 구분선 옵션을 true로 지정하면
12946
+ * 해당 레벨만 표시된다.<br/>
12947
+ * {@link categoryTree.levels levels} 항목에서만 false로 지정하면
12948
+ * 해당 레벨의 구분선만 숨긴다.<br/>
12949
+ * 스타일은 {@link style}로 설정한다.
12950
+ *
12951
+ * @default true
12952
+ */
12953
+ visible?: boolean;
12954
+ /**
12955
+ * 계층 구분선 스타일을 설정한다.<br/>
12956
+ * true이면 {@css rct-axis-tree-divider} 기본 스타일이 적용된다.
12957
+ * 스타일 클래스 이름이나 스타일 객체를 지정하면 해당 스타일이 사용되고,
12958
+ * 지정하지 않았을 때는 {@link line} 스타일을 따른다.<br/>
12959
+ * false이면 구분선 스타일을 적용하지 않는다.<br/>
12960
+ * {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행 구분선에만 적용되고,
12961
+ * 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.
12962
+ */
12963
+ style?: SVGStyleOrClass | boolean;
12964
+ /**
12965
+ * 축 시작·끝(첫·마지막 카테고리 경계)에 구분선을 표시한다.<br/>
12966
+ * 가로 축에서는 해당 계층 행 범위 안의 세로선, 세로 축에서는 가로선으로 그려진다.<br/>
12967
+ * {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행에만 적용되고,
12968
+ * 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.<br/>
12969
+ * 계층 라벨 영역 맨 위(가로 축) 가로 구분선은 최상위 {@link edge}와 {@link visible}만
12970
+ * 적용되며 {@link categoryTree.levels levels}에서는 지정할 수 없다.
12971
+ *
12972
+ * @default true
12973
+ */
12974
+ edge?: boolean;
12975
+ /**
12976
+ * 같은 계층 행 안에서 병합된 라벨(그룹) 사이에 구분선을 표시한다.<br/>
12977
+ * {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행에만 적용되고,
12978
+ * 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.
12979
+ *
12980
+ * @default true
12981
+ */
12982
+ between?: boolean;
12983
+ /**
12984
+ * 계층 라벨 행 아래(다음 행과의 경계)에 구분선을 표시한다.<br/>
12985
+ * 가로 축에서는 가로선, 세로 축에서는 세로선으로 그려진다.<br/>
12986
+ * {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행 아래에만 적용되고,
12987
+ * 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.
12988
+ *
12989
+ * @default true
12990
+ */
12991
+ below?: boolean;
12992
+ }
12993
+ /**
12994
+ * {@link categoryTree} 세부 설정.
12995
+ */
12996
+ interface CategoryTreeOptions {
12997
+ /**
12998
+ * 계층 표시 활성화 여부.<br/>
12999
+ * 최상위에서는 계층 기능 전체 on/off에 사용된다.<br/>
13000
+ * {@link categoryTree.levels levels} 항목의 {@link visible}은 해당 계층 행 라벨만 on/off하며,
13001
+ * 상위 {@link categoryTree.visible visible} 값을 상속하지 않는다.
13002
+ *
13003
+ * @default true
13004
+ */
13005
+ visible?: boolean;
13006
+ /**
13007
+ * 계층 구분선 설정.<br/>
13008
+ * true이면 기본 구분선 옵션이 적용되고,
13009
+ * false이면 구분선 표시가 비활성화된다.<br/>
13010
+ * 객체를 지정하면 {@link visible}, {@link style}, {@link edge}, {@link between}, {@link below}를
13011
+ * 개별 설정할 수 있다.<br/>
13012
+ * {@link categoryTree.levels levels} 항목에서 지정하지 않은 항목은 상위 값을 상속한다.
13013
+ *
13014
+ * @default true
13015
+ */
13016
+ divider?: CategoryTreeDividerOptions | boolean;
13017
+ /**
13018
+ * 구분선 기준 그룹마다 축 라벨 영역에 교차 배경색을 적용한다.<br/>
13019
+ * 배경 stripe는 구분선 기준 레벨(merge 그룹 수가 가장 적은 레벨)의 그룹 단위로 적용되며,
13020
+ * 계층 행별이 아니라 라벨 영역 전체 높이(또는 너비)를 한 번에 칠한다.<br/>
13021
+ * true이면 {@css rct-axis-tree-band} 기본 색이 적용되고,
13022
+ * 객체를 지정하면 {@link visible}, {@link colors}를 설정할 수 있다.<br/>
13023
+ * false이면 교차 배경을 표시하지 않는다.<br/>
13024
+ * stripe 기준 레벨은 merge 그룹 수가 가장 적은 레벨이 자동 선택된다.
13025
+ *
13026
+ * @default false
13027
+ */
13028
+ band?: CategoryTreeBandOptions | boolean;
13029
+ /**
13030
+ * {@link categoryField} 순서와 동일한 인덱스로 계층별 설정을 지정한다.<br/>
13031
+ * {@link divider}의 하위 항목은 지정하지 않은 항목이 상위 {@link categoryTree.divider divider} 값을 상속한다.<br/>
13032
+ * {@link visible}과 {@link label}은 레벨 항목 단위로만 적용되며 상위에서 상속하지 않는다.
13033
+ */
13034
+ levels?: CategoryTreeLevelOptions[];
13035
+ }
13036
+ /**
13037
+ * {@link categoryTree.levels.label label} 계층별 라벨 설정.<br/>
13038
+ * {@link xAxis.label label} 중 계층 행에 적용 가능한 항목만 포함한다.
13039
+ */
13040
+ interface CategoryTreeLevelLabelOptions {
13041
+ /**
13042
+ * 계층 행 라벨 회전 각도.<br/>
13043
+ * **'auto'**이면 라벨이 자기 영역(해당 그룹 span)을 가로로 벗어날 때만 -90°(세로로 세워
13044
+ * 아래에서 위로 읽는 방향)로 회전하고, 영역 안에 들어가면 회전하지 않는다(0°).
13045
+ * 세로 축에서는 회전하지 않는다(0°).<br/>
13046
+ * 숫자를 지정하면 해당 각도로 고정 회전한다.<br/>
13047
+ * 지정하지 않으면 {@link xAxis.label label}의 {@link rotation} 값을 따르고,
13048
+ * 그 값도 없으면 'auto'로 동작한다.
13049
+ */
13050
+ rotation?: number | 'auto';
13051
+ /**
13052
+ * 계층 행 라벨 스타일.<br/>
13053
+ * 지정하지 않으면 {@link xAxis.label label} 스타일이 계층 라벨 컨테이너에 적용되고,
13054
+ * 지정하면 해당 행 라벨에만 추가 적용된다.
13055
+ */
13056
+ style?: SVGStyleOrClass;
13057
+ /**
13058
+ * 계층 행 라벨의 블록 내 정렬.<br/>
13059
+ * 지정하지 않으면 {@link xAxis.label label}의 {@link align} 값을 따른다.
13060
+ *
13061
+ * @default 'center'
13062
+ */
13063
+ align?: Align;
13064
+ }
13065
+ /**
13066
+ * {@link categoryTree.levels levels} 계층별 설정.<br/>
13067
+ * 인덱스는 {@link categoryField} 배열 순서와 같다.<br/>
13068
+ * {@link divider}는 해당 계층 행에 우선 적용되며,
13069
+ * 지정하지 않은 항목은 상위 {@link categoryTree.divider divider} 값을 상속한다.<br/>
13070
+ * {@link visible}은 해당 계층 행 라벨 표시만 제어하며 상위에서 상속하지 않는다
13071
+ * (라벨을 숨겨도 구분선 설정은 그대로 적용될 수 있다).<br/>
13072
+ * {@link label}은 해당 계층 행 라벨의 회전·스타일·정렬에만 적용된다.
13073
+ */
13074
+ interface CategoryTreeLevelOptions extends Omit<CategoryTreeOptions, 'levels' | 'band'> {
13075
+ /**
13076
+ * 해당 계층 행 라벨의 회전·스타일·정렬 설정.
13077
+ */
13078
+ label?: CategoryTreeLevelLabelOptions;
13079
+ }
12656
13080
  /**
12657
13081
  * 지정된 카테고리 개수로 축을 분할해서 각 카테고리에 연결된 데이터포인트들이 표시되게 한다.<br/>
12658
13082
  * 카테고리 하나가 1의 축 값(너비)을 갖는다.
@@ -12702,8 +13126,11 @@ interface CategoryAxisOptions extends AxisOptions {
12702
13126
  * 카테고리로 사용되는 dataPoint 속성.<br/>
12703
13127
  * 각 데이터포인트의 이 속성 값 중 문자열값들이 연결된 카테고리 축의 category 목록으로 사용된다.
12704
13128
  * field가 둘 이상일때는 마지막 필드 값이 문자열이어야 한다.
12705
- * 또, x 값 대신 이 속성 값에 해당하는 categroy 값이 데이터포인트의 x값이 된다.<br/>
12706
- * tick에는 마지막 필드로 지정된 문자열이 표시된다.<br/>
13129
+ * 또, x 값 대신 이 속성 값에 해당하는 category 값이 데이터포인트의 x값이 된다.<br/>
13130
+ * {@link categoryTree}가 꺼져 있을 때는 tick·tooltip에 마지막 필드 값이 표시된다.<br/>
13131
+ * {@link categoryTree}가 켜져 있을 때는 배열 순서대로 축에 가장 가까운 행(level 0)부터
13132
+ * 바깥쪽 행으로 쌓이므로, 가장 세분화된 필드를 배열의 <b>첫 번째</b>에 두는 것이 일반적이다
13133
+ * (tick 라벨 대신 계층 행이 표시되며 tooltip {@link https://realchart.co.kr/config/config/base/series series}의 name 등에는 첫 필드 값이 사용된다).<br/>
12707
13134
  * {@link categories}가 지정되면 이 속성은 무시된다.
12708
13135
  */
12709
13136
  categoryField?: (string | number) | (string | number)[];
@@ -12714,6 +13141,23 @@ interface CategoryAxisOptions extends AxisOptions {
12714
13141
  * @default '+'
12715
13142
  */
12716
13143
  categorySeparator?: string;
13144
+ /**
13145
+ * {@link categoryField}가 2개 이상일 때 계층 구조 라벨 및 관련 표시 옵션.<br/>
13146
+ * true이면 {@link categoryTree.visible visible}이 true인 것과 같고 기본값
13147
+ * ({@link categoryTree.divider.edge edge}: true, {@link categoryTree.divider.between between}: true,
13148
+ * {@link categoryTree.divider.below below}: true, {@link categoryTree.band band}: false)이 적용된다.
13149
+ * 각 필드가 하나의 라벨 행이 되며
13150
+ * 입력한 필드 순서대로 축에 가장 가까운 행부터 바깥쪽으로 쌓인다.<br/>
13151
+ * 같은 행에서 값이 연속으로 동일하면 하나의 라벨로 통합되어 해당 구간 전체를 차지한다.<br/>
13152
+ * false이면 {@link categoryTree.visible visible}이 false인 것과 같고, tick에는 마지막 필드 값만 표시된다.<br/>
13153
+ * 빈 객체({})를 지정하면 {@link categoryTree.visible visible}이 true인 것과 같고 위 기본값이 적용된다.<br/>
13154
+ * 객체를 지정하면 {@link visible}, {@link divider}, {@link band}, {@link levels}를 개별 설정할 수 있다.<br/>
13155
+ * 지정하지 않으면 기본값 false이며, 계층 표시 없이 tick에는 마지막 {@link categoryField} 값만 표시된다.<br/>
13156
+ * {@link chart.polar polar} 차트에서는 지원하지 않는다.
13157
+ *
13158
+ * @default false
13159
+ */
13160
+ categoryTree?: CategoryTreeOptions | boolean;
12717
13161
  /**
12718
13162
  * 명시적으로 지정하는 카테고리 목록.<br/>
12719
13163
  * 문자열로 카테고리 항목을 지정하거나,
@@ -12724,7 +13168,12 @@ interface CategoryAxisOptions extends AxisOptions {
12724
13168
  * 이 목록을 지정하지 않으면 축에 연결된 시리즈들로부터 카테고리 목록을 자동 생성한다.
12725
13169
  * 하지만 시리즈들이 모두 사라지는 경우 카테고리 목록 역시 사라지므로,
12726
13170
  * 기대하는 카테고리 목록을 고정 표시하려는 경우 이 목록을 설정하는 것이 좋다.<br/>
12727
- * 단, 축의 범위는 해당 옵션에 의해 설정되지 않는다. 축의 범위는 {@link minValue}, {@link maxValue}나 시리즈에 연결된 데이터에 의해 결정된다. <br/>
13171
+ * 단, 축의 범위는 해당 옵션에 의해 설정되지 않는다. 축의 범위는 {@link minValue}, {@link maxValue}나 시리즈에 연결된 데이터에 의해 결정된다.<br/>
13172
+ * 이 목록을 사용하면 시리즈에서 카테고리를 수집하지 않는다(데이터 수집용 {@link categoryField}는 무시된다).<br/>
13173
+ * {@link categoryTree}와 함께 사용하려면 각 항목의 name(또는 label)에
13174
+ * {@link categorySeparator}로 연결된 복합 키를 지정해야 하며,
13175
+ * 분해 필드 수는 {@link categoryField} 배열 길이와 같아야 한다.
13176
+ * 복합 키 형식이 맞지 않으면 계층 표시는 비활성화된다.
12728
13177
  */
12729
13178
  categories?: (string | object)[];
12730
13179
  /**
@@ -12895,14 +13344,14 @@ interface ContinuousAxisOptions extends AxisOptions {
12895
13344
  baseValue?: number;
12896
13345
  /**
12897
13346
  * {@link minPadding}, {@link maxPadding}이 설정되지 않았을 때 적용되는 기본값이다.<br/>
12898
- * [plot크기, padding] 목록으로 지정한다. 단일 값으로 지정하면 [[Infiniy, padding]]으로 설정된다.
13347
+ * [plot크기, padding] 목록으로 지정한다. 단일 값으로 지정하면 [[Infinity, padding]]으로 설정된다.
12899
13348
  * plot 영역의 크기가 첫번째 값 이하면 두번째로 지정한 값만큼 padding을 적용한다.<br/>
12900
13349
  * 지정하지 않거나 잘못 지정하면 아래 목록이 기본 적용된다.
12901
13350
  * 또, polar이고 x축이면 0으로 적용된다.<br/>
12902
13351
  * `[[170, 0.2], [340, 0.1], [700, 0.05], [Infinity, 0.03]]`<br/>
12903
13352
  * 또, 숫자와 'px'로 끝나는 문자열로 지정하면 위 설정을 무시하고,
12904
13353
  * 적어도 지정한 pixel 정도의 여백이 생길 수 있도록 조정된다.<br/>
12905
- * 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/series#paddingrate paddingRate}가 추가로 적용된다.
13354
+ * 시리즈 별로 설정할 수 있는 {@link https://realchart.co.kr/config/config/base/series#paddingrate paddingRate}가 추가로 적용된다.
12906
13355
  */
12907
13356
  padding?: number | [number, number][] | string;
12908
13357
  /**
@@ -12927,10 +13376,10 @@ interface ContinuousAxisOptions extends AxisOptions {
12927
13376
  maxPadding?: number | [number, number][] | string;
12928
13377
  /**
12929
13378
  * #1375
12930
- * x축일 때, 양 끝 데이터포안트에 추가하는 여백을 데이터포인트 하나가 차지하는 평균 폭에 대한 비율로 지정한다.<br/>
13379
+ * x축일 때, 양 끝 데이터포인트에 추가하는 여백을 데이터포인트 하나가 차지하는 평균 폭에 대한 비율로 지정한다.<br/>
12931
13380
  * 기본값 0.5이면 계산된 크기대로 적용되고, 0이면 여백이 추가되지 않는다.<br/>
12932
13381
  * polar 축일 때는 {@link polarMargin}이 설정데 따라 축 끝(max) 쪽에만 적용된다.<br/>
12933
- * ex) line 시리즈만 있는 경우, 이 값을 0으로 지정하고 {@link paddning}을 0으로 지정하면
13382
+ * ex) line 시리즈만 있는 경우, 이 값을 0으로 지정하고 {@link padding}을 0으로 지정하면
12934
13383
  * 축의 양 끝 데이터포인트가 축의 양 끝에 딱 맞게 표시된다.<br/>
12935
13384
  *
12936
13385
  * @default 0.5
@@ -12958,7 +13407,7 @@ interface ContinuousAxisOptions extends AxisOptions {
12958
13407
  strictMax?: number | string;
12959
13408
  /**
12960
13409
  * 축 시작 위치에 tick 표시 여부.<br/>
12961
- * paddingd이나 base 설정 등은 반영된 상태에서 적용된다.
13410
+ * padding이나 base 설정 등은 반영된 상태에서 적용된다.
12962
13411
  * {@link strictMin}가 설정되면 'value'로 적용된다.<br/>
12963
13412
  * 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
12964
13413
  *
@@ -12967,7 +13416,7 @@ interface ContinuousAxisOptions extends AxisOptions {
12967
13416
  startFit?: AxisFit;
12968
13417
  /**
12969
13418
  * 축 끝 위치에 tick 표시 여부.<br/>
12970
- * paddingd이나 base 설정 등은 반영된 상태에서 적용된다.
13419
+ * padding이나 base 설정 등은 반영된 상태에서 적용된다.
12971
13420
  * {@link strictMax}가 설정되면 무시되고 'value'로 적용된다.<br/>
12972
13421
  * 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
12973
13422
  *
@@ -13275,10 +13724,15 @@ interface ChartTextOptions extends ChartItemOptions {
13275
13724
  * @enum
13276
13725
  */
13277
13726
  declare const _IconPosition: {
13727
+ /** 기본 위치(텍스트 앞). */
13278
13728
  readonly DEFAULT: "default";
13729
+ /** 텍스트 왼쪽. */
13279
13730
  readonly LEFT: "left";
13731
+ /** 텍스트 오른쪽. */
13280
13732
  readonly RIGHT: "right";
13733
+ /** 텍스트 위쪽. */
13281
13734
  readonly TOP: "top";
13735
+ /** 텍스트 아래쪽. */
13282
13736
  readonly BOTTOM: "bottom";
13283
13737
  };
13284
13738
  /** @dummy */
@@ -13287,7 +13741,7 @@ type IconPosition = typeof _IconPosition[keyof typeof _IconPosition];
13287
13741
  */
13288
13742
  interface IconedTextOptions extends ChartTextOptions {
13289
13743
  /**
13290
- * 이이콘 표시 위치<br/>
13744
+ * 아이콘 표시 위치<br/>
13291
13745
  *
13292
13746
  * @default 'default'
13293
13747
  */
@@ -13322,6 +13776,8 @@ interface IconedTextOptions extends ChartTextOptions {
13322
13776
  * null 또는 0으로 지정하면 미지정으로 처리된다.
13323
13777
  * {@link iconWidth}가 지정된 경우 원본 비율로 높이가 결정되고,
13324
13778
  * {@link iconWidth}도 미지정이면 이미지 원본 크기로 표시된다.
13779
+ *
13780
+ * @default 16
13325
13781
  */
13326
13782
  iconHeight?: number;
13327
13783
  /**
@@ -13343,67 +13799,86 @@ interface DataPointCallbackArgs {
13343
13799
  */
13344
13800
  chart: object;
13345
13801
  /**
13802
+ * 콜백이 호출된 시리즈의 공개 모델.
13346
13803
  */
13347
13804
  series: object;
13348
13805
  /**
13806
+ * 시리즈의 전체 데이터포인트 개수.
13349
13807
  */
13350
13808
  count: number;
13351
13809
  /**
13810
+ * 현재 표시 중인 데이터포인트 개수.
13352
13811
  */
13353
13812
  vcount: number;
13354
13813
  /**
13814
+ * 시리즈 y값 최소.
13355
13815
  */
13356
13816
  yMin: number;
13357
13817
  /**
13818
+ * 시리즈 y값 최대.
13358
13819
  */
13359
13820
  yMax: number;
13360
13821
  /**
13822
+ * 시리즈 x값 최소.
13361
13823
  */
13362
13824
  xMin: number;
13363
13825
  /**
13826
+ * 시리즈 x값 최대.
13364
13827
  */
13365
13828
  xMax: number;
13366
13829
  /**
13830
+ * 시리즈 z값 최소.
13367
13831
  */
13368
13832
  zMin: number;
13369
13833
  /**
13834
+ * 시리즈 z값 최대.
13370
13835
  */
13371
13836
  zMax: number;
13372
13837
  /**
13838
+ * 데이터포인트 index.
13373
13839
  */
13374
13840
  index: number;
13375
13841
  /**
13842
+ * 표시 중인 데이터포인트 기준 index.
13376
13843
  */
13377
13844
  vindex: number;
13378
13845
  /**
13846
+ * 데이터포인트 원본 x 필드 값.
13379
13847
  */
13380
13848
  x: any;
13381
13849
  /**
13850
+ * 데이터포인트 원본 y 필드 값.
13382
13851
  */
13383
13852
  y: any;
13384
13853
  /**
13854
+ * 데이터포인트 원본 z 필드 값.
13385
13855
  */
13386
13856
  z: any;
13387
13857
  /**
13858
+ * 축 좌표로 변환된 x 값.
13388
13859
  */
13389
13860
  xValue: any;
13390
13861
  /**
13862
+ * 축 좌표로 변환된 y 값.
13391
13863
  */
13392
13864
  yValue: any;
13393
13865
  /**
13866
+ * 축 좌표로 변환된 z 값.
13394
13867
  */
13395
13868
  zValue: any;
13396
13869
  /**
13870
+ * 라벨 표시용 index.
13397
13871
  */
13398
13872
  labelIndex: number;
13399
13873
  /**
13874
+ * 데이터 원본 객체.
13400
13875
  */
13401
13876
  source: any;
13402
13877
  }
13403
13878
 
13404
13879
  /**
13405
13880
  * 어노테이션 배치 기준.<br/>
13406
- * [주의]body에 설정된 annoation에는 적용되지 않는다.
13881
+ * [주의]body에 설정된 annotation에는 적용되지 않는다.
13407
13882
  * @enum
13408
13883
  */
13409
13884
  declare const _AnnotationScope: {
@@ -13423,7 +13898,13 @@ declare const _AnnotationScope: {
13423
13898
  /** @dummy */
13424
13899
  type AnnotationScope = typeof _AnnotationScope[keyof typeof _AnnotationScope];
13425
13900
  interface AnnotationAnimationOptions {
13901
+ /**
13902
+ * 애니메이션 종류.
13903
+ */
13426
13904
  type: string;
13905
+ /**
13906
+ * 애니메이션 지속 시간(밀리초).
13907
+ */
13427
13908
  duration?: number;
13428
13909
  }
13429
13910
  /**
@@ -13449,6 +13930,8 @@ interface AnnotationClickArgs {
13449
13930
  */
13450
13931
  interface AnnotationOptions extends ChartItemOptions {
13451
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} 참조.
13452
13935
  */
13453
13936
  type?: AnnotationType;
13454
13937
  /**
@@ -13460,8 +13943,6 @@ interface AnnotationOptions extends ChartItemOptions {
13460
13943
  /**
13461
13944
  * 어노테이션 이름.<br/>
13462
13945
  * 동적으로 어노테이션을 다루기 위해서는 반드시 지정해야 한다.
13463
- *
13464
- * @default false
13465
13946
  */
13466
13947
  name?: string;
13467
13948
  /**
@@ -13469,7 +13950,7 @@ interface AnnotationOptions extends ChartItemOptions {
13469
13950
  */
13470
13951
  row?: number;
13471
13952
  /**
13472
- * 분할 모드일 때 이 속성과 {@link row}가 모두 지정되면 annotation이 표시될 pane의 수직 index.<br/>
13953
+ * 분할 모드일 때 이 속성과 {@link row}가 모두 지정되면 annotation이 표시될 pane의 수평 index.<br/>
13473
13954
  */
13474
13955
  col?: number;
13475
13956
  /**
@@ -13486,12 +13967,12 @@ interface AnnotationOptions extends ChartItemOptions {
13486
13967
  /**
13487
13968
  * 수직 배치.<br/>
13488
13969
  *
13489
- * @default top
13970
+ * @default 'top'
13490
13971
  */
13491
13972
  verticalAlign?: VerticalAlign;
13492
13973
  /**
13493
13974
  * {@link align}과 {@link verticalAlign}으로 지정된 위치에서 실제 표시될 위치의 수평 간격.<br/>
13494
- * 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템으 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
13975
+ * 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템의 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
13495
13976
  * 또, {@link anchor}가 지정된 경우 **'0.5w'** 등으로 이 어노테이션의 너비를 기준으로 한 크기로 지정할 수 있다.
13496
13977
  *
13497
13978
  * @default 0
@@ -13499,8 +13980,8 @@ interface AnnotationOptions extends ChartItemOptions {
13499
13980
  offsetX?: number | string;
13500
13981
  /**
13501
13982
  * {@link align}과 {@link verticalAlign}으로 지정된 위치에서 실제 표시될 위치의 수직 간격.<br/>
13502
- * 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템으 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
13503
- * 또, {@link anchor}가 지정된 경우 **'0.5h'** 처럼 이 어노테이션의 너비를 기준으로 한 크기로 지정할 수 있다.
13983
+ * 값이 양수일 때, {@link anchor}가 지정된 경우 anchor 아이템의 밖으로 멀어지고, 아니면 영역 경계 안쪽으로 멀어진다.
13984
+ * 또, {@link anchor}가 지정된 경우 **'0.5h'** 처럼 이 어노테이션의 높이를 기준으로 한 크기로 지정할 수 있다.
13504
13985
  *
13505
13986
  * @default 0
13506
13987
  */
@@ -13512,7 +13993,7 @@ interface AnnotationOptions extends ChartItemOptions {
13512
13993
  rotation?: number;
13513
13994
  /**
13514
13995
  * 어노테이션 배치 기준.<br/>
13515
- * [주의]body에 설정된 annoation에는 적용되지 않는다.
13996
+ * [주의]body에 설정된 annotation에는 적용되지 않는다.
13516
13997
  *
13517
13998
  * @default 'chart'
13518
13999
  */
@@ -13567,12 +14048,12 @@ interface AnnotationOptions extends ChartItemOptions {
13567
14048
  y2?: number | Date;
13568
14049
  /**
13569
14050
  * Annotation 너비.<br/>
13570
- * 픽셀 단위의 고정 값이나, plot 영역에 대한 상태 크기롤 지정할 수 있다.
14051
+ * 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
13571
14052
  */
13572
14053
  width?: PercentSize;
13573
14054
  /**
13574
14055
  * Annotation 높이.<br/>
13575
- * 픽셀 단위의 고정 값이나, plot 영역에 대한 상태 크기롤 지정할 수 있다.
14056
+ * 픽셀 단위의 고정 값이나, plot 영역에 대한 상대 크기로 지정할 수 있다.
13576
14057
  */
13577
14058
  height?: PercentSize;
13578
14059
  }
@@ -13624,7 +14105,7 @@ declare const _ShapeAnnotationShape: {
13624
14105
  */
13625
14106
  readonly CIRCLE: "circle";
13626
14107
  /**
13627
- * 다아이몬드
14108
+ * 다이아몬드
13628
14109
  */
13629
14110
  readonly DIAMOND: "diamond";
13630
14111
  /**
@@ -13782,7 +14263,7 @@ interface TextAnnotationOptions extends AnnotationOptions {
13782
14263
  * 타이틀을 가로 또는 세로로 배치할지 여부와 블록의 진행 방향을 지정한다.<br/>
13783
14264
  * 'vertical-lr' 또는 'vertical-rl'로 설정하면 수직 쓰기가 적용되며,
13784
14265
  * 이때 한글 등 동아시아 문자는 글자 단위, 영문 등 기타 문자는 단어 단위로 배치된다.
13785
- * {@link textOrinetation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
14266
+ * {@link textOrientation}을 'upright'로 지정하면 영문도 글자 단위로 세로 배치되지만,
13786
14267
  * writingMode를 지원하지 않는 브라우저에서도 모든 문자를 글자 단위로 일관되게 세로 표시하고자 할 때는
13787
14268
  * 신규 속성인 `vertical`을 사용할 수 있다. 단, `vertical` 속성에서는 `<br>`과 같은 줄바꿈 기능이 적용되지 않는다.
13788
14269
  */
@@ -15405,6 +15886,16 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
15405
15886
  annotationByDom(elt: Element): AnnotationView;
15406
15887
  findSeries(ser: Series): SeriesView;
15407
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;
15408
15899
  getButton(dom: Element): ButtonElement;
15409
15900
  buttonClicked(button: ButtonElement): void;
15410
15901
  addFeedback(view: RcElement): void;
@@ -15463,6 +15954,8 @@ declare class AxisView extends ChartElement<Axis> {
15463
15954
  static readonly AXIS_CLASS = "rct-axis";
15464
15955
  static readonly LINE_CLASS = "rct-axis-line";
15465
15956
  static readonly TICK_CLASS = "rct-axis-tick";
15957
+ /** 계층 라벨 행 사이 간격(px). */
15958
+ static readonly HIERARCHY_ROW_GAP = 2;
15466
15959
  static readonly MINOR_TICK_CLASS = "rct-axis-minor-tick";
15467
15960
  _simpleMode: boolean;
15468
15961
  private _lineView;
@@ -15482,6 +15975,15 @@ declare class AxisView extends ChartElement<Axis> {
15482
15975
  private _tickGap;
15483
15976
  private _labelSize;
15484
15977
  private _labelRowPts;
15978
+ private _categoryTreeBandContainer;
15979
+ private _categoryTreeBandViews;
15980
+ private _categoryTreeLabelContainer;
15981
+ private _categoryTreeLabelViews;
15982
+ private _categoryTreeDividerContainer;
15983
+ private _categoryTreeDividerViews;
15984
+ private _categoryTreeLevelSizes;
15985
+ private _categoryTreeLevelOffsets;
15986
+ private _categoryTreeExtraSize;
15485
15987
  _guideViews: AxisGuideView[];
15486
15988
  _frontGuideViews: AxisGuideView[];
15487
15989
  _crosshairView: CrosshairFlagView;
@@ -15513,6 +16015,22 @@ declare class AxisView extends ChartElement<Axis> {
15513
16015
  private $_prepareTickMarks;
15514
16016
  private $_prepareMinorTickMarks;
15515
16017
  private _prepareLabel;
16018
+ /**
16019
+ * 계층 행 라벨 회전 각도를 확정한다.<br/>
16020
+ * 'auto'이면 가로 축에서 라벨 폭이 자기 영역(span)을 벗어날 때만 -90°(아래에서 위로 읽는 방향)로
16021
+ * 회전하고 그 외에는 0°이다(세로 축은 항상 0°). svg를 빌드한 뒤 bbox로 판정하므로 v는 빌드된 상태여야 한다.
16022
+ */
16023
+ private $_resolveCategoryTreeRotation;
16024
+ /** 계층 라벨: 일반 tick 라벨(_prepareLabel)과 동일하게 layout·background 초기화를 수행한다. */
16025
+ private $_prepareCategoryTreeLabel;
16026
+ private $_isCategoryTreeSpanVisible;
16027
+ private $_equalSVGStyleOrClass;
16028
+ /**
16029
+ * 수직 축 계층 라벨을 (열 중심, 행 중심)에 정확히 배치한다.
16030
+ * 회전 원점을 bbox 중심에 두면 회전이 중심을 보존하므로, rotation 각도와 무관하게
16031
+ * 라벨이 자기 레벨 열·카테고리 행 안에 중앙 정렬된다.
16032
+ */
16033
+ private $_applyLabelRotationVert;
15516
16034
  private $_prepareLabels;
15517
16035
  private $_getRows;
15518
16036
  private $_getStep;
@@ -15522,6 +16040,26 @@ declare class AxisView extends ChartElement<Axis> {
15522
16040
  private $_checkOverlappedVert2;
15523
16041
  private _prevWidth;
15524
16042
  private $_measureLabelsVert;
16043
+ private $_ensureCategoryTreeViews;
16044
+ private $_hideCategoryTreeViews;
16045
+ private $_measureCategoryTree;
16046
+ private $_syncCategoryTreeMeasure;
16047
+ private $_layoutCategoryTreeHorz;
16048
+ private $_getBandY;
16049
+ private $_getLevelBoundaryY;
16050
+ private $_getLevelBoundaryX;
16051
+ private $_getLevelColumnCenterX;
16052
+ private $_getLevelRowYRange;
16053
+ private $_getLevelRowXRange;
16054
+ private $_countCategoryTreeDividerLines;
16055
+ private $_prepareCategoryTreeBands;
16056
+ private $_getCategoryTreeLabelXBounds;
16057
+ private $_getCategoryTreeEdgeYBounds;
16058
+ private $_applyCategoryTreeDividerLine;
16059
+ private $_layoutCategoryTreeBandsHorz;
16060
+ private $_layoutCategoryTreeBandsVert;
16061
+ private $_layoutCategoryTreeDividers;
16062
+ private $_layoutCategoryTreeVert;
15525
16063
  private $_layoutLabelsHorz;
15526
16064
  private $_layoutLabelsVert;
15527
16065
  private $_layoutUnitHorz;
@@ -15618,6 +16156,7 @@ declare class CreditView extends ChartElement<Credits> {
15618
16156
  declare abstract class PaneContainer extends LayerElement {
15619
16157
  abstract get bodies(): BodyView[];
15620
16158
  abstract bodyViewOf(dom: Element): BodyView;
16159
+ abstract axisViewOf(axis: Axis): AxisView;
15621
16160
  abstract prepare(doc: Document, model: ISplit): void;
15622
16161
  abstract measure(doc: Document, model: ISplit, width: number, height: number, phase: number): any;
15623
16162
  abstract layout(): void;
@@ -15687,6 +16226,18 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
15687
16226
  bodyOf(elt: Element): BodyView;
15688
16227
  pointerMoved(x: number, y: number, target: EventTarget): void;
15689
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;
15690
16241
  getAxis(axis: Axis): AxisView;
15691
16242
  getButton(dom: Element): ButtonElement;
15692
16243
  buttonClicked(button: ButtonElement): void;
@@ -15904,6 +16455,38 @@ declare class LineSeriesPoint extends DataPoint {
15904
16455
  declare class LineSeriesMarker extends SeriesMarker<LineSeriesMarkerOptions> {
15905
16456
  static defaults: LineSeriesMarkerOptions;
15906
16457
  }
16458
+ /**
16459
+ * Line 시리즈 양 끝 arrow 마커 설정 모델.
16460
+ */
16461
+ declare class LineSeriesArrow extends SeriesMarker<LineSeriesArrowOptions> {
16462
+ series: LineSeries;
16463
+ static defaults: LineSeriesArrowOptions;
16464
+ static readonly STYLE_ISOLATION: {
16465
+ stroke: string;
16466
+ strokeDasharray: string;
16467
+ strokeWidth: string;
16468
+ };
16469
+ /** marker._style(raw 옵션)과 달리 prepare 시 fill 기본값·stroke 격리가 적용된 resolved style. */
16470
+ private _runStyle;
16471
+ constructor(series: LineSeries);
16472
+ getPosition(): LineArrowPosition;
16473
+ getShape(): Shape;
16474
+ getRadius(): number;
16475
+ getRotation(): LineArrowRotation;
16476
+ getArrowStyleOverrides(style: SVGStyleOrClass): Partial<SVGStyles>;
16477
+ getArrowStyle(p?: DataPoint): SVGStyleOrClass;
16478
+ buildArrowSlots(pts: LineSeriesPoint[]): {
16479
+ index: number;
16480
+ at: 'start' | 'end';
16481
+ }[];
16482
+ calcAutoAngle(pts: LineSeriesPoint[], index: number, at: 'start' | 'end'): number;
16483
+ calcSegmentAngle(p0: IPointPos, p1: IPointPos, lineType: LineType, stepDir: LineStepDirection, at: 'start' | 'end'): number;
16484
+ calcArrowAngle(pts: LineSeriesPoint[], index: number, at: 'start' | 'end'): number;
16485
+ protected _doPrepareRender(chart: IChart): void;
16486
+ private $_buildRunStyle;
16487
+ private $_applyStyleIsolation;
16488
+ private $_neighborIndex;
16489
+ }
15907
16490
  declare class LinePointLabel extends DataPointLabel<LinePointLabelOptions> {
15908
16491
  static readonly ALIGN_GAP = 4;
15909
16492
  static defaults: LinePointLabelOptions;
@@ -15969,9 +16552,11 @@ declare class LineSeries<OP extends LineSeriesOptions = LineSeriesOptions> exten
15969
16552
  static readonly type: string;
15970
16553
  static defaults: LineSeriesOptions;
15971
16554
  private _flag;
16555
+ private _arrow;
15972
16556
  protected _base: number;
15973
16557
  protected _doInit(op: OP): void;
15974
16558
  get flag(): LineSeriesFlag;
16559
+ get arrow(): LineSeriesArrow;
15975
16560
  backDir(): LineStepDirection;
15976
16561
  isConnectEnds(based: boolean, cyclic: boolean): boolean;
15977
16562
  isMarker(): boolean;
@@ -17010,6 +17595,7 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
17010
17595
  private _rangeClips;
17011
17596
  protected _polar: IPolar;
17012
17597
  _tester: PathElement;
17598
+ private _arrowViews;
17013
17599
  constructor(doc: Document, styleName: string);
17014
17600
  getClipContainer(): RcElement;
17015
17601
  protected _getPointPool(): PointViewPool;
@@ -17053,6 +17639,10 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
17053
17639
  protected _drawCurves(polar: IPolar, lines: PointLine[], sb: PathBuilder): void;
17054
17640
  protected _buildAreas(lines: PointLine[], t1: LineType, t2?: LineType): string;
17055
17641
  setHoverStyle(pv: RcElement): void;
17642
+ protected _doLayout(): void;
17643
+ private $_layoutArrows;
17644
+ private $_applyArrowStyle;
17645
+ private $_isolateClassArrowStrokeDasharray;
17056
17646
  }
17057
17647
  declare class LineSeriesView extends LineSeriesBaseView<LineSeries> {
17058
17648
  static readonly CLASS = "rct-line-series";
@@ -17773,4 +18363,4 @@ declare const createChart: typeof Globals.createChart;
17773
18363
  declare const createData: typeof Globals.createData;
17774
18364
  declare const setLicenseKey: typeof Globals.setLicenseKey;
17775
18365
 
17776
- 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, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, 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 };