realchart 1.4.4 → 1.4.5

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,211 @@ 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
+ * @private
4747
+ *
4748
+ * pictorial bar 시리즈.<br/>
4749
+ * {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'pictorialbar'이다.<br/>
4750
+ * 데이터포인트 bar 위에 svg나 이미지로 데이터포인트와 관련된 그림(figure)을 표시한다.
4751
+ */
4752
+ interface PictorialBarSeriesOptions extends BarSeriesBaseOptions {
4753
+ /** @dummy */
4754
+ type?: typeof PictorialBarSeriesType;
4755
+ /**
4756
+ * svg나 이미지 figure와 bar를 표시하는 방식.<br/>
4757
+ *
4758
+ * @default 'auto'
4759
+ */
4760
+ mode?: PictorialBarMode;
4761
+ /**
4762
+ * svg 단일 path 또는 path 목록.<br/>
4763
+ * path 목록이면 모두 합쳐진 path로 그려진다.
4764
+ * svg로 figure를 지정하면 데이터포인트의 'fill'이나 'stroke' 스타일을 따라간다.<br/>
4765
+ * {@link figureByPoint}를 지정해서 데이터포인트별로 svg를 표시하려면
4766
+ * {@link figureImage}에 복수 개로 지정한다.
4767
+ */
4768
+ figurePath?: string | string[];
4769
+ /**
4770
+ * {@link figureImage} 목록이나, {@link figureField}로 설정된 모든 이미지 경로 앞에 추가되는 경로.<br/>
4771
+ */
4772
+ figureImageRoot?: string;
4773
+ /**
4774
+ * figure 이미지 url 또는 url 배열.<br/>
4775
+ * 데이터포인트 구성 json의 {@link figureField}로 지정한 속성에 이미지 index를 지정할 수 있다.
4776
+ */
4777
+ figureImage?: string | string[];
4778
+ /**
4779
+ * true로 지정하면 {@link figureImage}가 배열인 경우, 데이터포인트 별로 {@link figureField}에 지정된 index나,
4780
+ * 데이터포인트 index에 따라 자동 지정된다.<br/>
4781
+ */
4782
+ figureByPoint?: boolean;
4783
+ /**
4784
+ * json 객체나 배열로 전달되는 데이터포인트 정보에서 figure 값을 지정하는 속성명이나 인덱스 또는,
4785
+ * 전달되는 json 객체에서 figure 값을 리턴하는 함수.<br/>
4786
+ * 지정하지 않거나(undefined) 값이 undefined이면, 데이터포인트의 값이 객체일 때 'figure' 속성 값이 사용된다.
4787
+ */
4788
+ figureField?: string | number | Function;
4789
+ /**
4790
+ * 데이터포인트 bar 너비에 대한 figure의 상대 너비.<br/>
4791
+ * 1이면 bar 너비와 동일한 크기로 figure의 너비가 표시된다.
4792
+ * 0보다 큰 값으로 지정한다.
4793
+ * 잘못된 값을 지정하면 1로 표시된다.<br/>
4794
+ * 이렇게 결정된 너비에 맞게 figure의 높이가 자동 결정된다.
4795
+ * figure의 높이가 데이터포인트 높이 보다 크면 bar 부분은 표시되지 않는다.
4796
+ *
4797
+ * @default '100%'
4798
+ */
4799
+ figureWidth?: PercentSize;
4800
+ /**
4801
+ * figure와 bar 사이의 간격.<br/>
4802
+ *
4803
+ * @default 0
4804
+ */
4805
+ figureGap?: number;
4806
+ /**
4807
+ * 지정한 반지름 크기로 데이터포인트 bar의 위쪽 모서리를 둥글게 표시한다.<br/>
4808
+ * 최대값이 bar 폭으로 절반으로 제한되므로 아주 큰 값을 지정하면 반원으로 표시된다.
4809
+ */
4810
+ topRadius?: number;
4811
+ /**
4812
+ * 지정한 반지름 크기로 데이터포인트 bar의 아래쪽 모서리를 둥글게 표시한다.<br/>
4813
+ * 최대값이 bar 폭으로 절반으로 제한되므로 아주 큰 값을 지정하면 반원으로 표시된다.
4814
+ */
4815
+ bottomRadius?: number;
4816
+ }
4817
+ /**
4818
+ * Pictorial 시리즈의 point label 옵션.<br/>
4819
+ * position이 'default'이면 'inside'로 표시된다.
4820
+ * 라벨들이 겹치면 값이 적은 것들 순서대로 감춘다.
4821
+ */
4822
+ interface PictorialSeriesLabelOptions extends WidgetSeriesLabelOptions {
4823
+ /**
4824
+ * true로 지정하면 반대쪽(왼편)에 표시한다.
4825
+ */
4826
+ opposite?: boolean;
4827
+ }
4828
+ declare const PictorialSeriesType = "pictorial";
4829
+ /**
4830
+ * pictorial 시리즈.<br/>
4831
+ * {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'pictorial'이다.<br/>
4832
+ * SVG 이미지 하나를 값에 따라 수평 또는 수직 방향의 여러 영역으로 분할해서 표시한다.
4833
+ */
4834
+ interface PictorialSeriesOptions extends WidgetSeriesOptions {
4835
+ /** @dummy */
4836
+ type?: typeof PictorialSeriesType;
4837
+ /**
4838
+ * @append
4839
+ */
4840
+ pointLabel?: PictorialSeriesLabelOptions;
4841
+ /**
4842
+ * 이 값을 지정하지 않으면 데이터포인트들의 값을 모두 더한 것을 합계로 사용한다.<br/>
4843
+ * 숫자 또는 '%'로 끝나는 데이터포인트 합계에 대한 백분율로 지정할 수 있다.
4844
+ * 실제 합계 이하로 지정하면 무시한다.
4845
+ * 각 데이터포인트들은 합계에 대한 비율 크기로 표시된다.
4846
+ */
4847
+ total?: PercentSize;
4848
+ /**
4849
+ * svg 단일 path 또는 path 목록.<br/>
4850
+ */
4851
+ figure?: string | string[];
4852
+ /**
4853
+ * Pictorial의 크기.<br/>
4854
+ * 픽셀 크기나 {@link https://realchart.co.kr/config/config/body body} 영역 크기에 대한 상대적 크기로 지정할 수 있다.
4855
+ * '100%'로 지정하면 plot 영역의 너비나 높이 중 작은 크기와 동일한 크기로 표시된다.<br/>
4856
+ * 또, {@link width}나 {@link height}로 각각 다른 크기를 지정할 수도 있다.
4857
+ *
4858
+ * @default '90%'
4859
+ */
4860
+ size?: PercentSize;
4861
+ /**
4862
+ * {@link Pictorial} 표시 너비를 pixel이나 body 너비에 대한 비율(%)로 지정한다.<br/>
4863
+ * 이 크기를 지정하지 않으면 {@link size} 설정에 맞게 자동으로 적용된다.
4864
+ * {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg 크기대료 표시된다.
4865
+ */
4866
+ width?: PercentSize;
4867
+ /**
4868
+ * {@link Pictorial} 표시 너비를 pixel이나 body 높이에 대한 비율(%)로 지정한다.<br/>
4869
+ * 이 크기를 지정하지 않으면 {@link size} 설정에 맞게 자동으로 적용된다.
4870
+ * {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg 크기대료 표시된다.
4871
+ */
4872
+ height?: PercentSize;
4873
+ /**
4874
+ * 데이터포인트 표시 방향.<br/>
4875
+ *
4876
+ * @default 'row'
4877
+ */
4878
+ direction?: 'row' | 'column';
4879
+ /**
4880
+ * false면 {@link direction}이 'row'일 때 아래에서 위로, 아니면 왼쪽에서 오른쪽으로 배치된다.<br/>
4881
+ * true면 반대로 배치된다.
4882
+ *
4883
+ * @default false
4884
+ */
4885
+ reversed?: boolean;
4886
+ }
4617
4887
  interface RaceCallbackArgs {
4618
4888
  race: any;
4619
4889
  }
@@ -4728,7 +4998,7 @@ declare const BarSeriesTypes: {
4728
4998
  /** @dummy */
4729
4999
  type BarSeriesOptionsType = typeof BarSeriesTypes[keyof typeof BarSeriesTypes];
4730
5000
  /** @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;
5001
+ 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
5002
 
4733
5003
  /**
4734
5004
  * 차트 제목(title) 설정 옵션.<br/>
@@ -4752,9 +5022,9 @@ type SeriesOptionsType = SeriesOptions | SeriesGroupOptions | BarRangeSeriesOpti
4752
5022
  */
4753
5023
  interface TitleOptions extends ChartItemOptions {
4754
5024
  /**
4755
- * @override
5025
+ * @append
4756
5026
  *
4757
- * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.
5027
+ * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.<br/>
4758
5028
  *
4759
5029
  * @default true
4760
5030
  */
@@ -4766,7 +5036,7 @@ interface TitleOptions extends ChartItemOptions {
4766
5036
  */
4767
5037
  text?: string;
4768
5038
  /**
4769
- * 정렬 기준.
5039
+ * 정렬 기준.<br/>
4770
5040
  * 시리즈들이 그려지는 plotting 영역이나,
4771
5041
  * 차트 전체 영역을 기준으로 할 수 있다.
4772
5042
  * 또, {@link https://realchart.co.kr/config/config/subtitle 부제목}인 경우 제목을 기준으로 위치를 지정할 수 있다.
@@ -4775,19 +5045,19 @@ interface TitleOptions extends ChartItemOptions {
4775
5045
  */
4776
5046
  alignBase?: AlignBase;
4777
5047
  /**
4778
- * 수평 정렬.
5048
+ * 수평 정렬.<br/>
4779
5049
  *
4780
5050
  * @default 'center'
4781
5051
  */
4782
5052
  align?: Align;
4783
5053
  /**
4784
- * 수직 정렬.
5054
+ * 수직 정렬.<br/>
4785
5055
  *
4786
5056
  * @default 'middle'
4787
5057
  */
4788
5058
  verticalAlign?: VerticalAlign;
4789
5059
  /**
4790
- * 배경 {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
5060
+ * 배경 {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.<br/>
4791
5061
  */
4792
5062
  backgroundStyle?: SVGStyleOrClass;
4793
5063
  /**
@@ -4871,31 +5141,33 @@ type SubtitlePosition = typeof _SubtitlePosition[keyof typeof _SubtitlePosition]
4871
5141
  */
4872
5142
  interface SubtitleOptions extends TitleOptions {
4873
5143
  /**
4874
- * 표시 위치.
5144
+ * 표시 위치.<br/>
4875
5145
  *
4876
5146
  * @default 'bottom'
4877
5147
  */
4878
5148
  position?: SubtitlePosition;
4879
5149
  /**
4880
- * 주 제목과 사이의 간격.
5150
+ * 주 제목과 사이의 간격.<br/>
4881
5151
  *
4882
5152
  * @default 2
4883
5153
  */
4884
5154
  titleGap?: number;
4885
5155
  /**
4886
- * @override
5156
+ * @append
5157
+ *
4887
5158
  * @default 'bottom'
4888
5159
  */
4889
5160
  verticalAlign?: VerticalAlign;
4890
5161
  /**
4891
- * @override
5162
+ * @append
5163
+ *
4892
5164
  * @default ''
4893
5165
  */
4894
5166
  text?: string;
4895
5167
  /**
4896
- * @override
5168
+ * @append
4897
5169
  *
4898
- * {@link position}가 'leftSide' 이거나 'rightSide'인 경우 해당 속성은 무시된다.
5170
+ * {@link position}가 'leftSide' 이거나 'rightSide'인 경우 해당 속성은 무시된다.<br/>
4899
5171
  *
4900
5172
  * @default 0
4901
5173
  */
@@ -4921,28 +5193,28 @@ interface ChartOptionsOptions extends ChartItemOptions {
4921
5193
  */
4922
5194
  theme?: string;
4923
5195
  /**
4924
- * 시리즈 및 데이터포인트에 적용되는 기본 색상 팔레트 이름.
5196
+ * 시리즈 및 데이터포인트에 적용되는 기본 색상 팔레트 이름.<br/>
4925
5197
  */
4926
5198
  palette?: string;
4927
5199
  /**
4928
- * {@link palette}로 지정된 팔레트 색상들을 시리즈에 적용하는 방식.
5200
+ * {@link palette}로 지정된 팔레트 색상들을 시리즈에 적용하는 방식.<br/>
4929
5201
  *
4930
5202
  * @default 'normal'
4931
5203
  */
4932
5204
  paletteMode?: PaletteMode;
4933
5205
  /**
4934
- * 시리즈 옵션 colorByPoint가 true일 때 적용되는 데이터포인트들의 색상 목록.
5206
+ * 시리즈 옵션 colorByPoint가 true일 때 적용되는 데이터포인트들의 색상 목록.<br/>
4935
5207
  * 시리즈 옵션 colors가 지정되면 이 속성은 무시된다.
4936
5208
  */
4937
5209
  colors?: string[];
4938
5210
  /**
4939
- * false로 지정하면 차트 전체척으로 animation 효과를 실행하지 않는다.
5211
+ * false로 지정하면 차트 전체척으로 animation 효과를 실행하지 않는다.<br/>
4940
5212
  *
4941
5213
  * @default true
4942
5214
  */
4943
5215
  animatable?: boolean;
4944
5216
  /**
4945
- * javascript에서 숫자 단위로 전달되는 날짜값은 기본적으로 local이 아니라 new Date 기준이다.
5217
+ * javascript에서 숫자 단위로 전달되는 날짜값은 기본적으로 local이 아니라 new Date 기준이다.<br/>
4946
5218
  * 그러므로 보통 숫자로 지정된 날짜값은 utc 값이다.
4947
5219
  * local 기준으로 표시하기 위해, 숫자로 지정된 날짜값에 더해야 하는 시간을 분단위로 지정한다.<br/>
4948
5220
  * ex) 한국은 -9 * 60
@@ -4985,7 +5257,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
4985
5257
  */
4986
5258
  axisGap?: number;
4987
5259
  /**
4988
- * @deprecated v1.3.15 이후로, {@link https://realchart.co.kr/config/config/credits credits}으로 대신 설정한다.
5260
+ * @deprecated v1.3.15 이후로, {@link https://realchart.co.kr/config/config/credits credits}으로 대신 설정한다.<br/>
4989
5261
  *
4990
5262
  * 크레딧 모델.<br/>
4991
5263
  */
@@ -5037,10 +5309,10 @@ type ZoomType = typeof _ZoomType[keyof typeof _ZoomType];
5037
5309
  */
5038
5310
  interface ZoomButtonOptions extends ChartItemOptions {
5039
5311
  /**
5040
- * @override
5312
+ * @append
5041
5313
  *
5042
5314
  * 명시적 false로 지정한 경우가 아닐 때,
5043
- * 이미 zoom된 상태이거나, zoom 가능하면 표시된다.
5315
+ * 이미 zoom된 상태이거나, zoom 가능하면 표시된다.<br/>
5044
5316
 
5045
5317
  * @default undefined
5046
5318
  */
@@ -5050,15 +5322,15 @@ interface ZoomButtonOptions extends ChartItemOptions {
5050
5322
  */
5051
5323
  interface EmptyViewOptions extends ChartTextOptions {
5052
5324
  /**
5053
- * @override
5325
+ * @append
5054
5326
  *
5055
- * false로 지정하면 표시돼야할 상황에서도 표시되지 않는다.
5327
+ * false로 지정하면 표시돼야할 상황에서도 표시되지 않는다.<br/>
5056
5328
  *
5057
5329
  * @default undefined
5058
5330
  */
5059
5331
  visible?: boolean;
5060
5332
  /**
5061
- * @override
5333
+ * @append
5062
5334
  *
5063
5335
  * 표시할 텍스트.<br/>
5064
5336
  * 지정하지 않으면 ''표시할 데이터가 없습니다.'가 표시된다.
@@ -5274,7 +5546,8 @@ interface NavigiatorMaskOptions extends ChartItemOptions {
5274
5546
  */
5275
5547
  interface SeriesNavigatorOptions extends ChartItemOptions {
5276
5548
  /**
5277
- * @override
5549
+ * @append
5550
+ *
5278
5551
  * @default false
5279
5552
  */
5280
5553
  visible?: boolean;
@@ -5500,11 +5773,10 @@ type TooltipScope = typeof _TooltipScope[keyof typeof _TooltipScope];
5500
5773
  interface TooltipOptions extends ChartItemOptions {
5501
5774
  /**
5502
5775
  * 하나의 툴팁으로 표시할 범위.
5776
+ *
5777
+ * @default hover
5503
5778
  */
5504
5779
  scope?: TooltipScope;
5505
- /**
5506
- */
5507
- html?: string;
5508
5780
  /**
5509
5781
  * 툴팁에 표시할 텍스트 형식.<br/>
5510
5782
  * 시리즈에 {@link https://realchart.co.kr/config/config/base/series#tooltiptext tooltipText}가 시리즈 별 tooltip을 제공하지만,
@@ -5525,6 +5797,7 @@ interface TooltipOptions extends ChartItemOptions {
5525
5797
  /**
5526
5798
  * 목표 지점과 tooltip 사이의 간격.
5527
5799
  *
5800
+ * @default 8
5528
5801
  */
5529
5802
  offset?: number;
5530
5803
  /**
@@ -5534,36 +5807,71 @@ interface TooltipOptions extends ChartItemOptions {
5534
5807
  */
5535
5808
  hideDelay?: number;
5536
5809
  /**
5810
+ * 툴팁의 최소 너비.<br/>
5811
+ *
5812
+ * @default 100
5537
5813
  */
5538
5814
  minWidth?: number;
5539
5815
  /**
5816
+ * 툴팁의 최소 높이.<br/>
5817
+ *
5818
+ * @default 40
5540
5819
  */
5541
5820
  minHeight?: number;
5542
5821
  /**
5543
5822
  * true이면 툴팁 상자가 마우스 포인터를 따라 다닌다.
5544
- * <br>
5823
+ * <br/>
5545
5824
  * false, true를 명시적으로 지정하지 않으면 시리즈 종류에 따라 자동 설정된다.
5546
5825
  * ex) pie 시리즈는 true, bar 시리즈는 false가 된다.
5547
5826
  *
5548
5827
  */
5549
5828
  followPointer?: boolean;
5550
5829
  /**
5551
- * 툴팁 텍스트 속 숫자 값이 NaN일 때 대신 표시되는 텍스트.
5830
+ * 툴팁 텍스트 속 숫자 값이 NaN일 때 대신 표시되는 텍스트.<br/>
5552
5831
  *
5832
+ * @default ''
5553
5833
  */
5554
5834
  nanText?: string;
5555
5835
  /**
5556
- * 툴팁에 표시될 숫자값의 기본 형식.\
5836
+ * 툴팁에 표시될 숫자값의 기본 형식.<br/>
5557
5837
  * {@link text}예 표시 문자열을 지정할 때 `${yValue;;#,###.0}`와 같은 식으로 숫자 형식을 지정할 수 있다.
5558
5838
  *
5839
+ * @default ',#.##'
5559
5840
  */
5560
5841
  numberFormat?: string;
5561
5842
  /**
5562
- * 툴팁에 표시될 날짜(시간)값의 기본 형식.\
5843
+ * 툴팁에 표시될 날짜(시간)값의 기본 형식.<br/>
5563
5844
  * {@link text}예 표시 문자열을 지정할 때 `${x;;yyyy.MM}`와 같은 식으로 날짜(시간) 형식을 지정할 수 있다.
5564
5845
  *
5846
+ * @default 'yyyy-MM-dd'
5565
5847
  */
5566
5848
  timeFormat?: string;
5849
+ /**
5850
+ * 툴팁 헤더의 높이.<br/>
5851
+ * 0 이하의 값을 설정할 경우 표시되지 않는다.<br/>
5852
+ *
5853
+ * @default 7
5854
+ */
5855
+ headerHeight?: number;
5856
+ /**
5857
+ * 툴팁 꼬리 크기.<br/>
5858
+ * 0 이하의 값을 설정할 경우 표시되지 않는다.<br/>
5859
+ *
5860
+ * @default 10
5861
+ */
5862
+ tailSize?: number;
5863
+ /**
5864
+ * 툴팁 모서리의 굴곡 설정.<br/>
5865
+ *
5866
+ * @default 5
5867
+ */
5868
+ borderRadius?: number;
5869
+ /**
5870
+ * true 이면 {@link headerHeight}, {@link tailSize}, {@link borderRadius}에 각각 0을 지정한 것과 같다.
5871
+ *
5872
+ * @default false
5873
+ */
5874
+ simpleMode?: boolean;
5567
5875
  }
5568
5876
 
5569
5877
  /**
@@ -5623,28 +5931,23 @@ type LegendLayout = typeof _LegendLayout[keyof typeof _LegendLayout];
5623
5931
  */
5624
5932
  declare const _LegendLocation: {
5625
5933
  /**
5626
- * 차트 본체 아래 표시한다.
5627
- *
5934
+ * 차트 본체 아래 표시한다.<br/>
5628
5935
  */
5629
5936
  readonly BOTTOM: "bottom";
5630
5937
  /**
5631
- * 차트 타이틀 아래 표시한다.
5632
- *
5938
+ * 차트 타이틀 아래 표시한다.<br/>
5633
5939
  */
5634
5940
  readonly TOP: "top";
5635
5941
  /**
5636
- * 차트 본체 오른쪽에 표시한다.
5637
- *
5942
+ * 차트 본체 오른쪽에 표시한다.<br/>
5638
5943
  */
5639
5944
  readonly RIGHT: "right";
5640
5945
  /**
5641
- * 차트 본체 왼쪽에 표시한다.
5642
- *
5946
+ * 차트 본체 왼쪽에 표시한다.<br/>
5643
5947
  */
5644
5948
  readonly LEFT: "left";
5645
5949
  /**
5646
- * 차트 본체 영역 내부에 표시한다.
5647
- *
5950
+ * 차트 본체 영역 내부에 표시한다.<br/>
5648
5951
  */
5649
5952
  readonly BODY: "body";
5650
5953
  };
@@ -5677,7 +5980,7 @@ interface LegendOptions extends ChartItemOptions {
5677
5980
  */
5678
5981
  col?: number;
5679
5982
  /**
5680
- * @override
5983
+ * @append
5681
5984
  *
5682
5985
  * 명시적 true로 지정하고 항목이 하나라도 존재하거나,
5683
5986
  * 명시적 false가 아닌 경우 항목이 둘 이상이면 표시된다.<br/>
@@ -5863,7 +6166,8 @@ interface PaneBodyOptions extends BodyOptions {
5863
6166
  */
5864
6167
  interface SplitOptions extends ChartItemOptions {
5865
6168
  /**
5866
- * @override
6169
+ * @append
6170
+ *
5867
6171
  * @default false
5868
6172
  */
5869
6173
  visible?: boolean;
@@ -6505,7 +6809,9 @@ interface ILegendSource {
6505
6809
  isEmpty?(): boolean;
6506
6810
  legendMarker(doc: Document, size: number): RcElement;
6507
6811
  legendColor(): string;
6812
+ legendStroke(): string;
6508
6813
  legendLabel(): string;
6814
+ legendKey(): any;
6509
6815
  }
6510
6816
  /**
6511
6817
  * @private
@@ -6541,6 +6847,8 @@ declare class Legend extends Widget<LegendOptions> {
6541
6847
  private _maxWidth;
6542
6848
  private _maxHeight;
6543
6849
  private _items;
6850
+ private _visItems;
6851
+ private _itemMap;
6544
6852
  private _maxWidthDim;
6545
6853
  private _maxHeightDim;
6546
6854
  _location: LegendLocation;
@@ -6549,6 +6857,7 @@ declare class Legend extends Widget<LegendOptions> {
6549
6857
  getMaxWidth(domain: number): number;
6550
6858
  getMaxHeight(domain: number): number;
6551
6859
  getMarkerSize(): number;
6860
+ getSources(item: LegendItem): ILegendSource | ILegendSource[];
6552
6861
  protected _isVisible(): boolean;
6553
6862
  protected _doApply(options: LegendOptions): void;
6554
6863
  protected _doPrepareRender(chart: IChart): void;
@@ -6596,6 +6905,9 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
6596
6905
  setTarget(series: ISeries, point: DataPoint, siblings: DataPoint[]): ITooltipContext;
6597
6906
  getTextDomain(): IRichTextDomain;
6598
6907
  isFollowPointer(series: ISeries): boolean;
6908
+ getHeaderHeight(): number;
6909
+ getTailSize(): number;
6910
+ getBorderRadius(): number;
6599
6911
  protected _doSetSimple(src: any): boolean;
6600
6912
  protected _doApply(options: TooltipOptions): void;
6601
6913
  }
@@ -6658,7 +6970,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
6658
6970
  _tstep: number;
6659
6971
  get tick(): CategoryAxisTick;
6660
6972
  /**
6661
- * @override
6973
+ * @append
6662
6974
  */
6663
6975
  get label(): CategoryAxisLabel;
6664
6976
  xValueAt(pos: number): number;
@@ -6900,6 +7212,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6900
7212
  _referents: Series[];
6901
7213
  _runColor: string;
6902
7214
  _calcedColor: string;
7215
+ _calcedStroke: string;
6903
7216
  _simpleMode: boolean;
6904
7217
  _legended: any;
6905
7218
  private _legendMarker;
@@ -6974,9 +7287,13 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6974
7287
  */
6975
7288
  get visiblePoints(): DataPoint[];
6976
7289
  /**
6977
- * polar가 적용 가능한 시리즈 인지.
7290
+ * polar가 적용 가능한 시리즈 인지 여부
6978
7291
  */
6979
7292
  get canPolar(): boolean;
7293
+ /**
7294
+ * widget 시리즈 인지 여부
7295
+ */
7296
+ get isWidget(): boolean;
6980
7297
  /**
6981
7298
  * 시리즈에 설정된 데이터포인트들 중 표시 중인 index번째 포인트 객체.<br/>
6982
7299
  *
@@ -7014,7 +7331,9 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
7014
7331
  displayName(): string;
7015
7332
  legendMarker(doc: Document, size: number): RcElement;
7016
7333
  legendColor(): string;
7334
+ legendStroke(): string;
7017
7335
  legendLabel(): string;
7336
+ legendKey(): any;
7018
7337
  styleLegendMarker(marker: RcElement): void;
7019
7338
  canMixWith(other: IPlottingItem): boolean;
7020
7339
  /**
@@ -7263,12 +7582,17 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
7263
7582
  protected _doSetSimple(src: any): boolean;
7264
7583
  }
7265
7584
  declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
7585
+ _percent: number;
7266
7586
  _calcedColor: string;
7587
+ _calcedStroke: string;
7588
+ _legendKey: any;
7267
7589
  private _legendMarker;
7268
7590
  legendMarker(): RcElement;
7269
7591
  setLegendMarker(elt: RcElement): void;
7270
7592
  legendColor(): string;
7593
+ legendStroke(): string;
7271
7594
  legendLabel(): string;
7595
+ legendKey(): any;
7272
7596
  styleLegendMarker(marker: RcElement): void;
7273
7597
  isEmpty(): boolean;
7274
7598
  initPrev(axis: IAxis, prev: any): void;
@@ -7311,15 +7635,19 @@ declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = WidgetSerie
7311
7635
  private _centerYDim;
7312
7636
  private _othersGroup;
7313
7637
  private _groupedPoints;
7638
+ protected _sum: number;
7314
7639
  protected _doInit(op: OP): void;
7315
7640
  get othersGroup(): OthersGroup;
7641
+ get isWidget(): boolean;
7642
+ getSum(): number;
7316
7643
  getCenter(plotWidth: number, plotHeight: number): Point;
7317
7644
  protected _getLabelDefaultPos(labels: WidgetSeriesLabel, pos: PointLabelPosition): PointLabelPosition;
7318
7645
  needAxes(): boolean;
7319
7646
  _colorByPoint(): boolean;
7320
7647
  getLegendSources(list: ILegendSource[]): void;
7321
7648
  _isVisibleInLegend(p: WidgetSeriesPoint): boolean;
7322
- protected _doApply(options: OP): void;
7649
+ protected _doApply(op: OP): void;
7650
+ collectValues(axis: IAxis, vals: number[]): void;
7323
7651
  canMinPadding(axis: IAxis, min: number): boolean;
7324
7652
  canMaxPadding(axis: IAxis, max: number): boolean;
7325
7653
  protected _dataSourceChanged(): void;
@@ -8435,7 +8763,8 @@ interface AxisUnitLabelOptions extends AxisItemOptions {
8435
8763
  */
8436
8764
  interface AxisLineOptions extends AxisItemOptions {
8437
8765
  /**
8438
- * @override
8766
+ * @append
8767
+ *
8439
8768
  * 값이 undefined나 null이면, x축일 때 표시되고, y축이면 표시되지 않는다.
8440
8769
  *
8441
8770
  * @default undefined
@@ -8466,7 +8795,6 @@ interface AxisSectorLineOptions extends AxisLineOptions {
8466
8795
  */
8467
8796
  interface AxisTickOptions extends AxisItemOptions {
8468
8797
  /**
8469
- * @override
8470
8798
  * @default false
8471
8799
  */
8472
8800
  visible?: boolean;
@@ -8565,10 +8893,10 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
8565
8893
  */
8566
8894
  stepCount?: number;
8567
8895
  /**
8568
- * {@link stepPixels}가 적용 중일 때,
8569
- * 최대 표시 step 개수.<br/>
8570
- *
8571
- * @default 8
8896
+ * {@link stepPixels}가 적용 중일 때, 최대 표시 step 개수.<br/>
8897
+ * 값을 지정하지 않으면(undefined) 8 또는,
8898
+ * 축 길이를 {@link stepPixels) 보다 10% 작은 값으로 나눈 개수(더하기 1) 중 큰 값으로 설정된다.
8899
+ * 또, NaN이 되는 잘못된 값으로 설정하면 표시 개수가 제한되지 않는다.
8572
8900
  */
8573
8901
  maxCount?: number;
8574
8902
  /**
@@ -8579,7 +8907,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
8579
8907
  */
8580
8908
  steps?: (number | Date)[] | ((args: StepCallbackArgs) => (number | Date)[]);
8581
8909
  /**
8582
- * {@link steps}로 지정하는 경우, 설정된 범위 밖의 step들은 무시한다.<br/>
8910
+ * {@page steps}로 지정하는 경우, 설정된 범위 밖의 step들은 무시한다.<br/>
8583
8911
  */
8584
8912
  clipSteps?: boolean;
8585
8913
  /**
@@ -9005,7 +9333,8 @@ interface AxisRangeGuideOptions extends AxisGuideOptions {
9005
9333
  */
9006
9334
  interface AxisGridOptions extends AxisItemOptions {
9007
9335
  /**
9008
- * @override
9336
+ * @append
9337
+ *
9009
9338
  * polar 차트인 경우 명시적 false로 지정하지 않으면 true로 해석되고,
9010
9339
  * polar가 아닌 경우 undefined나 null로 지정한 경우 y축 그리드이면 true로 해석되고,
9011
9340
  * x축인 경우 명시적 true로 지정할 때만 표시된다.
@@ -9109,7 +9438,8 @@ interface CrosshairCallbackArgs {
9109
9438
  */
9110
9439
  interface CrosshairOptions extends ChartItemOptions {
9111
9440
  /**
9112
- * @override
9441
+ * @append
9442
+ *
9113
9443
  * @default false
9114
9444
  */
9115
9445
  visible?: boolean;
@@ -9215,18 +9545,19 @@ type AxisPosition = typeof _AxisPosition[keyof typeof _AxisPosition];
9215
9545
  */
9216
9546
  interface AxisScrollBarOptions extends AxisItemOptions {
9217
9547
  /**
9218
- * @override
9548
+ * @append
9549
+ *
9219
9550
  * @default false
9220
9551
  */
9221
9552
  visible?: boolean;
9222
9553
  /**
9223
- * 스크롤바 두께.
9554
+ * 스크롤바 두께.<br/>
9224
9555
  *
9225
9556
  * @default 10 픽셀
9226
9557
  */
9227
9558
  thickness?: number;
9228
9559
  /**
9229
- * 최소 thumb 길이.
9560
+ * 최소 thumb 길이.<br/>
9230
9561
  *
9231
9562
  * @default 32 픽셀
9232
9563
  */
@@ -9409,7 +9740,6 @@ interface AxisOptions extends ChartItemOptions {
9409
9740
  */
9410
9741
  unit?: string;
9411
9742
  /**
9412
- * @private
9413
9743
  * 축에 포함된 시리즈들 툴팁의 위쪽에 표시되는 텍스트 템플릿.<br/>
9414
9744
  *
9415
9745
  * tooltipHeader
@@ -9423,14 +9753,12 @@ interface AxisOptions extends ChartItemOptions {
9423
9753
  */
9424
9754
  tooltipHeader?: string;
9425
9755
  /**
9426
- * @private
9427
9756
  * 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
9428
9757
  *
9429
9758
  * @default '${series}:<b> ${yValue}</b>'
9430
9759
  */
9431
9760
  tooltipRow?: string;
9432
9761
  /**
9433
- * @private
9434
9762
  * 축에 포함된 시리즈들 툴팁의 아래쪽에 표시되는 텍스트 템플릿.<br/>
9435
9763
  *
9436
9764
  */
@@ -9537,11 +9865,11 @@ interface CategoryAxisOptions extends AxisOptions {
9537
9865
  /** @dummy */
9538
9866
  type?: typeof CategoryAxisType;
9539
9867
  /**
9540
- * @override
9868
+ * @append
9541
9869
  */
9542
9870
  tick?: CategoryAxisTickOptions | boolean;
9543
9871
  /**
9544
- * @override
9872
+ * @append
9545
9873
  */
9546
9874
  label?: CategoryAxisLabelOptions | boolean;
9547
9875
  /**
@@ -9692,7 +10020,7 @@ type AxisFit = typeof _AxisFit[keyof typeof _AxisFit];
9692
10020
  */
9693
10021
  interface ContinuousAxisLabelOptions extends AxisLabelOptions {
9694
10022
  /**
9695
- * @override
10023
+ * @append
9696
10024
  *
9697
10025
  * label에 표시될 숫자 값의 표시 형식.<br/>
9698
10026
  * 기본 설정이 최대 소숫점 두자리 까지 표시하는 것이므로 더 자세한 표시가 필요한 경우 재설정해야 한다.
@@ -9714,9 +10042,8 @@ interface ContinuousAxisOptions extends AxisOptions {
9714
10042
  */
9715
10043
  baseLine?: AxisBaseLineOptions;
9716
10044
  /**
9717
- * @override
10045
+ * @append
9718
10046
  *
9719
- * 명시적으로 지정하는 최소값.<br/>
9720
10047
  * 축에 연결된 data point들의 값으로 계산된 최소값보다 이 속성 값이 작으면 대신 이 값이 축의 최소값이 된다.
9721
10048
  * padding이 적용되므로 이 값에 정확이 맞추고 싶은 경우 {@link minPadding}을 0으로 설정한다.
9722
10049
  * 계산 최소값이 더 작으면 이 속성은 무시된다.<br/>
@@ -9724,9 +10051,8 @@ interface ContinuousAxisOptions extends AxisOptions {
9724
10051
  */
9725
10052
  minValue?: number;
9726
10053
  /**
9727
- * @override
10054
+ * @append
9728
10055
  *
9729
- * 명시적으로 지정하는 최대값.<br/>
9730
10056
  * 축에 연결된 data point들의 값으로 계산된 최대값보다 이 속성 값이 크면 대신 이 값이 축의 최대값이 된다.
9731
10057
  * padding이 적용되므로 이 값에 정확이 맞추고 싶은 경우 {@link maxPadding}을 0으로 설정한다.
9732
10058
  * 계산 최대값이 더 크면 이 속성은 무시된다.\
@@ -9761,6 +10087,7 @@ interface ContinuousAxisOptions extends AxisOptions {
9761
10087
  padding?: number | [number, number][] | string;
9762
10088
  /**
9763
10089
  * 첫번째 tick 앞쪽에 추가되는 최소 여백을 전체 값 범위에 대한 비율로 지정한다.<br/>
10090
+ * 또는 'px'로 끝나는 문자열인 경우, 해당 픽셀 정도의 여백이 생길 수 있도록 조정된다.<br/>
9764
10091
  * 이 값을 지정하지 않으면 {@link padding}에 지정된 값을 따른다.
9765
10092
  * {@link startFit}이 {@link AxitFit.TICK TICK}일 때,
9766
10093
  * data point의 최소값과 첫번째 tick 사이에 이미 그 이상의 간격이 존재한다면 이 속성은 무시된다.
@@ -9770,6 +10097,7 @@ interface ContinuousAxisOptions extends AxisOptions {
9770
10097
  minPadding?: number | [number, number][] | string;
9771
10098
  /**
9772
10099
  * 마지막 tick 뒤쪽에 추가되는 최소 여백을 전체 값 범위에 대한 비율로 지정한다.<br/>
10100
+ * 또는 'px'로 끝나는 문자열인 경우, 해당 픽셀 정도의 여백이 생길 수 있도록 조정된다.<br/>
9773
10101
  * 이 값을 지정하지 않으면 {@link padding}에 지정된 값을 따른다.
9774
10102
  * {@link endFit}이 {@link endFit tick}일 때,
9775
10103
  * data point의 최대값과 마지막 tick 사이에 이미 그 이상의 간격이 존재한다면 이 속성은 무시된다.
@@ -9808,15 +10136,15 @@ interface ContinuousAxisOptions extends AxisOptions {
9808
10136
  */
9809
10137
  endFit?: AxisFit;
9810
10138
  /**
9811
- * @override
10139
+ * @append
9812
10140
  */
9813
10141
  tick?: ContinuousAxisTickOptions | boolean;
9814
10142
  /**
9815
- * @override
10143
+ * @append
9816
10144
  */
9817
10145
  grid?: ContinuousAxisGridOptions | boolean;
9818
10146
  /**
9819
- * @override
10147
+ * @append
9820
10148
  */
9821
10149
  break?: AxisBreakOptions;
9822
10150
  }
@@ -9842,11 +10170,10 @@ declare const LinearAxisType = "linear";
9842
10170
  *
9843
10171
  */
9844
10172
  interface LinearAxisOptions extends ContinuousAxisOptions {
9845
- /**
9846
- */
10173
+ /** @dummy */
9847
10174
  type?: typeof LinearAxisType;
9848
10175
  /**
9849
- * @override
10176
+ * @append
9850
10177
  */
9851
10178
  label?: LinearAxisLabelOptions | boolean;
9852
10179
  }
@@ -9857,18 +10184,18 @@ interface LinearAxisOptions extends ContinuousAxisOptions {
9857
10184
  */
9858
10185
  interface LogAxisTickOptions extends ContinuousAxisTickOptions {
9859
10186
  /**
9860
- * @append
9861
- *
9862
10187
  * 로그를 적용한 값으로 설정한다.
9863
10188
  */
9864
10189
  baseValue?: number;
9865
10190
  /**
9866
10191
  * @append
10192
+ *
9867
10193
  * 로그를 적용한 값으로 설정한다. // #141
9868
10194
  */
9869
10195
  stepInterval?: number;
9870
10196
  /**
9871
10197
  * @append
10198
+ *
9872
10199
  * 로그를 적용한 값으로 설정한다.
9873
10200
  */
9874
10201
  steps?: (number | Date)[] | ((args: StepCallbackArgs) => (number | Date)[]);
@@ -9888,11 +10215,10 @@ declare const LogAxisType = "log";
9888
10215
  *
9889
10216
  */
9890
10217
  interface LogAxisOptions extends ContinuousAxisOptions {
9891
- /**
9892
- */
10218
+ /** @dummy */
9893
10219
  type?: typeof LogAxisType;
9894
10220
  /**
9895
- * @override
10221
+ * @append
9896
10222
  */
9897
10223
  tick?: LogAxisTickOptions | boolean;
9898
10224
  /**
@@ -9939,7 +10265,7 @@ interface TimeAxisTickOptions extends ContinuousAxisTickOptions {
9939
10265
  */
9940
10266
  stepInterval?: number;
9941
10267
  /**
9942
- * @override
10268
+ * @append
9943
10269
  */
9944
10270
  label?: TimeAxisLabelOptions | boolean;
9945
10271
  }
@@ -9951,20 +10277,20 @@ declare const TimeAxisType = "time";
9951
10277
  *
9952
10278
  */
9953
10279
  interface TimeAxisOptions extends ContinuousAxisOptions {
9954
- /**
9955
- */
10280
+ /** @dummy */
9956
10281
  type?: typeof TimeAxisType;
9957
10282
  /**
9958
- * @override
10283
+ * @append
9959
10284
  */
9960
10285
  label?: TimeAxisLabelOptions | boolean;
9961
10286
  /**
9962
- * @override
10287
+ * @append
10288
+ *
9963
10289
  * @default NaN
9964
10290
  */
9965
10291
  baseValue?: number;
9966
10292
  /**
9967
- * @override
10293
+ * @append
9968
10294
  */
9969
10295
  tick?: TimeAxisTickOptions | boolean;
9970
10296
  }
@@ -10278,7 +10604,8 @@ interface BulletGaugeBandOptions extends ChartItemOptions {
10278
10604
  */
10279
10605
  interface BulletTargetBarOptions extends ChartItemOptions {
10280
10606
  /**
10281
- * @override
10607
+ * @append
10608
+ *
10282
10609
  * @default true
10283
10610
  */
10284
10611
  visible: boolean;
@@ -10569,7 +10896,8 @@ interface CircularGaugeGroupOptions extends GaugeGroupOptions<CircleGaugeOptions
10569
10896
  */
10570
10897
  interface GaugeRangeLabelOptions extends ChartItemOptions {
10571
10898
  /**
10572
- * @override
10899
+ * @append
10900
+ *
10573
10901
  * @default false
10574
10902
  */
10575
10903
  visible?: boolean;
@@ -10580,7 +10908,8 @@ interface GaugeRangeLabelOptions extends ChartItemOptions {
10580
10908
  */
10581
10909
  interface GaugeRangeBandOptions extends ChartItemOptions {
10582
10910
  /**
10583
- * @override
10911
+ * @append
10912
+ *
10584
10913
  * @default false
10585
10914
  */
10586
10915
  visible?: boolean;
@@ -10697,11 +11026,13 @@ interface GaugeScaleOptions extends ChartItemOptions {
10697
11026
  */
10698
11027
  interface CircleGaugeScaleOptions extends GaugeScaleOptions {
10699
11028
  /**
10700
- * @override
11029
+ * @append
11030
+ *
10701
11031
  * @default false
10702
11032
  */
10703
11033
  /**
10704
- * @override
11034
+ * @append
11035
+ *
10705
11036
  * @default 72
10706
11037
  */
10707
11038
  stepPixels: number;
@@ -10760,7 +11091,8 @@ interface CircleGaugeValueRimOptions extends CircleGaugeRimBaseOptions {
10760
11091
  */
10761
11092
  interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
10762
11093
  /**
10763
- * @override
11094
+ * @append
11095
+ *
10764
11096
  * @default false
10765
11097
  */
10766
11098
  visible?: boolean;
@@ -10769,7 +11101,8 @@ interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
10769
11101
  */
10770
11102
  interface CircleGaugeHandOptions extends ChartItemOptions {
10771
11103
  /**
10772
- * @override
11104
+ * @append
11105
+ *
10773
11106
  * @default false
10774
11107
  */
10775
11108
  visible?: boolean;
@@ -10799,7 +11132,8 @@ interface CircleGaugeHandOptions extends ChartItemOptions {
10799
11132
  */
10800
11133
  interface CircleGaugePinOptions extends ChartItemOptions {
10801
11134
  /**
10802
- * @override
11135
+ * @append
11136
+ *
10803
11137
  * @default false
10804
11138
  */
10805
11139
  visible?: boolean;
@@ -10864,11 +11198,11 @@ declare const CircleGaugeGroupType = "circlegroup";
10864
11198
  * @modules gauge
10865
11199
  */
10866
11200
  interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
10867
- /**
10868
- */
11201
+ /** @dummy */
10869
11202
  type?: typeof CircleGaugeGroupType;
10870
11203
  /**
10871
- * @override
11204
+ * @append
11205
+ *
10872
11206
  * @default '50%'
10873
11207
  */
10874
11208
  innerRadius?: PercentSize;
@@ -11894,6 +12228,7 @@ interface IChart {
11894
12228
  _isDataChanged(): boolean;
11895
12229
  getAxisOf(annotation: Annotation, isX: boolean): IAxis;
11896
12230
  isValidAxis(axis: IAxis): boolean;
12231
+ getPaletteColors(palette: string): string[];
11897
12232
  }
11898
12233
  /**
11899
12234
  * 차트 제작 주체 등을 표시하는 영역에 대한 모델.<br/>
@@ -11977,6 +12312,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
11977
12312
  _exporter: Exporter;
11978
12313
  _width: number;
11979
12314
  _height: number;
12315
+ private _palColors;
11980
12316
  private _params;
11981
12317
  private _inverted;
11982
12318
  private _splitted;
@@ -12089,6 +12425,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
12089
12425
  addSeries(source: any, animate: boolean): Series;
12090
12426
  removeSeries(series: string | Series, animate: boolean): Series;
12091
12427
  render(): void;
12428
+ getPaletteColors(palette: string): string[];
12092
12429
  private $_loadTemplates;
12093
12430
  _getGroupType(type: string): any;
12094
12431
  _getSeriesType(type: string): any;
@@ -12832,7 +13169,7 @@ declare class ContinuousAxisTick<OP extends ContinuousAxisTickOptions = Continuo
12832
13169
  protected _getValidInterval(axis: ContinuousAxis, v: any, length: number, min: number, max: number): any;
12833
13170
  buildSteps(axis: ContinuousAxis, length: number, base: number, min: number, max: number, broken?: boolean): number[];
12834
13171
  getNextStep(step: number, delta: number): number;
12835
- getMaxCount(): number;
13172
+ getMaxCount(len: number, stepPixels: number): number;
12836
13173
  canUseNumSymbols(): boolean;
12837
13174
  protected _doApply(op: OP): void;
12838
13175
  private $_getStepPixels;
@@ -12919,6 +13256,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12919
13256
  _calcedMax: number;
12920
13257
  _fixedMin: number;
12921
13258
  _fixedMax: number;
13259
+ private _prevSteps;
12922
13260
  /** y축으로 사용될 때만 적용한다. */
12923
13261
  private _breaks;
12924
13262
  private _mergedBreaks;
@@ -12930,8 +13268,6 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12930
13268
  /**
12931
13269
  * base value 위치에 표시되는 선분 설정 모델.<br/>
12932
13270
  * 기본적으로 표시되지 않는다.
12933
- *
12934
- *
12935
13271
  */
12936
13272
  get baseLine(): AxisBaseLine;
12937
13273
  /**
@@ -12939,13 +13275,11 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12939
13275
  */
12940
13276
  get break(): AxisBreak;
12941
13277
  /**
12942
- * @override
12943
- *
13278
+ * @append
12944
13279
  */
12945
13280
  get tick(): ContinuousAxisTick;
12946
13281
  /**
12947
- * @override
12948
- *
13282
+ * @append
12949
13283
  */
12950
13284
  get grid(): ContinuousAxisGrid;
12951
13285
  getBaseValue(): number;
@@ -12960,8 +13294,6 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12960
13294
  protected _createTickModel(): ContinuousAxisTick;
12961
13295
  protected abstract _createLabel(): ContinuousAxisLabel;
12962
13296
  protected _doPrepareRender(): void;
12963
- private _calcedSteps;
12964
- private _prevSteps;
12965
13297
  private $_trim;
12966
13298
  private $_trimSteps;
12967
13299
  protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
@@ -13005,8 +13337,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
13005
13337
  declare class LinearAxis extends ContinuousAxis<LinearAxisOptions> {
13006
13338
  static type: string;
13007
13339
  /**
13008
- * @override
13009
- *
13340
+ * @append
13010
13341
  */
13011
13342
  get label(): LinearAxisLabel;
13012
13343
  protected _createLabel(): ContinuousAxisLabel;
@@ -13255,6 +13586,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
13255
13586
  static readonly DATA_UNHOVER = "unhover";
13256
13587
  static readonly LEGEND_MARKER = "rct-legend-item-marker";
13257
13588
  static register(...clses: [typeof Series<SeriesOptions>, typeof SeriesView<Series>][]): void;
13589
+ static isPointDom(dom: any): dom is Element;
13258
13590
  _simpleMode: boolean;
13259
13591
  protected _pointContainer: PointContainer;
13260
13592
  _labelContainer: PointLabelContainer;
@@ -13282,8 +13614,8 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
13282
13614
  protected _doViewRateChanged(rate: number): void;
13283
13615
  protected _doPosRateChanged(rate: number): void;
13284
13616
  protected _doPrevRateChanged(rate: number): void;
13285
- _animationStarted(ani: Animation): void;
13286
- _animationFinished(ani: Animation): void;
13617
+ _animationStarted(ani: any): void;
13618
+ _animationFinished(ani: any): void;
13287
13619
  protected abstract _getPointPool(): ElementPool<RcElement>;
13288
13620
  pointByDom(elt: Element): IPointView;
13289
13621
  getPointView(p: DataPoint): RcElement;
@@ -13361,21 +13693,27 @@ declare abstract class BoxPointElement extends PointElement {
13361
13693
  xSave: number;
13362
13694
  savePrevs(): void;
13363
13695
  }
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 {
13696
+ declare abstract class PointElementEx extends RcElement implements IPointView {
13368
13697
  point: DataPoint;
13698
+ constructor(doc: Document);
13699
+ savePrevs(): void;
13700
+ }
13701
+ declare abstract class BoxPointElementEx extends PointElementEx {
13369
13702
  wPoint: number;
13370
13703
  hPoint: number;
13371
13704
  wSave: number;
13372
13705
  xSave: number;
13706
+ savePrevs(): void;
13707
+ }
13708
+ declare class BarElement extends BoxPointElement {
13709
+ layout(x: number, y: number, rTop: number, rBottom: number, base: number, side: number, inverted: boolean): void;
13710
+ }
13711
+ declare class Bar3DElement extends BoxPointElementEx {
13373
13712
  private _topView;
13374
13713
  private _frontView;
13375
13714
  private _sideView;
13376
13715
  constructor(doc: Document);
13377
13716
  layout(x: number, y: number, rTop: number, rBottom: number, base: number, side: number, inverted: boolean): void;
13378
- savePrevs(): void;
13379
13717
  }
13380
13718
  declare abstract class ClusterableSeriesView<T extends Series = Series> extends SeriesView<T> {
13381
13719
  protected _labelInfo: LabelLayoutInfo;
@@ -13392,6 +13730,10 @@ declare abstract class ClusterableSeriesView<T extends Series = Series> extends
13392
13730
  declare abstract class BasedSeriesView<T extends BasedSeries> extends ClusterableSeriesView<T> {
13393
13731
  private _labelLineContainer;
13394
13732
  protected _pointOff: number;
13733
+ protected _reversed: boolean;
13734
+ protected _yLen: number;
13735
+ protected _baseVal: number;
13736
+ protected _yBase: number;
13395
13737
  protected _depthAngle: number;
13396
13738
  protected _base: number;
13397
13739
  protected _side: number;
@@ -13399,6 +13741,7 @@ declare abstract class BasedSeriesView<T extends BasedSeries> extends Clusterabl
13399
13741
  depthEnabled(): boolean;
13400
13742
  protected _prepareSeries(doc: Document, model: T, polar: boolean, depth: BodyDepth): void;
13401
13743
  protected _doPrevRateChanged(rate: number): void;
13744
+ protected _prepareLayoutPoints(width: number, height: number): void;
13402
13745
  protected _layoutPoints(width: number, height: number): void;
13403
13746
  protected _layoutLabel(model: DataPointLabel, info: LabelLayoutInfo, w: number, h: number): void;
13404
13747
  }
@@ -13882,7 +14225,7 @@ declare class TimeAxis extends ContinuousAxis<TimeAxisOptions> {
13882
14225
  static defaults: TimeAxisOptions;
13883
14226
  _offset: number;
13884
14227
  /**
13885
- * @override
14228
+ * @append
13886
14229
  */
13887
14230
  get label(): TimeAxisLabel;
13888
14231
  protected _createTickModel(): TimeAxisTick;
@@ -14172,7 +14515,7 @@ declare class BarSeriesPoint extends DataPoint {
14172
14515
  * 원래 차지할 너비에 대한 상대값. 1이면 원래대로 표시된다.
14173
14516
  */
14174
14517
  width?: number;
14175
- protected _readObject(series: BarSeries, v: any): void;
14518
+ protected _readObject(series: BarSeriesBase, v: any): void;
14176
14519
  }
14177
14520
  /**
14178
14521
  * Bar 시리즈 계열의 기반(base) 모델.<br/>
@@ -14802,6 +15145,26 @@ declare class Color {
14802
15145
  private $_parseNumber;
14803
15146
  }
14804
15147
 
15148
+ /**
15149
+ * @private
15150
+ *
15151
+ * Utilities for HTML element.
15152
+ */
15153
+ declare class Dom {
15154
+ static clearChildren(parent: Element): void;
15155
+ static remove(elt: Node): null;
15156
+ static htmlEncode(text: string): string;
15157
+ static setAttrs(dom: Element, attrs: object): void;
15158
+ static setImportantStyle(css: CSSStyleDeclaration, property: string, value: string): void;
15159
+ static getPadding(dom: HTMLElement | SVGElement): ISides;
15160
+ static hasFill(path: Element): boolean;
15161
+ static setVisible(dom: HTMLElement | SVGElement, visible: boolean, style?: string): boolean;
15162
+ static setClipPath(dom: Element, clip: string | SVGClipPathElement): void;
15163
+ static createClipRect(doc: Document, id: string): SVGClipPathElement;
15164
+ static setRect(dom: Element, r: IRect): Element;
15165
+ static setBounds(dom: Element, x: number, y: number, width: number, height: number): Element;
15166
+ }
15167
+
14805
15168
  declare abstract class BarSeriesViewBase<T extends BarSeriesBase> extends BasedSeriesView<T> {
14806
15169
  private _deep;
14807
15170
  private _bars;
@@ -14816,6 +15179,9 @@ declare abstract class BarSeriesViewBase<T extends BarSeriesBase> extends BasedS
14816
15179
  private $_parepareSectors;
14817
15180
  private $_layoutSectors;
14818
15181
  }
15182
+ /**
15183
+ * @private
15184
+ */
14819
15185
  declare class BarSeriesView<T extends BarSeries = BarSeries> extends BarSeriesViewBase<T> {
14820
15186
  protected _rdTop: number;
14821
15187
  protected _rdBottom: number;
@@ -14896,15 +15262,16 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
14896
15262
  }
14897
15263
 
14898
15264
  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;
15265
+ static reveal(series: SeriesView, options: IRevealAnimation): void;
15266
+ static grow(series: SeriesView, endHandler?: RcAnimationEndHandler): void;
15267
+ static spread(series: SeriesView, endHandler?: RcAnimationEndHandler): void;
14902
15268
  static fadeIn(series: SeriesView<Series>): void;
14903
- constructor(sv: SeriesView<Series>, options?: any);
14904
- protected abstract _createAnimation(series: SeriesView<Series>, options?: any): Animation | RcAnimation;
15269
+ constructor(sv: SeriesView, options?: any);
15270
+ protected abstract _createAnimation(series: SeriesView, options?: any): Animation | RcAnimation;
14905
15271
  }
14906
15272
  interface IRevealAnimation {
14907
15273
  from: 'left' | 'right' | 'top' | 'bottom';
15274
+ view?: RcElement;
14908
15275
  }
14909
15276
 
14910
15277
  interface ILine {
@@ -14995,6 +15362,7 @@ declare class ArcElement extends PathElement {
14995
15362
  setArc(cx: number, cy: number, rd: number, start: number, angle: number, clockwise: boolean): void;
14996
15363
  }
14997
15364
 
15365
+ declare const SVGNS = "http://www.w3.org/2000/svg";
14998
15366
  declare const isObject: (v: any) => boolean;
14999
15367
  /** @private */
15000
15368
  declare const isArray: (arg: any) => arg is any[];
@@ -15173,4 +15541,4 @@ declare const createChart: typeof Globals.createChart;
15173
15541
  declare const createData: typeof Globals.createData;
15174
15542
  declare const setLicenseKey: typeof Globals.setLicenseKey;
15175
15543
 
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 };
15544
+ 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 };