realchart 1.4.4 → 1.4.6

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
@@ -194,6 +194,7 @@ declare function toStr(value: any): string;
194
194
  * @private
195
195
  */
196
196
  declare function pixel(v: number): string;
197
+ type PathValue = string | number;
197
198
  type Path = string | any[];
198
199
  /**
199
200
  * 123, '10%' 형식으로 크기를 지정한다.
@@ -903,16 +904,15 @@ interface ImageAnnotationOptions extends AnnotationOptions {
903
904
  */
904
905
  type?: typeof ImageAnnotationType;
905
906
  /**
906
- * @override
907
+ * @append
907
908
  *
908
- * true로 설정되고 {@link url}이 설정된 경우에만 표시된다.
909
+ * true로 설정되고 {@link imageUrl}이 설정된 경우에만 표시된다.<br/>
909
910
  *
910
911
  * @default true
911
912
  */
912
913
  visible?: boolean;
913
914
  /**
914
915
  * 이미지 경로.
915
- *
916
916
  */
917
917
  imageUrl?: string;
918
918
  }
@@ -982,15 +982,15 @@ interface ShapeAnnotationOptions extends AnnotationOptions {
982
982
  */
983
983
  type?: typeof ShapeAnnotationType;
984
984
  /**
985
- * @override
985
+ * @append
986
986
  *
987
- * 64
987
+ * @default 64
988
988
  */
989
989
  width?: PercentSize;
990
990
  /**
991
- * @override
991
+ * @append
992
992
  *
993
- * 64
993
+ * @default 64
994
994
  */
995
995
  height?: PercentSize;
996
996
  /**
@@ -1000,7 +1000,7 @@ interface ShapeAnnotationOptions extends AnnotationOptions {
1000
1000
  */
1001
1001
  shape?: ShapeAnnotationShape;
1002
1002
  /**
1003
- * Shape path.
1003
+ * shape svg path.<br/>
1004
1004
  * 이 속성이 지정되면 {@link shape}는 무시된다.
1005
1005
  */
1006
1006
  path?: string;
@@ -1024,44 +1024,37 @@ declare const TextAnnotationType = "text";
1024
1024
  *
1025
1025
  */
1026
1026
  interface TextAnnotationOptions extends AnnotationOptions {
1027
- /**
1028
- */
1027
+ /** @dummy */
1029
1028
  type?: typeof TextAnnotationType;
1030
1029
  /**
1031
- * @override
1030
+ * @append
1032
1031
  *
1033
- * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.
1032
+ * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.<br/>
1034
1033
  *
1035
1034
  * @default true
1036
1035
  */
1037
1036
  visible?: boolean;
1038
1037
  /**
1039
- * 표시할 텍스트.
1038
+ * 표시할 텍스트.<br/>
1040
1039
  *
1041
1040
  * @default 'Text'
1042
1041
  */
1043
1042
  text?: string;
1044
1043
  /**
1045
- * {@link text}에 동적으로 전달되는 값이 숫자일 때 사용되는 표시 형식.
1046
- *
1044
+ * {@link text}에 동적으로 전달되는 값이 숫자일 때 사용되는 표시 형식.<br/>
1047
1045
  */
1048
1046
  numberFormat?: string;
1049
1047
  /**
1050
- * {@link text}에 동적으로 전달되는 값이 Date일 때 사용되는 표시 형식.
1051
- *
1048
+ * {@link text}에 동적으로 전달되는 값이 Date일 때 사용되는 표시 형식.<br/>
1052
1049
  */
1053
1050
  timeFormat?: string;
1054
1051
  /**
1055
- * 텍스트를 가로 또는 세로로 배치할지 여부와 블록이 진행되는 방향을 지정한다.
1056
- *
1057
- *
1052
+ * 텍스트를 가로 또는 세로로 배치할지 여부와 블록이 진행되는 방향을 지정한다.<br/>
1058
1053
  */
1059
1054
  writingMode?: WritingMode;
1060
1055
  /**
1061
- * 텍스트 문자 방향을 지정한다.
1056
+ * 텍스트 문자 방향을 지정한다.<br/>
1062
1057
  * 세로 모드의 텍스트에만 적용된다.
1063
- *
1064
- *
1065
1058
  */
1066
1059
  textOrientation?: TextOrientation;
1067
1060
  }
@@ -1453,6 +1446,7 @@ declare class RcElement extends RcObject {
1453
1446
  insertElement(doc: Document, tag: string, before: Node): SVGElement;
1454
1447
  remove(): RcElement;
1455
1448
  getAttr(attr: string): any;
1449
+ removeAttr(attr: string): this;
1456
1450
  setAttr(attr: string, value: any): RcElement;
1457
1451
  setAttrEx(attr: string, value: any): RcElement;
1458
1452
  setAttrs(attrs: any): RcElement;
@@ -1474,7 +1468,7 @@ declare class RcElement extends RcObject {
1474
1468
  isDomAnimating(): boolean;
1475
1469
  rotate(angle: number): RcElement;
1476
1470
  internalRotate(angle: number): void;
1477
- scale(s: number): RcElement;
1471
+ scale(sx: number, sy?: number): RcElement;
1478
1472
  trans(x: number, y: number): RcElement;
1479
1473
  transp(p: Point): RcElement;
1480
1474
  transEx(x: number, y: number, duration?: number, invalidate?: boolean): RcElement;
@@ -1571,8 +1565,8 @@ declare class ClipRectElement extends ClipElement {
1571
1565
  }
1572
1566
  declare class PathElement extends RcElement {
1573
1567
  private _path;
1574
- constructor(doc: Document, styleName?: string, path?: Path);
1575
- path(): string;
1568
+ constructor(doc: Document, styleName?: string);
1569
+ get path(): string;
1576
1570
  setPath(path: Path): PathElement;
1577
1571
  }
1578
1572
  declare class ClipCircleElement extends ClipElement {
@@ -1623,6 +1617,36 @@ declare const _Shapes: {
1623
1617
  };
1624
1618
  /** @dummy */
1625
1619
  type Shape = typeof _Shapes[keyof typeof _Shapes];
1620
+ declare class SvgShapes {
1621
+ static line(x1: number, y1: number, x2: number, y2: number): PathValue[];
1622
+ static polygon(...pts: number[]): PathValue[];
1623
+ static box(x1: number, y1: number, x2: number, y2: number): PathValue[];
1624
+ static rect(r: IRect): PathValue[];
1625
+ static rectangle(x: number, y: number, width: number, height: number): PathValue[];
1626
+ static bar(x: number, y: number, width: number, height: number, rTop: number, rBottom: number): PathValue[];
1627
+ static square(x: number, y: number, width: number, height: number): PathValue[];
1628
+ static circle(cx: number, cy: number, rd: number): PathValue[];
1629
+ static isCircled(angle: number): boolean;
1630
+ static arc(cx: number, cy: number, rx: number, ry: number, start: number, end: number, clockwise: boolean, close?: boolean): PathValue[];
1631
+ static sector(cx: number, cy: number, rx: number, ry: number, rInner: number, start: number, end: number, clockwise: boolean): PathValue[];
1632
+ static arc3d(cx: number, cy: number, rx: number, ry: number, depth: number, start: number, end: number, clockwise: boolean, ret?: {
1633
+ x1: number;
1634
+ y1: number;
1635
+ x2: number;
1636
+ y2: number;
1637
+ }): PathValue[];
1638
+ static arc3dInner(cx: number, cy: number, rx: number, ry: number, depth: number, start: number, end: number, clockwise: boolean, ret?: {
1639
+ x1: number;
1640
+ y1: number;
1641
+ x2: number;
1642
+ y2: number;
1643
+ }): PathValue[];
1644
+ static diamond(x: number, y: number, w: number, h: number): PathValue[];
1645
+ static triangle(x: number, y: number, w: number, h: number): PathValue[];
1646
+ static itriangle(x: number, y: number, w: number, h: number): PathValue[];
1647
+ static star(x: number, y: number, w: number, h: number): PathValue[];
1648
+ static setShape(target: PathElement, shape: Shape, rx: number, ry: number): void;
1649
+ }
1626
1650
 
1627
1651
  /**
1628
1652
  * 시리즈 데이터포인트 {@link https://realchart.co.kr/config/config/base/series/pointLabel 라벨} 표시 위치.<br/>
@@ -1685,9 +1709,9 @@ type PointLabelPosition = typeof _PointLabelPosition[keyof typeof _PointLabelPos
1685
1709
  */
1686
1710
  interface DataPointLabelOptions extends IconedTextOptions {
1687
1711
  /**
1688
- * @override
1712
+ * @append
1689
1713
  *
1690
- * 이 속성값이 true이거나 {@link visibleCallback}이 설정되면 표시된다.
1714
+ * 이 속성값이 true이거나 {@link visibleCallback}이 설정되면 표시된다.<br/>
1691
1715
  *
1692
1716
  * @default undefined
1693
1717
  */
@@ -1830,7 +1854,8 @@ type TrendLineType = typeof _TrendLineType[keyof typeof _TrendLineType];
1830
1854
  */
1831
1855
  interface TrendlineOptions extends ChartItemOptions {
1832
1856
  /**
1833
- * @override
1857
+ * @append
1858
+ *
1834
1859
  * @default false
1835
1860
  */
1836
1861
  visible?: boolean;
@@ -1905,28 +1930,35 @@ interface SeriesOptions extends ChartItemOptions {
1905
1930
  */
1906
1931
  yAxis?: string | number;
1907
1932
  /**
1908
- * json 객체나 배열로 전달되는 데이터포인트 정보에서 x 값을 지정하는 속성명이나 인덱스.<br/>
1909
- * undefined이면, data point의 값이 array일 때는 0, 객체이면 'x'.
1933
+ * json 객체나 배열로 전달되는 데이터포인트 정보에서 x 값을 지정하는 속성명이나 인덱스 또는,
1934
+ * 전달되는 json 객체에서 x 값을 리턴하는 함수.<br/>
1935
+ * 지정하지 않거나(undefined) 값이 undefined이면, , 데이터포인트의 값이 array일 때는 0, 객체이면 'x' 속성 값이 사용된다..
1910
1936
  */
1911
- xField?: string | number;
1937
+ xField?: string | number | Function;
1912
1938
  /**
1913
- * json 객체나 배열로 전달되는 데이터포인트 정보에서 y 값을 지정하는 속성명이나 인덱스.<br/>
1914
- * undefined이면, data point의 값이 array일 때는 1, 객체이면 'y'.
1939
+ * json 객체나 배열로 전달되는 데이터포인트 정보에서 y 값을 지정하는 속성명이나 인덱스 또는,
1940
+ * 전달되는 json 객체에서 y 값을 리턴하는 함수.<br/>
1941
+ * 지정하지 않거나(undefined) 값이 undefined이면, , 데이터포인트의 값이 array일 때는 1, 객체이면 'y' 속성 값이 사용된다.
1915
1942
  */
1916
1943
  yField?: string | number | Function;
1917
1944
  /**
1918
- * json 객체나 배열로 전달되는 데이터포인트 정보에서 z 값을 지정하는 속성명이나 인덱스.<br/>
1919
- * undefined이면, data point의 값이 array일 때는 2, 객체이면 'z'.
1945
+ * json 객체나 배열로 전달되는 데이터포인트 정보에서 z 값을 지정하는 속성명이나 인덱스 또는,
1946
+ * 전달되는 json 객체에서 z 값을 리턴하는 함수.<br/>
1947
+ * 지정하지 않거나(undefined) 값이 undefined이면, , 데이터포인트의 값이 array일 때는 2, 객체이면 'z' 속성 값이 사용된다.
1920
1948
  */
1921
1949
  zField?: string | number | Function;
1922
1950
  /**
1923
- * undefined이면, data point의 값이 객체일 'color'.
1951
+ * json 객체나 배열로 전달되는 데이터포인트 정보에서 color 값을 지정하는 속성명이나 인덱스 또는,
1952
+ * 전달되는 json 객체에서 color 값을 리턴하는 함수.<br/>
1953
+ * 지정하지 않거나(undefined) 값이 undefined이면, , 데이터포인트의 값이 객체일 때 'color' 속성 값이 사용된다.
1924
1954
  */
1925
- colorField?: string;
1955
+ colorField?: string | number | Function;
1926
1956
  /**
1927
- * undefined이면, data point의 값이 객체일 'icon'.
1957
+ * json 객체나 배열로 전달되는 데이터포인트 정보에서 icon 값을 지정하는 속성명이나 인덱스 또는,
1958
+ * 전달되는 json 객체에서 icon 값을 리턴하는 함수.<br/>
1959
+ * 지정하지 않거나(undefined) 값이 undefined이면, 데이터포인트의 값이 객체일 때 'icon' 속성 값이 사용된다.
1928
1960
  */
1929
- iconField?: string;
1961
+ iconField?: string | number | Function;
1930
1962
  /**
1931
1963
  * 데이터포인터들을 생성하는 데 사용되는 값 목록.
1932
1964
  * 단일 값을 지정할 경우 배열로 처리됩니다. 단, string 타입은 향후 버전에서 사용할 예정이며, 현재는 data를 지정하지 않은 경우와 동일하게 동작한다.
@@ -1964,6 +1996,7 @@ interface SeriesOptions extends ChartItemOptions {
1964
1996
  /**
1965
1997
  * 데이터 포인트별 색들을 지정한다.<br/>
1966
1998
  * 색 배열로 지정하거나, 'colors' asset으로 등록된 이름을 지정할 수 있다.<br/>
1999
+ * 또, 'palette-name@palette'나 'palette-name@pal' 형식으로 설정해서 라이브러리가 기본 css로 제공하는 palette 색상 배열을 사용할 수 있다.<br/>
1967
2000
  * {@link pointStyleCallback}으로 설정된 색상이나 데이터포인트별로 지정한 색상이 이 속성으로 설정한 색상보다 우선한다.
1968
2001
  */
1969
2002
  pointColors?: string[] | string;
@@ -1987,6 +2020,18 @@ interface SeriesOptions extends ChartItemOptions {
1987
2020
  * 또, 값을 지정하지 않으면 버블시리즈는 최대한 버블들이 표시되도록 한다.
1988
2021
  */
1989
2022
  noClip?: boolean;
2023
+ /**
2024
+ * @ignore
2025
+ * 이 시리즈나 데이터포인트들을 표시할 legend를 지정한다.<br/>
2026
+ * 존재하지 않은 legend를 지정하면 기본 legend에 표시한다.
2027
+ */
2028
+ legend?: string;
2029
+ /**
2030
+ * 이 시리즈나 데이터포인트들이 legend에 표시될 때,
2031
+ * 이 속성에 해당하는 값이 동일하면 중복 표시되지 않는다.<br/>
2032
+ * 또, 해당 legend 항목에 대해 이 키로 연결된 모든 시리즈나 데이터포인트들이 반응한다.
2033
+ */
2034
+ legendKey?: string;
1990
2035
  /**
1991
2036
  * 명시적 false로 지정하면 legend에 표시하지 않는다.
1992
2037
  */
@@ -2063,7 +2108,7 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
2063
2108
  * 시리즈가 그룹에 포함되지 않거나,
2064
2109
  * 포함된 그룹의 layout이 {@link SeriesGroupLayout.DEFAULT DEFAULT}이거나 특별히 설정되지 않아서,
2065
2110
  * 그룹에 포함된 시리즈들의 data point가 옆으로 나열되어 표시될 때,
2066
- * 포인트 표시 영역 내에서 이 시리즈의 포인트가 차지하는 영역의 상대 크기.
2111
+ * 포인트 표시 영역 내에서 이 시리즈의 포인트가 차지하는 영역의 상대 크기.<br/>
2067
2112
  * 예를 들어 이 시리즈의 속성값이 1이고 다른 시리즈의 값이 2이면 다른 시리즈의 data point가 두 배 두껍게 표시된다.
2068
2113
  *
2069
2114
  * @default
@@ -2078,8 +2123,7 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
2078
2123
  */
2079
2124
  pointOffset?: number;
2080
2125
  /**
2081
- * 이 시리즈의 point가 차지하는 영역 중에서 point bar 양쪽 끝에 채워지는 빈 영역의 크기.
2082
- * <br>
2126
+ * 이 시리즈의 point가 차지하는 영역 중에서 point bar 양쪽 끝에 채워지는 빈 영역의 크기.<br/>
2083
2127
  * point가 차지할 원래 크기에 대한 상대 값으로서,
2084
2128
  * 0 ~ 0.5 사이의 비율 값으로 지정한다.
2085
2129
  *
@@ -2103,7 +2147,7 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
2103
2147
  /** */
2104
2148
  interface BasedSeriesLabelOptions extends DataPointLabelOptions {
2105
2149
  /**
2106
- * 데이터포인트 본체와 label을 연결하는
2150
+ * 데이터포인트 본체와 label을 연결하는 선.<br/>
2107
2151
  */
2108
2152
  line?: DataPointLabelLineOptions;
2109
2153
  }
@@ -2160,7 +2204,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
2160
2204
  */
2161
2205
  interface BarSeriesBaseOptions extends BasedSeriesOptions {
2162
2206
  /**
2163
- * true로 지정하면 포인트 bar 별로 색을 다르게 표시한다.
2207
+ * true로 지정하면 포인트 bar 별로 색을 다르게 표시한다.<br/>
2164
2208
  *
2165
2209
  * @default false
2166
2210
  */
@@ -2213,39 +2257,42 @@ type SeriesGroupLayout = typeof _SeriesGroupLayout[keyof typeof _SeriesGroupLayo
2213
2257
  */
2214
2258
  interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends ChartItemOptions {
2215
2259
  /**
2216
- * 단일 시리즈 옵션 배열.
2260
+ * 단일 시리즈 옵션 배열.<br/>
2217
2261
  */
2218
2262
  children?: T[];
2219
2263
  /**
2220
- * pie 시리즈는 layout을 지원하지 않는다.
2264
+ * pie 시리즈는 layout을 지원하지 않는다.<br/>
2265
+ *
2221
2266
  * @default 'default'
2222
2267
  */
2223
2268
  layout?: SeriesGroupLayout;
2224
2269
  /**
2225
- * {@link layout}이 {@link layout 'fill'}일 때 상대적 최대값.
2226
- * <br>
2227
- * layoutMax는 0보다 값으로 지정해야 한다. <br>
2228
- * 값이 0이하이거나 지정하지 않으면 100으로 간주된다. <br>
2270
+ * {@link layout}이 {@link layout 'fill'}일 때 상대적 최대값.<br/>
2271
+ * layoutMax는 0보다 큰 값으로 지정해야 한다.<br/>
2272
+ * 값이 0이하이거나 지정하지 않으면 100으로 간주된다.
2229
2273
  *
2230
2274
  * @default 100
2231
2275
  */
2232
2276
  layoutMax?: number;
2233
2277
  /**
2234
- * 이 그룹에 포함된 시리즈들은 자신의 설정 대신 이 설정을 따른다.
2235
- *
2278
+ * 이 그룹에 포함된 시리즈들은 자신의 설정 대신 이 설정을 따른다.<br/>
2236
2279
  */
2237
2280
  xAxis?: string | number;
2238
2281
  /**
2239
- * 이 그룹에 포함된 시리즈들은 자신의 설정 대신 이 설정을 따른다.
2240
- *
2282
+ * 이 그룹에 포함된 시리즈들은 자신의 설정 대신 이 설정을 따른다.<br/>
2241
2283
  */
2242
2284
  yAxis?: string | number;
2243
2285
  /**
2244
- * 명시적 false로 지정하면 legend에 표시하지 않는다.
2286
+ * 명시적 false로 지정하면 legend에 표시하지 않는다.<br/>
2245
2287
  *
2246
2288
  * @default true
2247
2289
  */
2248
2290
  visibleInLegend?: boolean;
2291
+ /**
2292
+ * // #1151
2293
+ * true로 지정하면 legend에 시리즈들을 반대 순서로 배치한다.<br/>
2294
+ */
2295
+ reversedInLegend?: boolean;
2249
2296
  /**
2250
2297
  * @default 0
2251
2298
  */
@@ -2254,7 +2301,7 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
2254
2301
  */
2255
2302
  noClip?: boolean;
2256
2303
  /**
2257
- * 그룹 툴팁의 위쪽에 표시되는 텍스트.\
2304
+ * 그룹 툴팁의 위쪽에 표시되는 텍스트.<br/>
2258
2305
  *
2259
2306
  * tooltipHeader
2260
2307
  * tooltipRow,
@@ -2267,14 +2314,13 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
2267
2314
  */
2268
2315
  tooltipHeader?: string;
2269
2316
  /**
2270
- * 그룹 툴팁에 각 시리즈별 표시되는 포인트 툴팁 텍스트.
2317
+ * 그룹 툴팁에 각 시리즈별 표시되는 포인트 툴팁 텍스트.<br/>
2271
2318
  *
2272
2319
  * @default '${series}:<b> ${yValue}</b>'
2273
2320
  */
2274
2321
  tooltipRow?: string;
2275
2322
  /**
2276
- * 그룹 툴팁의 아래쪽에 표시되는 텍스트.
2277
- *
2323
+ * 그룹 툴팁의 아래쪽에 표시되는 텍스트.<br/>
2278
2324
  */
2279
2325
  tooltipFooter?: string;
2280
2326
  }
@@ -2428,7 +2474,7 @@ interface MarkerSeriesOptions extends ConnectableSeriesOptions {
2428
2474
  */
2429
2475
  interface LineSeriesMarkerOptions extends SeriesMarkerOptions {
2430
2476
  /**
2431
- * @override
2477
+ * @append
2432
2478
  *
2433
2479
  * @default 4
2434
2480
  */
@@ -2514,12 +2560,15 @@ declare const _PointLabelAlign: {
2514
2560
  readonly NONE: "none";
2515
2561
  /**
2516
2562
  * position이 'outside'일 때 시리즈 본체에 가까운 쪽에 정렬하고,
2517
- * 'inside'일 때 시리즈 중심(pie 시리즈)이나 왼쪽(funnel 시리즈)에 졍렬한다..<br/>
2563
+ * 'inside'일 때 시리즈 중심(pie 시리즈)이나 왼쪽(funnel 시리즈)에 졍렬한다.
2564
+ * Pictorial 시리즈에는 적용되지 않는다.<br/>
2565
+ * <br/>
2518
2566
  */
2519
2567
  readonly NEAR: "near";
2520
2568
  /**
2521
2569
  * position이 'outside'일 때 차트 전체 영역의 경계 쪽에 정렬하고,
2522
- * 'inside'일 때 시리즈 경계(pie 시리즈)나 오른쪽(funnel 시리즈)에 졍렬한다..<br/>
2570
+ * 'inside'일 때 시리즈 경계(pie 시리즈)나 오른쪽(funnel 시리즈)에 졍렬한다.
2571
+ * Pictorial 시리즈에는 적용되지 않는다.<br/>
2523
2572
  */
2524
2573
  readonly FAR: "far";
2525
2574
  };
@@ -2567,23 +2616,23 @@ type PointLabelOverflow = typeof _PointLabelOverflow[keyof typeof _PointLabelOve
2567
2616
  */
2568
2617
  interface WidgetSeriesLabelOptions extends DataPointLabelOptions {
2569
2618
  /**
2570
- * @override
2619
+ * @append
2620
+ *
2571
2621
  * @default true
2572
2622
  */
2573
2623
  visible?: boolean;
2574
2624
  /**
2575
- * 데이터포인트 라벨들을 정렬하는 방식.
2625
+ * 데이터포인트 라벨들을 정렬하는 방식.<br/>
2576
2626
  *
2577
2627
  * @default 'none'
2578
2628
  */
2579
2629
  align?: PointLabelAlign;
2580
2630
  /**
2581
- * 연결선 옵션 설정 모델.
2582
- *
2631
+ * 연결선 옵션 설정 모델.<br/>
2583
2632
  */
2584
2633
  connector?: WidgetSeriesConnectorOptions;
2585
2634
  /**
2586
- * label들이 최대한 영역 밖으로 나가지 않도록 안쪽으로 모은다.
2635
+ * label들이 최대한 영역 밖으로 나가지 않도록 안쪽으로 모은다.<br/>
2587
2636
  *
2588
2637
  * @default true
2589
2638
  */
@@ -2593,13 +2642,13 @@ interface WidgetSeriesLabelOptions extends DataPointLabelOptions {
2593
2642
  */
2594
2643
  distance?: number;
2595
2644
  /**
2596
- * label이 겹칠 때 처리 표시 지정한다.
2645
+ * label이 겹칠 때 처리 표시 지정한다.<br/>
2597
2646
  *
2598
2647
  * @default 'displayAll'
2599
2648
  */
2600
2649
  dedupeMode?: PointLabelDedupeMode;
2601
2650
  /**
2602
- * label이 겹칠 때 처리 표시 지정한다.
2651
+ * label이 겹칠 때 처리 표시 지정한다.<br/>
2603
2652
  *
2604
2653
  * @default 'visible'
2605
2654
  */
@@ -2681,6 +2730,9 @@ interface WidgetSeriesOptions extends SeriesOptions {
2681
2730
  * @default true
2682
2731
  */
2683
2732
  zeroInLegend?: boolean;
2733
+ /**
2734
+ * 마지막 데이터포인트들을 묶은 나머지 항목 설정 옵션.<br/>
2735
+ */
2684
2736
  othersGroup?: OthersGroupOptions;
2685
2737
  }
2686
2738
  declare const BarRangeSeriesType = "barrange";
@@ -2731,7 +2783,8 @@ interface BarRangeSeriesOptions extends LowRangedSeriesOptions {
2731
2783
  */
2732
2784
  cornerRadius?: number;
2733
2785
  /**
2734
- * @override
2786
+ * @append
2787
+ *
2735
2788
  * @default '<b>${name}</b><br>${series}: <b>${lowValue}</b> ~ <b>${highValue}</b>';
2736
2789
  */
2737
2790
  tooltipText?: string;
@@ -2766,8 +2819,7 @@ interface BarRangeSeriesOptions extends LowRangedSeriesOptions {
2766
2819
  *
2767
2820
  */
2768
2821
  interface BarSeriesOptions extends BarSeriesBaseOptions {
2769
- /**
2770
- */
2822
+ /** @dummy */
2771
2823
  type?: BarSeriesOptionsType;
2772
2824
  /**
2773
2825
  * 지정한 반지름 크기로 데이터포인트 bar의 위쪽 모서리를 둥글게 표시한다.<br/>
@@ -2869,7 +2921,8 @@ type LineType = typeof _LineType[keyof typeof _LineType];
2869
2921
  */
2870
2922
  interface LineSeriesFlagOptions extends IconedTextOptions {
2871
2923
  /**
2872
- * @override
2924
+ * @append
2925
+ *
2873
2926
  * @default false
2874
2927
  */
2875
2928
  visible?: boolean;
@@ -2992,11 +3045,10 @@ declare const SplineSeriesType = "spline";
2992
3045
  *
2993
3046
  */
2994
3047
  interface SplineSeriesOptions extends LineSeriesOptions {
2995
- /**
2996
- */
3048
+ /** @dummy */
2997
3049
  type?: typeof SplineSeriesType;
2998
3050
  /**
2999
- * @override
3051
+ * @append
3000
3052
  *
3001
3053
  * 항상 'spline'이다.<br/>
3002
3054
  */
@@ -3167,7 +3219,8 @@ interface BoxPlotSeriesOptions extends LowRangedSeriesOptions {
3167
3219
  */
3168
3220
  maxField?: string;
3169
3221
  /**
3170
- * @override
3222
+ * @append
3223
+ *
3171
3224
  * @default '<b>${name}</b><br>min: <b>${minValue}</b><br>low: <b>${lowValue}</b><br>mid: <b>${midValue}</b><br>high: <b>${highValue}</b><br>max: <b>${maxValue}</b>'
3172
3225
  */
3173
3226
  tooltipText?: string;
@@ -3235,7 +3288,8 @@ interface BubbleSeriesOptions extends MarkerSeriesOptions {
3235
3288
  */
3236
3289
  maxSize?: PercentSize;
3237
3290
  /**
3238
- * @override
3291
+ * @append
3292
+ *
3239
3293
  * @default 'x: <b>${x}</b><br>y: <b>${y}</b><br>volume: <b>${z}</b>'
3240
3294
  */
3241
3295
  tooltipText?: string;
@@ -3323,7 +3377,8 @@ interface CandlestickSeriesOptions extends LowRangedSeriesOptions {
3323
3377
  */
3324
3378
  declineStyle?: SVGStyleOrClass;
3325
3379
  /**
3326
- * @override
3380
+ * @append
3381
+ *
3327
3382
  * @default '<b>${name}</b><br>최저: <b>${lowValue}</b><br>시가: <b>${openValue}</b><br>종가: <b>${closeValue}</b><br>고가: <b>${highValue}</b>'
3328
3383
  */
3329
3384
  tooltipText?: string;
@@ -3332,7 +3387,8 @@ interface CandlestickSeriesOptions extends LowRangedSeriesOptions {
3332
3387
  */
3333
3388
  interface CircleBarPointLabelOptions extends DataPointLabelOptions {
3334
3389
  /**
3335
- * @override
3390
+ * @append
3391
+ *
3336
3392
  * @default 'inside'
3337
3393
  */
3338
3394
  position?: PointLabelPosition;
@@ -3385,12 +3441,14 @@ interface CircleBarSeriesGroupOptions extends BarSeriesGroupBaseOptions<CircleBa
3385
3441
  /** */
3386
3442
  interface DumbbellSeriesMarkerOptions extends SeriesMarkerOptions {
3387
3443
  /**
3388
- * @override
3444
+ * @append
3445
+ *
3389
3446
  * @default 4
3390
3447
  */
3391
3448
  radius?: number;
3392
3449
  /**
3393
- * @override
3450
+ * @append
3451
+ *
3394
3452
  * @default 'circle'
3395
3453
  */
3396
3454
  shape?: Shape;
@@ -3531,12 +3589,14 @@ interface ErrorBarSeriesOptions extends LowRangedSeriesOptions {
3531
3589
  */
3532
3590
  type?: typeof ErrorBarSeriesType;
3533
3591
  /**
3534
- * @override
3592
+ * @append
3593
+ *
3535
3594
  * @default 0.3
3536
3595
  */
3537
3596
  pointPadding?: number;
3538
3597
  /**
3539
- * @override
3598
+ * @append
3599
+ *
3540
3600
  * @default '<b>${name}</b><br>${series}: <b>${lowValue}</b> ~ <b>${highValue}</b>'
3541
3601
  */
3542
3602
  tooltipText?: string;
@@ -3582,7 +3642,7 @@ declare const FunnelSeriesType = "funnel";
3582
3642
  interface FunnelSeriesOptions extends WidgetSeriesOptions {
3583
3643
  type?: typeof FunnelSeriesType;
3584
3644
  /**
3585
- * @override
3645
+ * @append
3586
3646
  */
3587
3647
  pointLabel?: FunnelSeriesLabelOptions;
3588
3648
  /**
@@ -3613,7 +3673,8 @@ interface FunnelSeriesOptions extends WidgetSeriesOptions {
3613
3673
  */
3614
3674
  reversed?: boolean;
3615
3675
  /**
3616
- * @override
3676
+ * @append
3677
+ *
3617
3678
  * @default false
3618
3679
  */
3619
3680
  legendByPoint?: boolean;
@@ -3746,7 +3807,8 @@ interface AreaRangeSeriesOptions extends LineSeriesBaseOptions {
3746
3807
  */
3747
3808
  interface LollipopSeriesMarkerOptions extends SeriesMarkerOptions {
3748
3809
  /**
3749
- * @override
3810
+ * @append
3811
+ *
3750
3812
  * @default 4
3751
3813
  */
3752
3814
  radius?: number;
@@ -3763,7 +3825,8 @@ interface LollipopSeriesMarkerOptions extends SeriesMarkerOptions {
3763
3825
  */
3764
3826
  minRadius?: number;
3765
3827
  /**
3766
- * @override
3828
+ * @append
3829
+ *
3767
3830
  * @default 'circle'
3768
3831
  */
3769
3832
  shape?: Shape;
@@ -3902,9 +3965,9 @@ interface RadialSeriesOptions extends WidgetSeriesOptions {
3902
3965
  /**
3903
3966
  * 시리즈 원호의 반지름.<br/>
3904
3967
  * 픽셀 크기나 {@link https://realchart.co.kr/config/config/body body} 영역 크기에 대한 상대적 크기로 지정할 수 있다.
3905
- * '50%'로 지정하면 plot 영역의 width나 height중 작은 크기와 동일한 반지름으로 표시된다.
3968
+ * '50%'로 지정하면 plot 영역의 너비나 높이 중 작은 크기와 동일한 반지름으로 표시된다.
3906
3969
  *
3907
- * @default '40%
3970
+ * @default '40%'
3908
3971
  */
3909
3972
  radius?: PercentSize;
3910
3973
  /**
@@ -4031,7 +4094,7 @@ interface PieSeriesOptions extends RadialSeriesOptions {
4031
4094
  */
4032
4095
  type?: typeof PieSeriesType;
4033
4096
  /**
4034
- * @override
4097
+ * @append
4035
4098
  */
4036
4099
  pointLabel?: PieSeriesLabelOptions;
4037
4100
  /**
@@ -4228,7 +4291,8 @@ type TreemapAlgorithm = typeof _TreemapAlgorithm[keyof typeof _TreemapAlgorithm]
4228
4291
  */
4229
4292
  interface TreeGroupHeadOptions extends ChartItemOptions {
4230
4293
  /**
4231
- * @override
4294
+ * @append
4295
+ *
4232
4296
  * @default false
4233
4297
  */
4234
4298
  visible?: boolean;
@@ -4354,7 +4418,8 @@ interface HeatmapSeriesOptions extends Omit<ConnectableSeriesOptions, 'trendline
4354
4418
  */
4355
4419
  type?: typeof HeatmapSeriesType;
4356
4420
  /**
4357
- * @override
4421
+ * @append
4422
+ *
4358
4423
  * @default 'x: <b>${x}</b><br>y: <b>${y}</b><br>heat: <b>${z}</b>'
4359
4424
  */
4360
4425
  tooltipText?: string;
@@ -4614,6 +4679,216 @@ interface WordCloudSeriesOptions extends WidgetSeriesOptions {
4614
4679
  */
4615
4680
  placer?: 'default' | 'spiral';
4616
4681
  }
4682
+ declare const PictogramSeriesType = "pictogram";
4683
+ /**
4684
+ * @private
4685
+ *
4686
+ * pictogram 시리즈 모델.<br/>
4687
+ * {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'pictogram'이다.<br/>
4688
+ * 지정한 이미지 아이콘을 반복한다.
4689
+ */
4690
+ interface PictogramSeriesOptions extends BasedSeriesOptions {
4691
+ /** @dummy */
4692
+ type?: typeof PictogramSeriesType;
4693
+ /**
4694
+ * 아이콘 이미지 url.<br/>
4695
+ */
4696
+ iconUrl?: string;
4697
+ /**
4698
+ * 이 속성과 {@link iconHeight}를 모두 지정하지 않으면 축 설정에 따라 아이콘 표시 너비가 결정된다.<br/>
4699
+ */
4700
+ iconWidth?: number;
4701
+ /**
4702
+ * 이 속성과 {@link iconWidth}를 모두 지정하지 않으면 축 설정에 따라 아이콘 표시 너비가 결정된다.<br/>
4703
+ */
4704
+ iconHeight?: number;
4705
+ /**
4706
+ * @default 2
4707
+ */
4708
+ iconGap?: number;
4709
+ /**
4710
+ * true면 값에 상관없이 모든 아이콘 이미지가 모두 그려지게 한다.<br/>
4711
+ * @default false
4712
+ */
4713
+ integral?: boolean;
4714
+ /**
4715
+ * @default 0.5
4716
+ */
4717
+ integralThreshold?: number;
4718
+ /**
4719
+ * true로 지정하면 시리즈 방향과 무관하게 아이콘 방향을 유지한다.<br/>
4720
+ */
4721
+ preserveIconOrientation?: boolean;
4722
+ }
4723
+ /**
4724
+ * 화살 머리 종류.
4725
+ * @enum
4726
+ */
4727
+ declare const _PictorialBarMode: {
4728
+ /**
4729
+ * 이미지가 지정되면 'figure',
4730
+ * svg가 지정되면 'both'로 적용된다.<br/>
4731
+ */
4732
+ readonly AUTO: "auto";
4733
+ /**
4734
+ * 이미지나 svg의 비율을 유지하면서 아래 bar를 같이 표시한다.<br/>
4735
+ */
4736
+ readonly BOTH: "both";
4737
+ /**
4738
+ * 아래쪽 bar 없이 이미지나 svg를 데이터포인트 높이와 너비에 맞게 비율을 조정해서 표시한다.<br/>
4739
+ */
4740
+ readonly FIGURE: "figure";
4741
+ };
4742
+ /** @dummy */
4743
+ type PictorialBarMode = typeof _PictorialBarMode[keyof typeof _PictorialBarMode];
4744
+ declare const PictorialBarSeriesType = "pictorialbar";
4745
+ /**
4746
+ * pictorial bar 시리즈.<br/>
4747
+ * {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'pictorialbar'이다.<br/>
4748
+ * 데이터포인트 bar 위에 svg나 이미지로 데이터포인트와 관련된 그림(figure)을 표시한다.
4749
+ *
4750
+ *
4751
+ * @modules pictogram
4752
+ */
4753
+ interface PictorialBarSeriesOptions extends BarSeriesBaseOptions {
4754
+ /** @dummy */
4755
+ type?: typeof PictorialBarSeriesType;
4756
+ /**
4757
+ * svg나 이미지 figure와 bar를 표시하는 방식.<br/>
4758
+ *
4759
+ * @default 'auto'
4760
+ */
4761
+ mode?: PictorialBarMode;
4762
+ /**
4763
+ * svg 단일 path 또는 path 목록.<br/>
4764
+ * path 목록이면 모두 합쳐진 path로 그려진다.
4765
+ * svg로 figure를 지정하면 데이터포인트의 'fill'이나 'stroke' 스타일을 따라간다.<br/>
4766
+ * {@link figureByPoint}를 지정해서 데이터포인트별로 svg를 표시하려면
4767
+ * {@link figureImage}에 복수 개로 지정한다.
4768
+ */
4769
+ figurePath?: string | string[];
4770
+ /**
4771
+ * {@link figureImage} 목록이나, {@link figureField}로 설정된 모든 이미지 경로 앞에 추가되는 경로.<br/>
4772
+ */
4773
+ figureImageRoot?: string;
4774
+ /**
4775
+ * figure 이미지 url 또는 url 배열.<br/>
4776
+ * 데이터포인트 구성 json의 {@link figureField}로 지정한 속성에 이미지 index를 지정할 수 있다.
4777
+ */
4778
+ figureImage?: string | string[];
4779
+ /**
4780
+ * true로 지정하면 {@link figureImage}가 배열인 경우, 데이터포인트 별로 {@link figureField}에 지정된 index나,
4781
+ * 데이터포인트 index에 따라 자동 지정된다.<br/>
4782
+ */
4783
+ figureByPoint?: boolean;
4784
+ /**
4785
+ * json 객체나 배열로 전달되는 데이터포인트 정보에서 figure 값을 지정하는 속성명이나 인덱스 또는,
4786
+ * 전달되는 json 객체에서 figure 값을 리턴하는 함수.<br/>
4787
+ * 지정하지 않거나(undefined) 값이 undefined이면, 데이터포인트의 값이 객체일 때 'figure' 속성 값이 사용된다.
4788
+ */
4789
+ figureField?: string | number | Function;
4790
+ /**
4791
+ * 데이터포인트 bar 너비에 대한 figure의 상대 너비.<br/>
4792
+ * 1이면 bar 너비와 동일한 크기로 figure의 너비가 표시된다.
4793
+ * 0보다 큰 값으로 지정한다.
4794
+ * 잘못된 값을 지정하면 1로 표시된다.<br/>
4795
+ * 이렇게 결정된 너비에 맞게 figure의 높이가 자동 결정된다.
4796
+ * figure의 높이가 데이터포인트 높이 보다 크면 bar 부분은 표시되지 않는다.
4797
+ *
4798
+ * @default '100%'
4799
+ */
4800
+ figureWidth?: PercentSize;
4801
+ /**
4802
+ * figure와 bar 사이의 간격.<br/>
4803
+ *
4804
+ * @default 0
4805
+ */
4806
+ figureGap?: number;
4807
+ /**
4808
+ * 지정한 반지름 크기로 데이터포인트 bar의 위쪽 모서리를 둥글게 표시한다.<br/>
4809
+ * 최대값이 bar 폭으로 절반으로 제한되므로 아주 큰 값을 지정하면 반원으로 표시된다.
4810
+ */
4811
+ topRadius?: number;
4812
+ /**
4813
+ * 지정한 반지름 크기로 데이터포인트 bar의 아래쪽 모서리를 둥글게 표시한다.<br/>
4814
+ * 최대값이 bar 폭으로 절반으로 제한되므로 아주 큰 값을 지정하면 반원으로 표시된다.
4815
+ */
4816
+ bottomRadius?: number;
4817
+ }
4818
+ /**
4819
+ * Pictorial 시리즈의 point label 옵션.<br/>
4820
+ * position이 'default'이면 'inside'로 표시된다.
4821
+ * 라벨들이 겹치면 값이 적은 것들 순서대로 감춘다.
4822
+ *
4823
+ */
4824
+ interface PictorialSeriesLabelOptions extends WidgetSeriesLabelOptions {
4825
+ /**
4826
+ * true로 지정하면 반대쪽(왼편)에 표시한다.
4827
+ */
4828
+ opposite?: boolean;
4829
+ }
4830
+ declare const PictorialSeriesType = "pictorial";
4831
+ /**
4832
+ * pictorial 시리즈.<br/>
4833
+ * {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'pictorial'이다.<br/>
4834
+ * SVG 이미지 하나를 값에 따라 수평 또는 수직 방향의 여러 영역으로 분할해서 표시한다.
4835
+ *
4836
+ *
4837
+ * @modules pictogram
4838
+ */
4839
+ interface PictorialSeriesOptions extends WidgetSeriesOptions {
4840
+ /** @dummy */
4841
+ type?: typeof PictorialSeriesType;
4842
+ /**
4843
+ * @append
4844
+ */
4845
+ pointLabel?: PictorialSeriesLabelOptions;
4846
+ /**
4847
+ * 이 값을 지정하지 않으면 데이터포인트들의 값을 모두 더한 것을 합계로 사용한다.<br/>
4848
+ * 숫자 또는 '%'로 끝나는 데이터포인트 합계에 대한 백분율로 지정할 수 있다.
4849
+ * 실제 합계 이하로 지정하면 무시한다.
4850
+ * 각 데이터포인트들은 합계에 대한 비율 크기로 표시된다.
4851
+ */
4852
+ total?: PercentSize;
4853
+ /**
4854
+ * svg 단일 path 또는 path 목록.<br/>
4855
+ */
4856
+ figure?: string | string[];
4857
+ /**
4858
+ * Pictorial의 크기.<br/>
4859
+ * 픽셀 크기나 {@link https://realchart.co.kr/config/config/body body} 영역 크기에 대한 상대적 크기로 지정할 수 있다.
4860
+ * '100%'로 지정하면 plot 영역의 너비나 높이 중 작은 크기와 동일한 크기로 표시된다.<br/>
4861
+ * 또, {@link width}나 {@link height}로 각각 다른 크기를 지정할 수도 있다.
4862
+ *
4863
+ * @default '90%'
4864
+ */
4865
+ size?: PercentSize;
4866
+ /**
4867
+ * {@link Pictorial} 표시 너비를 pixel이나 body 너비에 대한 비율(%)로 지정한다.<br/>
4868
+ * 이 크기를 지정하지 않으면 {@link size} 설정에 맞게 자동으로 적용된다.
4869
+ * {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg 크기대료 표시된다.
4870
+ */
4871
+ width?: PercentSize;
4872
+ /**
4873
+ * {@link Pictorial} 표시 너비를 pixel이나 body 높이에 대한 비율(%)로 지정한다.<br/>
4874
+ * 이 크기를 지정하지 않으면 {@link size} 설정에 맞게 자동으로 적용된다.
4875
+ * {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg 크기대료 표시된다.
4876
+ */
4877
+ height?: PercentSize;
4878
+ /**
4879
+ * 데이터포인트 표시 방향.<br/>
4880
+ *
4881
+ * @default 'row'
4882
+ */
4883
+ direction?: 'row' | 'column';
4884
+ /**
4885
+ * false면 {@link direction}이 'row'일 때 아래에서 위로, 아니면 왼쪽에서 오른쪽으로 배치된다.<br/>
4886
+ * true면 반대로 배치된다.
4887
+ *
4888
+ * @default false
4889
+ */
4890
+ reversed?: boolean;
4891
+ }
4617
4892
  interface RaceCallbackArgs {
4618
4893
  race: any;
4619
4894
  }
@@ -4728,7 +5003,7 @@ declare const BarSeriesTypes: {
4728
5003
  /** @dummy */
4729
5004
  type BarSeriesOptionsType = typeof BarSeriesTypes[keyof typeof BarSeriesTypes];
4730
5005
  /** @dummy */
4731
- type SeriesOptionsType = SeriesOptions | SeriesGroupOptions | BarRangeSeriesOptions | BarSeriesOptions | BarSeriesGroupOptions | BellCurveSeriesOptions | BoxPlotSeriesOptions | BubbleSeriesOptions | BumpSeriesGroupOptions | CandlestickSeriesOptions | CircleBarSeriesOptions | DumbbellSeriesOptions | EqualizerSeriesOptions | ErrorBarSeriesOptions | FunnelSeriesOptions | HistogramSeriesOptions | AreaRangeSeriesOptions | AreaSeriesOptions | AreaSeriesGroupOptions | LineSeriesOptions | LineSeriesGroupOptions | SplineSeriesOptions | LollipopSeriesOptions | OhlcSeriesOptions | ParetoSeriesOptions | PieSeriesOptions | PieSeriesGroupOptions | ScatterSeriesOptions | WaterfallSeriesOptions | TreemapSeriesOptions | HeatmapSeriesOptions | VectorSeriesOptions;
5006
+ type SeriesOptionsType = SeriesOptions | SeriesGroupOptions | BarRangeSeriesOptions | BarSeriesOptions | BarSeriesGroupOptions | BellCurveSeriesOptions | BoxPlotSeriesOptions | BubbleSeriesOptions | BumpSeriesGroupOptions | CandlestickSeriesOptions | CircleBarSeriesOptions | DumbbellSeriesOptions | EqualizerSeriesOptions | ErrorBarSeriesOptions | FunnelSeriesOptions | HistogramSeriesOptions | AreaRangeSeriesOptions | AreaSeriesOptions | AreaSeriesGroupOptions | LineSeriesOptions | LineSeriesGroupOptions | SplineSeriesOptions | LollipopSeriesOptions | OhlcSeriesOptions | ParetoSeriesOptions | PieSeriesOptions | PieSeriesGroupOptions | ScatterSeriesOptions | WaterfallSeriesOptions | TreemapSeriesOptions | HeatmapSeriesOptions | VectorSeriesOptions | PictogramSeriesOptions | PictorialBarSeriesOptions | PictorialSeriesOptions;
4732
5007
 
4733
5008
  /**
4734
5009
  * 차트 제목(title) 설정 옵션.<br/>
@@ -4752,9 +5027,9 @@ type SeriesOptionsType = SeriesOptions | SeriesGroupOptions | BarRangeSeriesOpti
4752
5027
  */
4753
5028
  interface TitleOptions extends ChartItemOptions {
4754
5029
  /**
4755
- * @override
5030
+ * @append
4756
5031
  *
4757
- * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.
5032
+ * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.<br/>
4758
5033
  *
4759
5034
  * @default true
4760
5035
  */
@@ -4766,7 +5041,7 @@ interface TitleOptions extends ChartItemOptions {
4766
5041
  */
4767
5042
  text?: string;
4768
5043
  /**
4769
- * 정렬 기준.
5044
+ * 정렬 기준.<br/>
4770
5045
  * 시리즈들이 그려지는 plotting 영역이나,
4771
5046
  * 차트 전체 영역을 기준으로 할 수 있다.
4772
5047
  * 또, {@link https://realchart.co.kr/config/config/subtitle 부제목}인 경우 제목을 기준으로 위치를 지정할 수 있다.
@@ -4775,19 +5050,19 @@ interface TitleOptions extends ChartItemOptions {
4775
5050
  */
4776
5051
  alignBase?: AlignBase;
4777
5052
  /**
4778
- * 수평 정렬.
5053
+ * 수평 정렬.<br/>
4779
5054
  *
4780
5055
  * @default 'center'
4781
5056
  */
4782
5057
  align?: Align;
4783
5058
  /**
4784
- * 수직 정렬.
5059
+ * 수직 정렬.<br/>
4785
5060
  *
4786
5061
  * @default 'middle'
4787
5062
  */
4788
5063
  verticalAlign?: VerticalAlign;
4789
5064
  /**
4790
- * 배경 {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
5065
+ * 배경 {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
4791
5066
  */
4792
5067
  backgroundStyle?: SVGStyleOrClass;
4793
5068
  /**
@@ -4871,31 +5146,33 @@ type SubtitlePosition = typeof _SubtitlePosition[keyof typeof _SubtitlePosition]
4871
5146
  */
4872
5147
  interface SubtitleOptions extends TitleOptions {
4873
5148
  /**
4874
- * 표시 위치.
5149
+ * 표시 위치.<br/>
4875
5150
  *
4876
5151
  * @default 'bottom'
4877
5152
  */
4878
5153
  position?: SubtitlePosition;
4879
5154
  /**
4880
- * 주 제목과 사이의 간격.
5155
+ * 주 제목과 사이의 간격.<br/>
4881
5156
  *
4882
5157
  * @default 2
4883
5158
  */
4884
5159
  titleGap?: number;
4885
5160
  /**
4886
- * @override
5161
+ * @append
5162
+ *
4887
5163
  * @default 'bottom'
4888
5164
  */
4889
5165
  verticalAlign?: VerticalAlign;
4890
5166
  /**
4891
- * @override
5167
+ * @append
5168
+ *
4892
5169
  * @default ''
4893
5170
  */
4894
5171
  text?: string;
4895
5172
  /**
4896
- * @override
5173
+ * @append
4897
5174
  *
4898
- * {@link position}가 'leftSide' 이거나 'rightSide'인 경우 해당 속성은 무시된다.
5175
+ * {@link position}가 'leftSide' 이거나 'rightSide'인 경우 해당 속성은 무시된다.<br/>
4899
5176
  *
4900
5177
  * @default 0
4901
5178
  */
@@ -4921,28 +5198,28 @@ interface ChartOptionsOptions extends ChartItemOptions {
4921
5198
  */
4922
5199
  theme?: string;
4923
5200
  /**
4924
- * 시리즈 및 데이터포인트에 적용되는 기본 색상 팔레트 이름.
5201
+ * 시리즈 및 데이터포인트에 적용되는 기본 색상 팔레트 이름.<br/>
4925
5202
  */
4926
5203
  palette?: string;
4927
5204
  /**
4928
- * {@link palette}로 지정된 팔레트 색상들을 시리즈에 적용하는 방식.
5205
+ * {@link palette}로 지정된 팔레트 색상들을 시리즈에 적용하는 방식.<br/>
4929
5206
  *
4930
5207
  * @default 'normal'
4931
5208
  */
4932
5209
  paletteMode?: PaletteMode;
4933
5210
  /**
4934
- * 시리즈 옵션 colorByPoint가 true일 때 적용되는 데이터포인트들의 색상 목록.
5211
+ * 시리즈 옵션 colorByPoint가 true일 때 적용되는 데이터포인트들의 색상 목록.<br/>
4935
5212
  * 시리즈 옵션 colors가 지정되면 이 속성은 무시된다.
4936
5213
  */
4937
5214
  colors?: string[];
4938
5215
  /**
4939
- * false로 지정하면 차트 전체척으로 animation 효과를 실행하지 않는다.
5216
+ * false로 지정하면 차트 전체척으로 animation 효과를 실행하지 않는다.<br/>
4940
5217
  *
4941
5218
  * @default true
4942
5219
  */
4943
5220
  animatable?: boolean;
4944
5221
  /**
4945
- * javascript에서 숫자 단위로 전달되는 날짜값은 기본적으로 local이 아니라 new Date 기준이다.
5222
+ * javascript에서 숫자 단위로 전달되는 날짜값은 기본적으로 local이 아니라 new Date 기준이다.<br/>
4946
5223
  * 그러므로 보통 숫자로 지정된 날짜값은 utc 값이다.
4947
5224
  * local 기준으로 표시하기 위해, 숫자로 지정된 날짜값에 더해야 하는 시간을 분단위로 지정한다.<br/>
4948
5225
  * ex) 한국은 -9 * 60
@@ -4985,7 +5262,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
4985
5262
  */
4986
5263
  axisGap?: number;
4987
5264
  /**
4988
- * @deprecated v1.3.15 이후로, {@link https://realchart.co.kr/config/config/credits credits}으로 대신 설정한다.
5265
+ * @deprecated v1.3.15 이후로, {@link https://realchart.co.kr/config/config/credits credits}으로 대신 설정한다.<br/>
4989
5266
  *
4990
5267
  * 크레딧 모델.<br/>
4991
5268
  */
@@ -5037,10 +5314,10 @@ type ZoomType = typeof _ZoomType[keyof typeof _ZoomType];
5037
5314
  */
5038
5315
  interface ZoomButtonOptions extends ChartItemOptions {
5039
5316
  /**
5040
- * @override
5317
+ * @append
5041
5318
  *
5042
5319
  * 명시적 false로 지정한 경우가 아닐 때,
5043
- * 이미 zoom된 상태이거나, zoom 가능하면 표시된다.
5320
+ * 이미 zoom된 상태이거나, zoom 가능하면 표시된다.<br/>
5044
5321
 
5045
5322
  * @default undefined
5046
5323
  */
@@ -5050,15 +5327,15 @@ interface ZoomButtonOptions extends ChartItemOptions {
5050
5327
  */
5051
5328
  interface EmptyViewOptions extends ChartTextOptions {
5052
5329
  /**
5053
- * @override
5330
+ * @append
5054
5331
  *
5055
- * false로 지정하면 표시돼야할 상황에서도 표시되지 않는다.
5332
+ * false로 지정하면 표시돼야할 상황에서도 표시되지 않는다.<br/>
5056
5333
  *
5057
5334
  * @default undefined
5058
5335
  */
5059
5336
  visible?: boolean;
5060
5337
  /**
5061
- * @override
5338
+ * @append
5062
5339
  *
5063
5340
  * 표시할 텍스트.<br/>
5064
5341
  * 지정하지 않으면 ''표시할 데이터가 없습니다.'가 표시된다.
@@ -5274,7 +5551,8 @@ interface NavigiatorMaskOptions extends ChartItemOptions {
5274
5551
  */
5275
5552
  interface SeriesNavigatorOptions extends ChartItemOptions {
5276
5553
  /**
5277
- * @override
5554
+ * @append
5555
+ *
5278
5556
  * @default false
5279
5557
  */
5280
5558
  visible?: boolean;
@@ -5500,11 +5778,10 @@ type TooltipScope = typeof _TooltipScope[keyof typeof _TooltipScope];
5500
5778
  interface TooltipOptions extends ChartItemOptions {
5501
5779
  /**
5502
5780
  * 하나의 툴팁으로 표시할 범위.
5781
+ *
5782
+ * @default hover
5503
5783
  */
5504
5784
  scope?: TooltipScope;
5505
- /**
5506
- */
5507
- html?: string;
5508
5785
  /**
5509
5786
  * 툴팁에 표시할 텍스트 형식.<br/>
5510
5787
  * 시리즈에 {@link https://realchart.co.kr/config/config/base/series#tooltiptext tooltipText}가 시리즈 별 tooltip을 제공하지만,
@@ -5525,6 +5802,7 @@ interface TooltipOptions extends ChartItemOptions {
5525
5802
  /**
5526
5803
  * 목표 지점과 tooltip 사이의 간격.
5527
5804
  *
5805
+ * @default 8
5528
5806
  */
5529
5807
  offset?: number;
5530
5808
  /**
@@ -5534,36 +5812,71 @@ interface TooltipOptions extends ChartItemOptions {
5534
5812
  */
5535
5813
  hideDelay?: number;
5536
5814
  /**
5815
+ * 툴팁의 최소 너비.<br/>
5816
+ *
5817
+ * @default 100
5537
5818
  */
5538
5819
  minWidth?: number;
5539
5820
  /**
5821
+ * 툴팁의 최소 높이.<br/>
5822
+ *
5823
+ * @default 40
5540
5824
  */
5541
5825
  minHeight?: number;
5542
5826
  /**
5543
5827
  * true이면 툴팁 상자가 마우스 포인터를 따라 다닌다.
5544
- * <br>
5828
+ * <br/>
5545
5829
  * false, true를 명시적으로 지정하지 않으면 시리즈 종류에 따라 자동 설정된다.
5546
5830
  * ex) pie 시리즈는 true, bar 시리즈는 false가 된다.
5547
5831
  *
5548
5832
  */
5549
5833
  followPointer?: boolean;
5550
5834
  /**
5551
- * 툴팁 텍스트 속 숫자 값이 NaN일 때 대신 표시되는 텍스트.
5835
+ * 툴팁 텍스트 속 숫자 값이 NaN일 때 대신 표시되는 텍스트.<br/>
5552
5836
  *
5837
+ * @default ''
5553
5838
  */
5554
5839
  nanText?: string;
5555
5840
  /**
5556
- * 툴팁에 표시될 숫자값의 기본 형식.\
5841
+ * 툴팁에 표시될 숫자값의 기본 형식.<br/>
5557
5842
  * {@link text}예 표시 문자열을 지정할 때 `${yValue;;#,###.0}`와 같은 식으로 숫자 형식을 지정할 수 있다.
5558
5843
  *
5844
+ * @default ',#.##'
5559
5845
  */
5560
5846
  numberFormat?: string;
5561
5847
  /**
5562
- * 툴팁에 표시될 날짜(시간)값의 기본 형식.\
5848
+ * 툴팁에 표시될 날짜(시간)값의 기본 형식.<br/>
5563
5849
  * {@link text}예 표시 문자열을 지정할 때 `${x;;yyyy.MM}`와 같은 식으로 날짜(시간) 형식을 지정할 수 있다.
5564
5850
  *
5851
+ * @default 'yyyy-MM-dd'
5565
5852
  */
5566
5853
  timeFormat?: string;
5854
+ /**
5855
+ * 툴팁 헤더의 높이.<br/>
5856
+ * 0 이하의 값을 설정할 경우 표시되지 않는다.<br/>
5857
+ *
5858
+ * @default 7
5859
+ */
5860
+ headerHeight?: number;
5861
+ /**
5862
+ * 툴팁 꼬리 크기.<br/>
5863
+ * 0 이하의 값을 설정할 경우 표시되지 않는다.<br/>
5864
+ *
5865
+ * @default 10
5866
+ */
5867
+ tailSize?: number;
5868
+ /**
5869
+ * 툴팁 모서리의 굴곡 설정.<br/>
5870
+ *
5871
+ * @default 5
5872
+ */
5873
+ borderRadius?: number;
5874
+ /**
5875
+ * true 이면 {@link headerHeight}, {@link tailSize}, {@link borderRadius}에 각각 0을 지정한 것과 같다.
5876
+ *
5877
+ * @default false
5878
+ */
5879
+ simpleMode?: boolean;
5567
5880
  }
5568
5881
 
5569
5882
  /**
@@ -5623,28 +5936,23 @@ type LegendLayout = typeof _LegendLayout[keyof typeof _LegendLayout];
5623
5936
  */
5624
5937
  declare const _LegendLocation: {
5625
5938
  /**
5626
- * 차트 본체 아래 표시한다.
5627
- *
5939
+ * 차트 본체 아래 표시한다.<br/>
5628
5940
  */
5629
5941
  readonly BOTTOM: "bottom";
5630
5942
  /**
5631
- * 차트 타이틀 아래 표시한다.
5632
- *
5943
+ * 차트 타이틀 아래 표시한다.<br/>
5633
5944
  */
5634
5945
  readonly TOP: "top";
5635
5946
  /**
5636
- * 차트 본체 오른쪽에 표시한다.
5637
- *
5947
+ * 차트 본체 오른쪽에 표시한다.<br/>
5638
5948
  */
5639
5949
  readonly RIGHT: "right";
5640
5950
  /**
5641
- * 차트 본체 왼쪽에 표시한다.
5642
- *
5951
+ * 차트 본체 왼쪽에 표시한다.<br/>
5643
5952
  */
5644
5953
  readonly LEFT: "left";
5645
5954
  /**
5646
- * 차트 본체 영역 내부에 표시한다.
5647
- *
5955
+ * 차트 본체 영역 내부에 표시한다.<br/>
5648
5956
  */
5649
5957
  readonly BODY: "body";
5650
5958
  };
@@ -5677,7 +5985,7 @@ interface LegendOptions extends ChartItemOptions {
5677
5985
  */
5678
5986
  col?: number;
5679
5987
  /**
5680
- * @override
5988
+ * @append
5681
5989
  *
5682
5990
  * 명시적 true로 지정하고 항목이 하나라도 존재하거나,
5683
5991
  * 명시적 false가 아닌 경우 항목이 둘 이상이면 표시된다.<br/>
@@ -5863,7 +6171,8 @@ interface PaneBodyOptions extends BodyOptions {
5863
6171
  */
5864
6172
  interface SplitOptions extends ChartItemOptions {
5865
6173
  /**
5866
- * @override
6174
+ * @append
6175
+ *
5867
6176
  * @default false
5868
6177
  */
5869
6178
  visible?: boolean;
@@ -6505,7 +6814,9 @@ interface ILegendSource {
6505
6814
  isEmpty?(): boolean;
6506
6815
  legendMarker(doc: Document, size: number): RcElement;
6507
6816
  legendColor(): string;
6817
+ legendStroke(): string;
6508
6818
  legendLabel(): string;
6819
+ legendKey(): any;
6509
6820
  }
6510
6821
  /**
6511
6822
  * @private
@@ -6541,6 +6852,8 @@ declare class Legend extends Widget<LegendOptions> {
6541
6852
  private _maxWidth;
6542
6853
  private _maxHeight;
6543
6854
  private _items;
6855
+ private _visItems;
6856
+ private _itemMap;
6544
6857
  private _maxWidthDim;
6545
6858
  private _maxHeightDim;
6546
6859
  _location: LegendLocation;
@@ -6549,6 +6862,7 @@ declare class Legend extends Widget<LegendOptions> {
6549
6862
  getMaxWidth(domain: number): number;
6550
6863
  getMaxHeight(domain: number): number;
6551
6864
  getMarkerSize(): number;
6865
+ getSources(item: LegendItem): ILegendSource | ILegendSource[];
6552
6866
  protected _isVisible(): boolean;
6553
6867
  protected _doApply(options: LegendOptions): void;
6554
6868
  protected _doPrepareRender(chart: IChart): void;
@@ -6596,6 +6910,9 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
6596
6910
  setTarget(series: ISeries, point: DataPoint, siblings: DataPoint[]): ITooltipContext;
6597
6911
  getTextDomain(): IRichTextDomain;
6598
6912
  isFollowPointer(series: ISeries): boolean;
6913
+ getHeaderHeight(): number;
6914
+ getTailSize(): number;
6915
+ getBorderRadius(): number;
6599
6916
  protected _doSetSimple(src: any): boolean;
6600
6917
  protected _doApply(options: TooltipOptions): void;
6601
6918
  }
@@ -6658,7 +6975,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
6658
6975
  _tstep: number;
6659
6976
  get tick(): CategoryAxisTick;
6660
6977
  /**
6661
- * @override
6978
+ * @append
6662
6979
  */
6663
6980
  get label(): CategoryAxisLabel;
6664
6981
  xValueAt(pos: number): number;
@@ -6900,6 +7217,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6900
7217
  _referents: Series[];
6901
7218
  _runColor: string;
6902
7219
  _calcedColor: string;
7220
+ _calcedStroke: string;
6903
7221
  _simpleMode: boolean;
6904
7222
  _legended: any;
6905
7223
  private _legendMarker;
@@ -6974,9 +7292,13 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6974
7292
  */
6975
7293
  get visiblePoints(): DataPoint[];
6976
7294
  /**
6977
- * polar가 적용 가능한 시리즈 인지.
7295
+ * polar가 적용 가능한 시리즈 인지 여부
6978
7296
  */
6979
7297
  get canPolar(): boolean;
7298
+ /**
7299
+ * widget 시리즈 인지 여부
7300
+ */
7301
+ get isWidget(): boolean;
6980
7302
  /**
6981
7303
  * 시리즈에 설정된 데이터포인트들 중 표시 중인 index번째 포인트 객체.<br/>
6982
7304
  *
@@ -7014,7 +7336,9 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
7014
7336
  displayName(): string;
7015
7337
  legendMarker(doc: Document, size: number): RcElement;
7016
7338
  legendColor(): string;
7339
+ legendStroke(): string;
7017
7340
  legendLabel(): string;
7341
+ legendKey(): any;
7018
7342
  styleLegendMarker(marker: RcElement): void;
7019
7343
  canMixWith(other: IPlottingItem): boolean;
7020
7344
  /**
@@ -7263,12 +7587,17 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
7263
7587
  protected _doSetSimple(src: any): boolean;
7264
7588
  }
7265
7589
  declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
7590
+ _percent: number;
7266
7591
  _calcedColor: string;
7592
+ _calcedStroke: string;
7593
+ _legendKey: any;
7267
7594
  private _legendMarker;
7268
7595
  legendMarker(): RcElement;
7269
7596
  setLegendMarker(elt: RcElement): void;
7270
7597
  legendColor(): string;
7598
+ legendStroke(): string;
7271
7599
  legendLabel(): string;
7600
+ legendKey(): any;
7272
7601
  styleLegendMarker(marker: RcElement): void;
7273
7602
  isEmpty(): boolean;
7274
7603
  initPrev(axis: IAxis, prev: any): void;
@@ -7311,15 +7640,19 @@ declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = WidgetSerie
7311
7640
  private _centerYDim;
7312
7641
  private _othersGroup;
7313
7642
  private _groupedPoints;
7643
+ protected _sum: number;
7314
7644
  protected _doInit(op: OP): void;
7315
7645
  get othersGroup(): OthersGroup;
7646
+ get isWidget(): boolean;
7647
+ getSum(): number;
7316
7648
  getCenter(plotWidth: number, plotHeight: number): Point;
7317
7649
  protected _getLabelDefaultPos(labels: WidgetSeriesLabel, pos: PointLabelPosition): PointLabelPosition;
7318
7650
  needAxes(): boolean;
7319
7651
  _colorByPoint(): boolean;
7320
7652
  getLegendSources(list: ILegendSource[]): void;
7321
7653
  _isVisibleInLegend(p: WidgetSeriesPoint): boolean;
7322
- protected _doApply(options: OP): void;
7654
+ protected _doApply(op: OP): void;
7655
+ collectValues(axis: IAxis, vals: number[]): void;
7323
7656
  canMinPadding(axis: IAxis, min: number): boolean;
7324
7657
  canMaxPadding(axis: IAxis, max: number): boolean;
7325
7658
  protected _dataSourceChanged(): void;
@@ -8435,7 +8768,8 @@ interface AxisUnitLabelOptions extends AxisItemOptions {
8435
8768
  */
8436
8769
  interface AxisLineOptions extends AxisItemOptions {
8437
8770
  /**
8438
- * @override
8771
+ * @append
8772
+ *
8439
8773
  * 값이 undefined나 null이면, x축일 때 표시되고, y축이면 표시되지 않는다.
8440
8774
  *
8441
8775
  * @default undefined
@@ -8466,7 +8800,6 @@ interface AxisSectorLineOptions extends AxisLineOptions {
8466
8800
  */
8467
8801
  interface AxisTickOptions extends AxisItemOptions {
8468
8802
  /**
8469
- * @override
8470
8803
  * @default false
8471
8804
  */
8472
8805
  visible?: boolean;
@@ -8565,10 +8898,10 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
8565
8898
  */
8566
8899
  stepCount?: number;
8567
8900
  /**
8568
- * {@link stepPixels}가 적용 중일 때,
8569
- * 최대 표시 step 개수.<br/>
8570
- *
8571
- * @default 8
8901
+ * {@link stepPixels}가 적용 중일 때, 최대 표시 step 개수.<br/>
8902
+ * 값을 지정하지 않으면(undefined) 8 또는,
8903
+ * 축 길이를 {@link stepPixels) 보다 10% 작은 값으로 나눈 개수(더하기 1) 중 큰 값으로 설정된다.
8904
+ * 또, NaN이 되는 잘못된 값으로 설정하면 표시 개수가 제한되지 않는다.
8572
8905
  */
8573
8906
  maxCount?: number;
8574
8907
  /**
@@ -8579,7 +8912,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
8579
8912
  */
8580
8913
  steps?: (number | Date)[] | ((args: StepCallbackArgs) => (number | Date)[]);
8581
8914
  /**
8582
- * {@link steps}로 지정하는 경우, 설정된 범위 밖의 step들은 무시한다.<br/>
8915
+ * {@page steps}로 지정하는 경우, 설정된 범위 밖의 step들은 무시한다.<br/>
8583
8916
  */
8584
8917
  clipSteps?: boolean;
8585
8918
  /**
@@ -9005,7 +9338,8 @@ interface AxisRangeGuideOptions extends AxisGuideOptions {
9005
9338
  */
9006
9339
  interface AxisGridOptions extends AxisItemOptions {
9007
9340
  /**
9008
- * @override
9341
+ * @append
9342
+ *
9009
9343
  * polar 차트인 경우 명시적 false로 지정하지 않으면 true로 해석되고,
9010
9344
  * polar가 아닌 경우 undefined나 null로 지정한 경우 y축 그리드이면 true로 해석되고,
9011
9345
  * x축인 경우 명시적 true로 지정할 때만 표시된다.
@@ -9109,7 +9443,8 @@ interface CrosshairCallbackArgs {
9109
9443
  */
9110
9444
  interface CrosshairOptions extends ChartItemOptions {
9111
9445
  /**
9112
- * @override
9446
+ * @append
9447
+ *
9113
9448
  * @default false
9114
9449
  */
9115
9450
  visible?: boolean;
@@ -9215,18 +9550,19 @@ type AxisPosition = typeof _AxisPosition[keyof typeof _AxisPosition];
9215
9550
  */
9216
9551
  interface AxisScrollBarOptions extends AxisItemOptions {
9217
9552
  /**
9218
- * @override
9553
+ * @append
9554
+ *
9219
9555
  * @default false
9220
9556
  */
9221
9557
  visible?: boolean;
9222
9558
  /**
9223
- * 스크롤바 두께.
9559
+ * 스크롤바 두께.<br/>
9224
9560
  *
9225
9561
  * @default 10 픽셀
9226
9562
  */
9227
9563
  thickness?: number;
9228
9564
  /**
9229
- * 최소 thumb 길이.
9565
+ * 최소 thumb 길이.<br/>
9230
9566
  *
9231
9567
  * @default 32 픽셀
9232
9568
  */
@@ -9409,7 +9745,6 @@ interface AxisOptions extends ChartItemOptions {
9409
9745
  */
9410
9746
  unit?: string;
9411
9747
  /**
9412
- * @private
9413
9748
  * 축에 포함된 시리즈들 툴팁의 위쪽에 표시되는 텍스트 템플릿.<br/>
9414
9749
  *
9415
9750
  * tooltipHeader
@@ -9423,14 +9758,12 @@ interface AxisOptions extends ChartItemOptions {
9423
9758
  */
9424
9759
  tooltipHeader?: string;
9425
9760
  /**
9426
- * @private
9427
9761
  * 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
9428
9762
  *
9429
9763
  * @default '${series}:<b> ${yValue}</b>'
9430
9764
  */
9431
9765
  tooltipRow?: string;
9432
9766
  /**
9433
- * @private
9434
9767
  * 축에 포함된 시리즈들 툴팁의 아래쪽에 표시되는 텍스트 템플릿.<br/>
9435
9768
  *
9436
9769
  */
@@ -9537,11 +9870,11 @@ interface CategoryAxisOptions extends AxisOptions {
9537
9870
  /** @dummy */
9538
9871
  type?: typeof CategoryAxisType;
9539
9872
  /**
9540
- * @override
9873
+ * @append
9541
9874
  */
9542
9875
  tick?: CategoryAxisTickOptions | boolean;
9543
9876
  /**
9544
- * @override
9877
+ * @append
9545
9878
  */
9546
9879
  label?: CategoryAxisLabelOptions | boolean;
9547
9880
  /**
@@ -9692,7 +10025,7 @@ type AxisFit = typeof _AxisFit[keyof typeof _AxisFit];
9692
10025
  */
9693
10026
  interface ContinuousAxisLabelOptions extends AxisLabelOptions {
9694
10027
  /**
9695
- * @override
10028
+ * @append
9696
10029
  *
9697
10030
  * label에 표시될 숫자 값의 표시 형식.<br/>
9698
10031
  * 기본 설정이 최대 소숫점 두자리 까지 표시하는 것이므로 더 자세한 표시가 필요한 경우 재설정해야 한다.
@@ -9714,9 +10047,8 @@ interface ContinuousAxisOptions extends AxisOptions {
9714
10047
  */
9715
10048
  baseLine?: AxisBaseLineOptions;
9716
10049
  /**
9717
- * @override
10050
+ * @append
9718
10051
  *
9719
- * 명시적으로 지정하는 최소값.<br/>
9720
10052
  * 축에 연결된 data point들의 값으로 계산된 최소값보다 이 속성 값이 작으면 대신 이 값이 축의 최소값이 된다.
9721
10053
  * padding이 적용되므로 이 값에 정확이 맞추고 싶은 경우 {@link minPadding}을 0으로 설정한다.
9722
10054
  * 계산 최소값이 더 작으면 이 속성은 무시된다.<br/>
@@ -9724,9 +10056,8 @@ interface ContinuousAxisOptions extends AxisOptions {
9724
10056
  */
9725
10057
  minValue?: number;
9726
10058
  /**
9727
- * @override
10059
+ * @append
9728
10060
  *
9729
- * 명시적으로 지정하는 최대값.<br/>
9730
10061
  * 축에 연결된 data point들의 값으로 계산된 최대값보다 이 속성 값이 크면 대신 이 값이 축의 최대값이 된다.
9731
10062
  * padding이 적용되므로 이 값에 정확이 맞추고 싶은 경우 {@link maxPadding}을 0으로 설정한다.
9732
10063
  * 계산 최대값이 더 크면 이 속성은 무시된다.\
@@ -9761,6 +10092,7 @@ interface ContinuousAxisOptions extends AxisOptions {
9761
10092
  padding?: number | [number, number][] | string;
9762
10093
  /**
9763
10094
  * 첫번째 tick 앞쪽에 추가되는 최소 여백을 전체 값 범위에 대한 비율로 지정한다.<br/>
10095
+ * 또는 'px'로 끝나는 문자열인 경우, 해당 픽셀 정도의 여백이 생길 수 있도록 조정된다.<br/>
9764
10096
  * 이 값을 지정하지 않으면 {@link padding}에 지정된 값을 따른다.
9765
10097
  * {@link startFit}이 {@link AxitFit.TICK TICK}일 때,
9766
10098
  * data point의 최소값과 첫번째 tick 사이에 이미 그 이상의 간격이 존재한다면 이 속성은 무시된다.
@@ -9770,6 +10102,7 @@ interface ContinuousAxisOptions extends AxisOptions {
9770
10102
  minPadding?: number | [number, number][] | string;
9771
10103
  /**
9772
10104
  * 마지막 tick 뒤쪽에 추가되는 최소 여백을 전체 값 범위에 대한 비율로 지정한다.<br/>
10105
+ * 또는 'px'로 끝나는 문자열인 경우, 해당 픽셀 정도의 여백이 생길 수 있도록 조정된다.<br/>
9773
10106
  * 이 값을 지정하지 않으면 {@link padding}에 지정된 값을 따른다.
9774
10107
  * {@link endFit}이 {@link endFit tick}일 때,
9775
10108
  * data point의 최대값과 마지막 tick 사이에 이미 그 이상의 간격이 존재한다면 이 속성은 무시된다.
@@ -9808,15 +10141,15 @@ interface ContinuousAxisOptions extends AxisOptions {
9808
10141
  */
9809
10142
  endFit?: AxisFit;
9810
10143
  /**
9811
- * @override
10144
+ * @append
9812
10145
  */
9813
10146
  tick?: ContinuousAxisTickOptions | boolean;
9814
10147
  /**
9815
- * @override
10148
+ * @append
9816
10149
  */
9817
10150
  grid?: ContinuousAxisGridOptions | boolean;
9818
10151
  /**
9819
- * @override
10152
+ * @append
9820
10153
  */
9821
10154
  break?: AxisBreakOptions;
9822
10155
  }
@@ -9842,11 +10175,10 @@ declare const LinearAxisType = "linear";
9842
10175
  *
9843
10176
  */
9844
10177
  interface LinearAxisOptions extends ContinuousAxisOptions {
9845
- /**
9846
- */
10178
+ /** @dummy */
9847
10179
  type?: typeof LinearAxisType;
9848
10180
  /**
9849
- * @override
10181
+ * @append
9850
10182
  */
9851
10183
  label?: LinearAxisLabelOptions | boolean;
9852
10184
  }
@@ -9857,18 +10189,18 @@ interface LinearAxisOptions extends ContinuousAxisOptions {
9857
10189
  */
9858
10190
  interface LogAxisTickOptions extends ContinuousAxisTickOptions {
9859
10191
  /**
9860
- * @append
9861
- *
9862
10192
  * 로그를 적용한 값으로 설정한다.
9863
10193
  */
9864
10194
  baseValue?: number;
9865
10195
  /**
9866
10196
  * @append
10197
+ *
9867
10198
  * 로그를 적용한 값으로 설정한다. // #141
9868
10199
  */
9869
10200
  stepInterval?: number;
9870
10201
  /**
9871
10202
  * @append
10203
+ *
9872
10204
  * 로그를 적용한 값으로 설정한다.
9873
10205
  */
9874
10206
  steps?: (number | Date)[] | ((args: StepCallbackArgs) => (number | Date)[]);
@@ -9888,11 +10220,10 @@ declare const LogAxisType = "log";
9888
10220
  *
9889
10221
  */
9890
10222
  interface LogAxisOptions extends ContinuousAxisOptions {
9891
- /**
9892
- */
10223
+ /** @dummy */
9893
10224
  type?: typeof LogAxisType;
9894
10225
  /**
9895
- * @override
10226
+ * @append
9896
10227
  */
9897
10228
  tick?: LogAxisTickOptions | boolean;
9898
10229
  /**
@@ -9939,7 +10270,7 @@ interface TimeAxisTickOptions extends ContinuousAxisTickOptions {
9939
10270
  */
9940
10271
  stepInterval?: number;
9941
10272
  /**
9942
- * @override
10273
+ * @append
9943
10274
  */
9944
10275
  label?: TimeAxisLabelOptions | boolean;
9945
10276
  }
@@ -9951,20 +10282,20 @@ declare const TimeAxisType = "time";
9951
10282
  *
9952
10283
  */
9953
10284
  interface TimeAxisOptions extends ContinuousAxisOptions {
9954
- /**
9955
- */
10285
+ /** @dummy */
9956
10286
  type?: typeof TimeAxisType;
9957
10287
  /**
9958
- * @override
10288
+ * @append
9959
10289
  */
9960
10290
  label?: TimeAxisLabelOptions | boolean;
9961
10291
  /**
9962
- * @override
10292
+ * @append
10293
+ *
9963
10294
  * @default NaN
9964
10295
  */
9965
10296
  baseValue?: number;
9966
10297
  /**
9967
- * @override
10298
+ * @append
9968
10299
  */
9969
10300
  tick?: TimeAxisTickOptions | boolean;
9970
10301
  }
@@ -10278,7 +10609,8 @@ interface BulletGaugeBandOptions extends ChartItemOptions {
10278
10609
  */
10279
10610
  interface BulletTargetBarOptions extends ChartItemOptions {
10280
10611
  /**
10281
- * @override
10612
+ * @append
10613
+ *
10282
10614
  * @default true
10283
10615
  */
10284
10616
  visible: boolean;
@@ -10569,7 +10901,8 @@ interface CircularGaugeGroupOptions extends GaugeGroupOptions<CircleGaugeOptions
10569
10901
  */
10570
10902
  interface GaugeRangeLabelOptions extends ChartItemOptions {
10571
10903
  /**
10572
- * @override
10904
+ * @append
10905
+ *
10573
10906
  * @default false
10574
10907
  */
10575
10908
  visible?: boolean;
@@ -10580,7 +10913,8 @@ interface GaugeRangeLabelOptions extends ChartItemOptions {
10580
10913
  */
10581
10914
  interface GaugeRangeBandOptions extends ChartItemOptions {
10582
10915
  /**
10583
- * @override
10916
+ * @append
10917
+ *
10584
10918
  * @default false
10585
10919
  */
10586
10920
  visible?: boolean;
@@ -10697,11 +11031,13 @@ interface GaugeScaleOptions extends ChartItemOptions {
10697
11031
  */
10698
11032
  interface CircleGaugeScaleOptions extends GaugeScaleOptions {
10699
11033
  /**
10700
- * @override
11034
+ * @append
11035
+ *
10701
11036
  * @default false
10702
11037
  */
10703
11038
  /**
10704
- * @override
11039
+ * @append
11040
+ *
10705
11041
  * @default 72
10706
11042
  */
10707
11043
  stepPixels: number;
@@ -10760,7 +11096,8 @@ interface CircleGaugeValueRimOptions extends CircleGaugeRimBaseOptions {
10760
11096
  */
10761
11097
  interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
10762
11098
  /**
10763
- * @override
11099
+ * @append
11100
+ *
10764
11101
  * @default false
10765
11102
  */
10766
11103
  visible?: boolean;
@@ -10769,7 +11106,8 @@ interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
10769
11106
  */
10770
11107
  interface CircleGaugeHandOptions extends ChartItemOptions {
10771
11108
  /**
10772
- * @override
11109
+ * @append
11110
+ *
10773
11111
  * @default false
10774
11112
  */
10775
11113
  visible?: boolean;
@@ -10799,7 +11137,8 @@ interface CircleGaugeHandOptions extends ChartItemOptions {
10799
11137
  */
10800
11138
  interface CircleGaugePinOptions extends ChartItemOptions {
10801
11139
  /**
10802
- * @override
11140
+ * @append
11141
+ *
10803
11142
  * @default false
10804
11143
  */
10805
11144
  visible?: boolean;
@@ -10864,11 +11203,11 @@ declare const CircleGaugeGroupType = "circlegroup";
10864
11203
  * @modules gauge
10865
11204
  */
10866
11205
  interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
10867
- /**
10868
- */
11206
+ /** @dummy */
10869
11207
  type?: typeof CircleGaugeGroupType;
10870
11208
  /**
10871
- * @override
11209
+ * @append
11210
+ *
10872
11211
  * @default '50%'
10873
11212
  */
10874
11213
  innerRadius?: PercentSize;
@@ -11894,6 +12233,7 @@ interface IChart {
11894
12233
  _isDataChanged(): boolean;
11895
12234
  getAxisOf(annotation: Annotation, isX: boolean): IAxis;
11896
12235
  isValidAxis(axis: IAxis): boolean;
12236
+ getPaletteColors(palette: string): string[];
11897
12237
  }
11898
12238
  /**
11899
12239
  * 차트 제작 주체 등을 표시하는 영역에 대한 모델.<br/>
@@ -11977,6 +12317,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
11977
12317
  _exporter: Exporter;
11978
12318
  _width: number;
11979
12319
  _height: number;
12320
+ private _palColors;
11980
12321
  private _params;
11981
12322
  private _inverted;
11982
12323
  private _splitted;
@@ -12089,6 +12430,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
12089
12430
  addSeries(source: any, animate: boolean): Series;
12090
12431
  removeSeries(series: string | Series, animate: boolean): Series;
12091
12432
  render(): void;
12433
+ getPaletteColors(palette: string): string[];
12092
12434
  private $_loadTemplates;
12093
12435
  _getGroupType(type: string): any;
12094
12436
  _getSeriesType(type: string): any;
@@ -12832,7 +13174,7 @@ declare class ContinuousAxisTick<OP extends ContinuousAxisTickOptions = Continuo
12832
13174
  protected _getValidInterval(axis: ContinuousAxis, v: any, length: number, min: number, max: number): any;
12833
13175
  buildSteps(axis: ContinuousAxis, length: number, base: number, min: number, max: number, broken?: boolean): number[];
12834
13176
  getNextStep(step: number, delta: number): number;
12835
- getMaxCount(): number;
13177
+ getMaxCount(len: number, stepPixels: number): number;
12836
13178
  canUseNumSymbols(): boolean;
12837
13179
  protected _doApply(op: OP): void;
12838
13180
  private $_getStepPixels;
@@ -12919,6 +13261,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12919
13261
  _calcedMax: number;
12920
13262
  _fixedMin: number;
12921
13263
  _fixedMax: number;
13264
+ private _prevSteps;
12922
13265
  /** y축으로 사용될 때만 적용한다. */
12923
13266
  private _breaks;
12924
13267
  private _mergedBreaks;
@@ -12930,8 +13273,6 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12930
13273
  /**
12931
13274
  * base value 위치에 표시되는 선분 설정 모델.<br/>
12932
13275
  * 기본적으로 표시되지 않는다.
12933
- *
12934
- *
12935
13276
  */
12936
13277
  get baseLine(): AxisBaseLine;
12937
13278
  /**
@@ -12939,13 +13280,11 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12939
13280
  */
12940
13281
  get break(): AxisBreak;
12941
13282
  /**
12942
- * @override
12943
- *
13283
+ * @append
12944
13284
  */
12945
13285
  get tick(): ContinuousAxisTick;
12946
13286
  /**
12947
- * @override
12948
- *
13287
+ * @append
12949
13288
  */
12950
13289
  get grid(): ContinuousAxisGrid;
12951
13290
  getBaseValue(): number;
@@ -12960,8 +13299,6 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12960
13299
  protected _createTickModel(): ContinuousAxisTick;
12961
13300
  protected abstract _createLabel(): ContinuousAxisLabel;
12962
13301
  protected _doPrepareRender(): void;
12963
- private _calcedSteps;
12964
- private _prevSteps;
12965
13302
  private $_trim;
12966
13303
  private $_trimSteps;
12967
13304
  protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
@@ -13005,8 +13342,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
13005
13342
  declare class LinearAxis extends ContinuousAxis<LinearAxisOptions> {
13006
13343
  static type: string;
13007
13344
  /**
13008
- * @override
13009
- *
13345
+ * @append
13010
13346
  */
13011
13347
  get label(): LinearAxisLabel;
13012
13348
  protected _createLabel(): ContinuousAxisLabel;
@@ -13255,6 +13591,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
13255
13591
  static readonly DATA_UNHOVER = "unhover";
13256
13592
  static readonly LEGEND_MARKER = "rct-legend-item-marker";
13257
13593
  static register(...clses: [typeof Series<SeriesOptions>, typeof SeriesView<Series>][]): void;
13594
+ static isPointDom(dom: any): dom is Element;
13258
13595
  _simpleMode: boolean;
13259
13596
  protected _pointContainer: PointContainer;
13260
13597
  _labelContainer: PointLabelContainer;
@@ -13282,8 +13619,8 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
13282
13619
  protected _doViewRateChanged(rate: number): void;
13283
13620
  protected _doPosRateChanged(rate: number): void;
13284
13621
  protected _doPrevRateChanged(rate: number): void;
13285
- _animationStarted(ani: Animation): void;
13286
- _animationFinished(ani: Animation): void;
13622
+ _animationStarted(ani: any): void;
13623
+ _animationFinished(ani: any): void;
13287
13624
  protected abstract _getPointPool(): ElementPool<RcElement>;
13288
13625
  pointByDom(elt: Element): IPointView;
13289
13626
  getPointView(p: DataPoint): RcElement;
@@ -13361,21 +13698,27 @@ declare abstract class BoxPointElement extends PointElement {
13361
13698
  xSave: number;
13362
13699
  savePrevs(): void;
13363
13700
  }
13364
- declare class BarElement extends BoxPointElement {
13365
- layout(x: number, y: number, rTop: number, rBottom: number, base: number, side: number, inverted: boolean): void;
13366
- }
13367
- declare class Bar3DElement extends RcElement implements IPointView {
13701
+ declare abstract class PointElementEx extends RcElement implements IPointView {
13368
13702
  point: DataPoint;
13703
+ constructor(doc: Document);
13704
+ savePrevs(): void;
13705
+ }
13706
+ declare abstract class BoxPointElementEx extends PointElementEx {
13369
13707
  wPoint: number;
13370
13708
  hPoint: number;
13371
13709
  wSave: number;
13372
13710
  xSave: number;
13711
+ savePrevs(): void;
13712
+ }
13713
+ declare class BarElement extends BoxPointElement {
13714
+ layout(x: number, y: number, rTop: number, rBottom: number, base: number, side: number, inverted: boolean): void;
13715
+ }
13716
+ declare class Bar3DElement extends BoxPointElementEx {
13373
13717
  private _topView;
13374
13718
  private _frontView;
13375
13719
  private _sideView;
13376
13720
  constructor(doc: Document);
13377
13721
  layout(x: number, y: number, rTop: number, rBottom: number, base: number, side: number, inverted: boolean): void;
13378
- savePrevs(): void;
13379
13722
  }
13380
13723
  declare abstract class ClusterableSeriesView<T extends Series = Series> extends SeriesView<T> {
13381
13724
  protected _labelInfo: LabelLayoutInfo;
@@ -13392,6 +13735,10 @@ declare abstract class ClusterableSeriesView<T extends Series = Series> extends
13392
13735
  declare abstract class BasedSeriesView<T extends BasedSeries> extends ClusterableSeriesView<T> {
13393
13736
  private _labelLineContainer;
13394
13737
  protected _pointOff: number;
13738
+ protected _reversed: boolean;
13739
+ protected _yLen: number;
13740
+ protected _baseVal: number;
13741
+ protected _yBase: number;
13395
13742
  protected _depthAngle: number;
13396
13743
  protected _base: number;
13397
13744
  protected _side: number;
@@ -13399,6 +13746,7 @@ declare abstract class BasedSeriesView<T extends BasedSeries> extends Clusterabl
13399
13746
  depthEnabled(): boolean;
13400
13747
  protected _prepareSeries(doc: Document, model: T, polar: boolean, depth: BodyDepth): void;
13401
13748
  protected _doPrevRateChanged(rate: number): void;
13749
+ protected _prepareLayoutPoints(width: number, height: number): void;
13402
13750
  protected _layoutPoints(width: number, height: number): void;
13403
13751
  protected _layoutLabel(model: DataPointLabel, info: LabelLayoutInfo, w: number, h: number): void;
13404
13752
  }
@@ -13882,7 +14230,7 @@ declare class TimeAxis extends ContinuousAxis<TimeAxisOptions> {
13882
14230
  static defaults: TimeAxisOptions;
13883
14231
  _offset: number;
13884
14232
  /**
13885
- * @override
14233
+ * @append
13886
14234
  */
13887
14235
  get label(): TimeAxisLabel;
13888
14236
  protected _createTickModel(): TimeAxisTick;
@@ -14172,7 +14520,7 @@ declare class BarSeriesPoint extends DataPoint {
14172
14520
  * 원래 차지할 너비에 대한 상대값. 1이면 원래대로 표시된다.
14173
14521
  */
14174
14522
  width?: number;
14175
- protected _readObject(series: BarSeries, v: any): void;
14523
+ protected _readObject(series: BarSeriesBase, v: any): void;
14176
14524
  }
14177
14525
  /**
14178
14526
  * Bar 시리즈 계열의 기반(base) 모델.<br/>
@@ -14802,6 +15150,26 @@ declare class Color {
14802
15150
  private $_parseNumber;
14803
15151
  }
14804
15152
 
15153
+ /**
15154
+ * @private
15155
+ *
15156
+ * Utilities for HTML element.
15157
+ */
15158
+ declare class Dom {
15159
+ static clearChildren(parent: Element): void;
15160
+ static remove(elt: Node): null;
15161
+ static htmlEncode(text: string): string;
15162
+ static setAttrs(dom: Element, attrs: object): void;
15163
+ static setImportantStyle(css: CSSStyleDeclaration, property: string, value: string): void;
15164
+ static getPadding(dom: HTMLElement | SVGElement): ISides;
15165
+ static hasFill(path: Element): boolean;
15166
+ static setVisible(dom: HTMLElement | SVGElement, visible: boolean, style?: string): boolean;
15167
+ static setClipPath(dom: Element, clip: string | SVGClipPathElement): void;
15168
+ static createClipRect(doc: Document, id: string): SVGClipPathElement;
15169
+ static setRect(dom: Element, r: IRect): Element;
15170
+ static setBounds(dom: Element, x: number, y: number, width: number, height: number): Element;
15171
+ }
15172
+
14805
15173
  declare abstract class BarSeriesViewBase<T extends BarSeriesBase> extends BasedSeriesView<T> {
14806
15174
  private _deep;
14807
15175
  private _bars;
@@ -14816,6 +15184,9 @@ declare abstract class BarSeriesViewBase<T extends BarSeriesBase> extends BasedS
14816
15184
  private $_parepareSectors;
14817
15185
  private $_layoutSectors;
14818
15186
  }
15187
+ /**
15188
+ * @private
15189
+ */
14819
15190
  declare class BarSeriesView<T extends BarSeries = BarSeries> extends BarSeriesViewBase<T> {
14820
15191
  protected _rdTop: number;
14821
15192
  protected _rdBottom: number;
@@ -14896,15 +15267,16 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
14896
15267
  }
14897
15268
 
14898
15269
  declare abstract class SeriesAnimation {
14899
- static reveal(series: SeriesView<Series>, options?: IRevealAnimation): void;
14900
- static grow(series: SeriesView<Series>, endHandler?: RcAnimationEndHandler): void;
14901
- static spread(series: SeriesView<Series>, endHandler?: RcAnimationEndHandler): void;
15270
+ static reveal(series: SeriesView, options: IRevealAnimation): void;
15271
+ static grow(series: SeriesView, endHandler?: RcAnimationEndHandler): void;
15272
+ static spread(series: SeriesView, endHandler?: RcAnimationEndHandler): void;
14902
15273
  static fadeIn(series: SeriesView<Series>): void;
14903
- constructor(sv: SeriesView<Series>, options?: any);
14904
- protected abstract _createAnimation(series: SeriesView<Series>, options?: any): Animation | RcAnimation;
15274
+ constructor(sv: SeriesView, options?: any);
15275
+ protected abstract _createAnimation(series: SeriesView, options?: any): Animation | RcAnimation;
14905
15276
  }
14906
15277
  interface IRevealAnimation {
14907
15278
  from: 'left' | 'right' | 'top' | 'bottom';
15279
+ view?: RcElement;
14908
15280
  }
14909
15281
 
14910
15282
  interface ILine {
@@ -14995,6 +15367,7 @@ declare class ArcElement extends PathElement {
14995
15367
  setArc(cx: number, cy: number, rd: number, start: number, angle: number, clockwise: boolean): void;
14996
15368
  }
14997
15369
 
15370
+ declare const SVGNS = "http://www.w3.org/2000/svg";
14998
15371
  declare const isObject: (v: any) => boolean;
14999
15372
  /** @private */
15000
15373
  declare const isArray: (arg: any) => arg is any[];
@@ -15173,4 +15546,4 @@ declare const createChart: typeof Globals.createChart;
15173
15546
  declare const createData: typeof Globals.createData;
15174
15547
  declare const setLicenseKey: typeof Globals.setLicenseKey;
15175
15548
 
15176
- export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, 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, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, 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, IAxis, IAxisTick, IChart, ICircularGaugeExtents, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, LayerElement, Legend, LegendOptions, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelView, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
15549
+ export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPointElementEx, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, 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, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, 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, IAxis, IAxisTick, IChart, ICircularGaugeExtents, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendOptions, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, 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, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };