realchart 1.4.3 → 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,11 +3673,13 @@ 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;
3620
3681
  /**
3682
+ * @ignore
3621
3683
  * 0보다 큰값으로 지정하면 원통형으로 표시한다.<br/>
3622
3684
  * 0 이하로 지정하면 무시된다.
3623
3685
  */
@@ -3745,7 +3807,8 @@ interface AreaRangeSeriesOptions extends LineSeriesBaseOptions {
3745
3807
  */
3746
3808
  interface LollipopSeriesMarkerOptions extends SeriesMarkerOptions {
3747
3809
  /**
3748
- * @override
3810
+ * @append
3811
+ *
3749
3812
  * @default 4
3750
3813
  */
3751
3814
  radius?: number;
@@ -3762,7 +3825,8 @@ interface LollipopSeriesMarkerOptions extends SeriesMarkerOptions {
3762
3825
  */
3763
3826
  minRadius?: number;
3764
3827
  /**
3765
- * @override
3828
+ * @append
3829
+ *
3766
3830
  * @default 'circle'
3767
3831
  */
3768
3832
  shape?: Shape;
@@ -3901,9 +3965,9 @@ interface RadialSeriesOptions extends WidgetSeriesOptions {
3901
3965
  /**
3902
3966
  * 시리즈 원호의 반지름.<br/>
3903
3967
  * 픽셀 크기나 {@link https://realchart.co.kr/config/config/body body} 영역 크기에 대한 상대적 크기로 지정할 수 있다.
3904
- * '50%'로 지정하면 plot 영역의 width나 height중 작은 크기와 동일한 반지름으로 표시된다.
3968
+ * '50%'로 지정하면 plot 영역의 너비나 높이 중 작은 크기와 동일한 반지름으로 표시된다.
3905
3969
  *
3906
- * @default '40%
3970
+ * @default '40%'
3907
3971
  */
3908
3972
  radius?: PercentSize;
3909
3973
  /**
@@ -3976,7 +4040,10 @@ interface PieSeriesLabelOptions extends WidgetSeriesLabelOptions {
3976
4040
  */
3977
4041
  rotationMode?: PointLabelRotationMode;
3978
4042
  }
3979
- interface PieSeriesDepthOption extends ChartItemOptions {
4043
+ /**
4044
+ * pie 시리즈 깊이 설정 옵션.<br/>
4045
+ */
4046
+ interface PieSeriesDepthOptions extends ChartItemOptions {
3980
4047
  /**
3981
4048
  * @default false
3982
4049
  */
@@ -4027,7 +4094,7 @@ interface PieSeriesOptions extends RadialSeriesOptions {
4027
4094
  */
4028
4095
  type?: typeof PieSeriesType;
4029
4096
  /**
4030
- * @override
4097
+ * @append
4031
4098
  */
4032
4099
  pointLabel?: PieSeriesLabelOptions;
4033
4100
  /**
@@ -4072,7 +4139,7 @@ interface PieSeriesOptions extends RadialSeriesOptions {
4072
4139
  * {@link https://realchart.co.kr/docs/api/options/PieSeriesDepthOptions/length length}를 지정하는 것과 동일하다.<br/>
4073
4140
  * [주의] 이 값이 지정되면 {@link https://realchart.co.kr/docs/api/options/AxisTickOptions/length length} 설정은 무시된다.<br/>
4074
4141
  */
4075
- depth?: PieSeriesDepthOption | number | boolean;
4142
+ depth?: PieSeriesDepthOptions | number | boolean;
4076
4143
  }
4077
4144
  declare const ScatterSeriesType = "scatter";
4078
4145
  /**
@@ -4224,7 +4291,8 @@ type TreemapAlgorithm = typeof _TreemapAlgorithm[keyof typeof _TreemapAlgorithm]
4224
4291
  */
4225
4292
  interface TreeGroupHeadOptions extends ChartItemOptions {
4226
4293
  /**
4227
- * @override
4294
+ * @append
4295
+ *
4228
4296
  * @default false
4229
4297
  */
4230
4298
  visible?: boolean;
@@ -4350,7 +4418,8 @@ interface HeatmapSeriesOptions extends Omit<ConnectableSeriesOptions, 'trendline
4350
4418
  */
4351
4419
  type?: typeof HeatmapSeriesType;
4352
4420
  /**
4353
- * @override
4421
+ * @append
4422
+ *
4354
4423
  * @default 'x: <b>${x}</b><br>y: <b>${y}</b><br>heat: <b>${z}</b>'
4355
4424
  */
4356
4425
  tooltipText?: string;
@@ -4610,6 +4679,211 @@ interface WordCloudSeriesOptions extends WidgetSeriesOptions {
4610
4679
  */
4611
4680
  placer?: 'default' | 'spiral';
4612
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
+ }
4613
4887
  interface RaceCallbackArgs {
4614
4888
  race: any;
4615
4889
  }
@@ -4724,7 +4998,7 @@ declare const BarSeriesTypes: {
4724
4998
  /** @dummy */
4725
4999
  type BarSeriesOptionsType = typeof BarSeriesTypes[keyof typeof BarSeriesTypes];
4726
5000
  /** @dummy */
4727
- 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;
4728
5002
 
4729
5003
  /**
4730
5004
  * 차트 제목(title) 설정 옵션.<br/>
@@ -4748,9 +5022,9 @@ type SeriesOptionsType = SeriesOptions | SeriesGroupOptions | BarRangeSeriesOpti
4748
5022
  */
4749
5023
  interface TitleOptions extends ChartItemOptions {
4750
5024
  /**
4751
- * @override
5025
+ * @append
4752
5026
  *
4753
- * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.
5027
+ * true로 설정되고 {@link text}가 설정된 경우에만 표시된다.<br/>
4754
5028
  *
4755
5029
  * @default true
4756
5030
  */
@@ -4762,7 +5036,7 @@ interface TitleOptions extends ChartItemOptions {
4762
5036
  */
4763
5037
  text?: string;
4764
5038
  /**
4765
- * 정렬 기준.
5039
+ * 정렬 기준.<br/>
4766
5040
  * 시리즈들이 그려지는 plotting 영역이나,
4767
5041
  * 차트 전체 영역을 기준으로 할 수 있다.
4768
5042
  * 또, {@link https://realchart.co.kr/config/config/subtitle 부제목}인 경우 제목을 기준으로 위치를 지정할 수 있다.
@@ -4771,19 +5045,19 @@ interface TitleOptions extends ChartItemOptions {
4771
5045
  */
4772
5046
  alignBase?: AlignBase;
4773
5047
  /**
4774
- * 수평 정렬.
5048
+ * 수평 정렬.<br/>
4775
5049
  *
4776
5050
  * @default 'center'
4777
5051
  */
4778
5052
  align?: Align;
4779
5053
  /**
4780
- * 수직 정렬.
5054
+ * 수직 정렬.<br/>
4781
5055
  *
4782
5056
  * @default 'middle'
4783
5057
  */
4784
5058
  verticalAlign?: VerticalAlign;
4785
5059
  /**
4786
- * 배경 {@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/>
4787
5061
  */
4788
5062
  backgroundStyle?: SVGStyleOrClass;
4789
5063
  /**
@@ -4867,31 +5141,33 @@ type SubtitlePosition = typeof _SubtitlePosition[keyof typeof _SubtitlePosition]
4867
5141
  */
4868
5142
  interface SubtitleOptions extends TitleOptions {
4869
5143
  /**
4870
- * 표시 위치.
5144
+ * 표시 위치.<br/>
4871
5145
  *
4872
5146
  * @default 'bottom'
4873
5147
  */
4874
5148
  position?: SubtitlePosition;
4875
5149
  /**
4876
- * 주 제목과 사이의 간격.
5150
+ * 주 제목과 사이의 간격.<br/>
4877
5151
  *
4878
5152
  * @default 2
4879
5153
  */
4880
5154
  titleGap?: number;
4881
5155
  /**
4882
- * @override
5156
+ * @append
5157
+ *
4883
5158
  * @default 'bottom'
4884
5159
  */
4885
5160
  verticalAlign?: VerticalAlign;
4886
5161
  /**
4887
- * @override
5162
+ * @append
5163
+ *
4888
5164
  * @default ''
4889
5165
  */
4890
5166
  text?: string;
4891
5167
  /**
4892
- * @override
5168
+ * @append
4893
5169
  *
4894
- * {@link position}가 'leftSide' 이거나 'rightSide'인 경우 해당 속성은 무시된다.
5170
+ * {@link position}가 'leftSide' 이거나 'rightSide'인 경우 해당 속성은 무시된다.<br/>
4895
5171
  *
4896
5172
  * @default 0
4897
5173
  */
@@ -4917,28 +5193,28 @@ interface ChartOptionsOptions extends ChartItemOptions {
4917
5193
  */
4918
5194
  theme?: string;
4919
5195
  /**
4920
- * 시리즈 및 데이터포인트에 적용되는 기본 색상 팔레트 이름.
5196
+ * 시리즈 및 데이터포인트에 적용되는 기본 색상 팔레트 이름.<br/>
4921
5197
  */
4922
5198
  palette?: string;
4923
5199
  /**
4924
- * {@link palette}로 지정된 팔레트 색상들을 시리즈에 적용하는 방식.
5200
+ * {@link palette}로 지정된 팔레트 색상들을 시리즈에 적용하는 방식.<br/>
4925
5201
  *
4926
5202
  * @default 'normal'
4927
5203
  */
4928
5204
  paletteMode?: PaletteMode;
4929
5205
  /**
4930
- * 시리즈 옵션 colorByPoint가 true일 때 적용되는 데이터포인트들의 색상 목록.
5206
+ * 시리즈 옵션 colorByPoint가 true일 때 적용되는 데이터포인트들의 색상 목록.<br/>
4931
5207
  * 시리즈 옵션 colors가 지정되면 이 속성은 무시된다.
4932
5208
  */
4933
5209
  colors?: string[];
4934
5210
  /**
4935
- * false로 지정하면 차트 전체척으로 animation 효과를 실행하지 않는다.
5211
+ * false로 지정하면 차트 전체척으로 animation 효과를 실행하지 않는다.<br/>
4936
5212
  *
4937
5213
  * @default true
4938
5214
  */
4939
5215
  animatable?: boolean;
4940
5216
  /**
4941
- * javascript에서 숫자 단위로 전달되는 날짜값은 기본적으로 local이 아니라 new Date 기준이다.
5217
+ * javascript에서 숫자 단위로 전달되는 날짜값은 기본적으로 local이 아니라 new Date 기준이다.<br/>
4942
5218
  * 그러므로 보통 숫자로 지정된 날짜값은 utc 값이다.
4943
5219
  * local 기준으로 표시하기 위해, 숫자로 지정된 날짜값에 더해야 하는 시간을 분단위로 지정한다.<br/>
4944
5220
  * ex) 한국은 -9 * 60
@@ -4981,7 +5257,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
4981
5257
  */
4982
5258
  axisGap?: number;
4983
5259
  /**
4984
- * @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/>
4985
5261
  *
4986
5262
  * 크레딧 모델.<br/>
4987
5263
  */
@@ -5033,10 +5309,10 @@ type ZoomType = typeof _ZoomType[keyof typeof _ZoomType];
5033
5309
  */
5034
5310
  interface ZoomButtonOptions extends ChartItemOptions {
5035
5311
  /**
5036
- * @override
5312
+ * @append
5037
5313
  *
5038
5314
  * 명시적 false로 지정한 경우가 아닐 때,
5039
- * 이미 zoom된 상태이거나, zoom 가능하면 표시된다.
5315
+ * 이미 zoom된 상태이거나, zoom 가능하면 표시된다.<br/>
5040
5316
 
5041
5317
  * @default undefined
5042
5318
  */
@@ -5046,15 +5322,15 @@ interface ZoomButtonOptions extends ChartItemOptions {
5046
5322
  */
5047
5323
  interface EmptyViewOptions extends ChartTextOptions {
5048
5324
  /**
5049
- * @override
5325
+ * @append
5050
5326
  *
5051
- * false로 지정하면 표시돼야할 상황에서도 표시되지 않는다.
5327
+ * false로 지정하면 표시돼야할 상황에서도 표시되지 않는다.<br/>
5052
5328
  *
5053
5329
  * @default undefined
5054
5330
  */
5055
5331
  visible?: boolean;
5056
5332
  /**
5057
- * @override
5333
+ * @append
5058
5334
  *
5059
5335
  * 표시할 텍스트.<br/>
5060
5336
  * 지정하지 않으면 ''표시할 데이터가 없습니다.'가 표시된다.
@@ -5158,7 +5434,7 @@ interface BodyDepthOptions extends ChartItemOptions {
5158
5434
  */
5159
5435
  length?: number;
5160
5436
  /**
5161
- * 30 ~ 60도 사이로 지정할 수 있다.</br>
5437
+ * 30 ~ 60도 사이로 지정할 수 있다.<br/>
5162
5438
  *
5163
5439
  * @default 32
5164
5440
  */
@@ -5270,7 +5546,8 @@ interface NavigiatorMaskOptions extends ChartItemOptions {
5270
5546
  */
5271
5547
  interface SeriesNavigatorOptions extends ChartItemOptions {
5272
5548
  /**
5273
- * @override
5549
+ * @append
5550
+ *
5274
5551
  * @default false
5275
5552
  */
5276
5553
  visible?: boolean;
@@ -5496,11 +5773,10 @@ type TooltipScope = typeof _TooltipScope[keyof typeof _TooltipScope];
5496
5773
  interface TooltipOptions extends ChartItemOptions {
5497
5774
  /**
5498
5775
  * 하나의 툴팁으로 표시할 범위.
5776
+ *
5777
+ * @default hover
5499
5778
  */
5500
5779
  scope?: TooltipScope;
5501
- /**
5502
- */
5503
- html?: string;
5504
5780
  /**
5505
5781
  * 툴팁에 표시할 텍스트 형식.<br/>
5506
5782
  * 시리즈에 {@link https://realchart.co.kr/config/config/base/series#tooltiptext tooltipText}가 시리즈 별 tooltip을 제공하지만,
@@ -5521,6 +5797,7 @@ interface TooltipOptions extends ChartItemOptions {
5521
5797
  /**
5522
5798
  * 목표 지점과 tooltip 사이의 간격.
5523
5799
  *
5800
+ * @default 8
5524
5801
  */
5525
5802
  offset?: number;
5526
5803
  /**
@@ -5530,36 +5807,71 @@ interface TooltipOptions extends ChartItemOptions {
5530
5807
  */
5531
5808
  hideDelay?: number;
5532
5809
  /**
5810
+ * 툴팁의 최소 너비.<br/>
5811
+ *
5812
+ * @default 100
5533
5813
  */
5534
5814
  minWidth?: number;
5535
5815
  /**
5816
+ * 툴팁의 최소 높이.<br/>
5817
+ *
5818
+ * @default 40
5536
5819
  */
5537
5820
  minHeight?: number;
5538
5821
  /**
5539
5822
  * true이면 툴팁 상자가 마우스 포인터를 따라 다닌다.
5540
- * <br>
5823
+ * <br/>
5541
5824
  * false, true를 명시적으로 지정하지 않으면 시리즈 종류에 따라 자동 설정된다.
5542
5825
  * ex) pie 시리즈는 true, bar 시리즈는 false가 된다.
5543
5826
  *
5544
5827
  */
5545
5828
  followPointer?: boolean;
5546
5829
  /**
5547
- * 툴팁 텍스트 속 숫자 값이 NaN일 때 대신 표시되는 텍스트.
5830
+ * 툴팁 텍스트 속 숫자 값이 NaN일 때 대신 표시되는 텍스트.<br/>
5548
5831
  *
5832
+ * @default ''
5549
5833
  */
5550
5834
  nanText?: string;
5551
5835
  /**
5552
- * 툴팁에 표시될 숫자값의 기본 형식.\
5836
+ * 툴팁에 표시될 숫자값의 기본 형식.<br/>
5553
5837
  * {@link text}예 표시 문자열을 지정할 때 `${yValue;;#,###.0}`와 같은 식으로 숫자 형식을 지정할 수 있다.
5554
5838
  *
5839
+ * @default ',#.##'
5555
5840
  */
5556
5841
  numberFormat?: string;
5557
5842
  /**
5558
- * 툴팁에 표시될 날짜(시간)값의 기본 형식.\
5843
+ * 툴팁에 표시될 날짜(시간)값의 기본 형식.<br/>
5559
5844
  * {@link text}예 표시 문자열을 지정할 때 `${x;;yyyy.MM}`와 같은 식으로 날짜(시간) 형식을 지정할 수 있다.
5560
5845
  *
5846
+ * @default 'yyyy-MM-dd'
5561
5847
  */
5562
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;
5563
5875
  }
5564
5876
 
5565
5877
  /**
@@ -5619,28 +5931,23 @@ type LegendLayout = typeof _LegendLayout[keyof typeof _LegendLayout];
5619
5931
  */
5620
5932
  declare const _LegendLocation: {
5621
5933
  /**
5622
- * 차트 본체 아래 표시한다.
5623
- *
5934
+ * 차트 본체 아래 표시한다.<br/>
5624
5935
  */
5625
5936
  readonly BOTTOM: "bottom";
5626
5937
  /**
5627
- * 차트 타이틀 아래 표시한다.
5628
- *
5938
+ * 차트 타이틀 아래 표시한다.<br/>
5629
5939
  */
5630
5940
  readonly TOP: "top";
5631
5941
  /**
5632
- * 차트 본체 오른쪽에 표시한다.
5633
- *
5942
+ * 차트 본체 오른쪽에 표시한다.<br/>
5634
5943
  */
5635
5944
  readonly RIGHT: "right";
5636
5945
  /**
5637
- * 차트 본체 왼쪽에 표시한다.
5638
- *
5946
+ * 차트 본체 왼쪽에 표시한다.<br/>
5639
5947
  */
5640
5948
  readonly LEFT: "left";
5641
5949
  /**
5642
- * 차트 본체 영역 내부에 표시한다.
5643
- *
5950
+ * 차트 본체 영역 내부에 표시한다.<br/>
5644
5951
  */
5645
5952
  readonly BODY: "body";
5646
5953
  };
@@ -5673,7 +5980,7 @@ interface LegendOptions extends ChartItemOptions {
5673
5980
  */
5674
5981
  col?: number;
5675
5982
  /**
5676
- * @override
5983
+ * @append
5677
5984
  *
5678
5985
  * 명시적 true로 지정하고 항목이 하나라도 존재하거나,
5679
5986
  * 명시적 false가 아닌 경우 항목이 둘 이상이면 표시된다.<br/>
@@ -5859,7 +6166,8 @@ interface PaneBodyOptions extends BodyOptions {
5859
6166
  */
5860
6167
  interface SplitOptions extends ChartItemOptions {
5861
6168
  /**
5862
- * @override
6169
+ * @append
6170
+ *
5863
6171
  * @default false
5864
6172
  */
5865
6173
  visible?: boolean;
@@ -6501,7 +6809,9 @@ interface ILegendSource {
6501
6809
  isEmpty?(): boolean;
6502
6810
  legendMarker(doc: Document, size: number): RcElement;
6503
6811
  legendColor(): string;
6812
+ legendStroke(): string;
6504
6813
  legendLabel(): string;
6814
+ legendKey(): any;
6505
6815
  }
6506
6816
  /**
6507
6817
  * @private
@@ -6537,6 +6847,8 @@ declare class Legend extends Widget<LegendOptions> {
6537
6847
  private _maxWidth;
6538
6848
  private _maxHeight;
6539
6849
  private _items;
6850
+ private _visItems;
6851
+ private _itemMap;
6540
6852
  private _maxWidthDim;
6541
6853
  private _maxHeightDim;
6542
6854
  _location: LegendLocation;
@@ -6545,6 +6857,7 @@ declare class Legend extends Widget<LegendOptions> {
6545
6857
  getMaxWidth(domain: number): number;
6546
6858
  getMaxHeight(domain: number): number;
6547
6859
  getMarkerSize(): number;
6860
+ getSources(item: LegendItem): ILegendSource | ILegendSource[];
6548
6861
  protected _isVisible(): boolean;
6549
6862
  protected _doApply(options: LegendOptions): void;
6550
6863
  protected _doPrepareRender(chart: IChart): void;
@@ -6592,6 +6905,9 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
6592
6905
  setTarget(series: ISeries, point: DataPoint, siblings: DataPoint[]): ITooltipContext;
6593
6906
  getTextDomain(): IRichTextDomain;
6594
6907
  isFollowPointer(series: ISeries): boolean;
6908
+ getHeaderHeight(): number;
6909
+ getTailSize(): number;
6910
+ getBorderRadius(): number;
6595
6911
  protected _doSetSimple(src: any): boolean;
6596
6912
  protected _doApply(options: TooltipOptions): void;
6597
6913
  }
@@ -6654,7 +6970,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
6654
6970
  _tstep: number;
6655
6971
  get tick(): CategoryAxisTick;
6656
6972
  /**
6657
- * @override
6973
+ * @append
6658
6974
  */
6659
6975
  get label(): CategoryAxisLabel;
6660
6976
  xValueAt(pos: number): number;
@@ -6896,6 +7212,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6896
7212
  _referents: Series[];
6897
7213
  _runColor: string;
6898
7214
  _calcedColor: string;
7215
+ _calcedStroke: string;
6899
7216
  _simpleMode: boolean;
6900
7217
  _legended: any;
6901
7218
  private _legendMarker;
@@ -6970,9 +7287,13 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6970
7287
  */
6971
7288
  get visiblePoints(): DataPoint[];
6972
7289
  /**
6973
- * polar가 적용 가능한 시리즈 인지.
7290
+ * polar가 적용 가능한 시리즈 인지 여부
6974
7291
  */
6975
7292
  get canPolar(): boolean;
7293
+ /**
7294
+ * widget 시리즈 인지 여부
7295
+ */
7296
+ get isWidget(): boolean;
6976
7297
  /**
6977
7298
  * 시리즈에 설정된 데이터포인트들 중 표시 중인 index번째 포인트 객체.<br/>
6978
7299
  *
@@ -7010,7 +7331,9 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
7010
7331
  displayName(): string;
7011
7332
  legendMarker(doc: Document, size: number): RcElement;
7012
7333
  legendColor(): string;
7334
+ legendStroke(): string;
7013
7335
  legendLabel(): string;
7336
+ legendKey(): any;
7014
7337
  styleLegendMarker(marker: RcElement): void;
7015
7338
  canMixWith(other: IPlottingItem): boolean;
7016
7339
  /**
@@ -7259,12 +7582,17 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
7259
7582
  protected _doSetSimple(src: any): boolean;
7260
7583
  }
7261
7584
  declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
7585
+ _percent: number;
7262
7586
  _calcedColor: string;
7587
+ _calcedStroke: string;
7588
+ _legendKey: any;
7263
7589
  private _legendMarker;
7264
7590
  legendMarker(): RcElement;
7265
7591
  setLegendMarker(elt: RcElement): void;
7266
7592
  legendColor(): string;
7593
+ legendStroke(): string;
7267
7594
  legendLabel(): string;
7595
+ legendKey(): any;
7268
7596
  styleLegendMarker(marker: RcElement): void;
7269
7597
  isEmpty(): boolean;
7270
7598
  initPrev(axis: IAxis, prev: any): void;
@@ -7307,15 +7635,19 @@ declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = WidgetSerie
7307
7635
  private _centerYDim;
7308
7636
  private _othersGroup;
7309
7637
  private _groupedPoints;
7638
+ protected _sum: number;
7310
7639
  protected _doInit(op: OP): void;
7311
7640
  get othersGroup(): OthersGroup;
7641
+ get isWidget(): boolean;
7642
+ getSum(): number;
7312
7643
  getCenter(plotWidth: number, plotHeight: number): Point;
7313
7644
  protected _getLabelDefaultPos(labels: WidgetSeriesLabel, pos: PointLabelPosition): PointLabelPosition;
7314
7645
  needAxes(): boolean;
7315
7646
  _colorByPoint(): boolean;
7316
7647
  getLegendSources(list: ILegendSource[]): void;
7317
7648
  _isVisibleInLegend(p: WidgetSeriesPoint): boolean;
7318
- protected _doApply(options: OP): void;
7649
+ protected _doApply(op: OP): void;
7650
+ collectValues(axis: IAxis, vals: number[]): void;
7319
7651
  canMinPadding(axis: IAxis, min: number): boolean;
7320
7652
  canMaxPadding(axis: IAxis, max: number): boolean;
7321
7653
  protected _dataSourceChanged(): void;
@@ -8431,7 +8763,8 @@ interface AxisUnitLabelOptions extends AxisItemOptions {
8431
8763
  */
8432
8764
  interface AxisLineOptions extends AxisItemOptions {
8433
8765
  /**
8434
- * @override
8766
+ * @append
8767
+ *
8435
8768
  * 값이 undefined나 null이면, x축일 때 표시되고, y축이면 표시되지 않는다.
8436
8769
  *
8437
8770
  * @default undefined
@@ -8462,7 +8795,6 @@ interface AxisSectorLineOptions extends AxisLineOptions {
8462
8795
  */
8463
8796
  interface AxisTickOptions extends AxisItemOptions {
8464
8797
  /**
8465
- * @override
8466
8798
  * @default false
8467
8799
  */
8468
8800
  visible?: boolean;
@@ -8561,10 +8893,10 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
8561
8893
  */
8562
8894
  stepCount?: number;
8563
8895
  /**
8564
- * {@link stepPixels}가 적용 중일 때,
8565
- * 최대 표시 step 개수.<br/>
8566
- *
8567
- * @default 8
8896
+ * {@link stepPixels}가 적용 중일 때, 최대 표시 step 개수.<br/>
8897
+ * 값을 지정하지 않으면(undefined) 8 또는,
8898
+ * 축 길이를 {@link stepPixels) 보다 10% 작은 값으로 나눈 개수(더하기 1) 중 큰 값으로 설정된다.
8899
+ * 또, NaN이 되는 잘못된 값으로 설정하면 표시 개수가 제한되지 않는다.
8568
8900
  */
8569
8901
  maxCount?: number;
8570
8902
  /**
@@ -8575,7 +8907,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
8575
8907
  */
8576
8908
  steps?: (number | Date)[] | ((args: StepCallbackArgs) => (number | Date)[]);
8577
8909
  /**
8578
- * {@link steps}로 지정하는 경우, 설정된 범위 밖의 step들은 무시한다.<br/>
8910
+ * {@page steps}로 지정하는 경우, 설정된 범위 밖의 step들은 무시한다.<br/>
8579
8911
  */
8580
8912
  clipSteps?: boolean;
8581
8913
  /**
@@ -9001,7 +9333,8 @@ interface AxisRangeGuideOptions extends AxisGuideOptions {
9001
9333
  */
9002
9334
  interface AxisGridOptions extends AxisItemOptions {
9003
9335
  /**
9004
- * @override
9336
+ * @append
9337
+ *
9005
9338
  * polar 차트인 경우 명시적 false로 지정하지 않으면 true로 해석되고,
9006
9339
  * polar가 아닌 경우 undefined나 null로 지정한 경우 y축 그리드이면 true로 해석되고,
9007
9340
  * x축인 경우 명시적 true로 지정할 때만 표시된다.
@@ -9105,7 +9438,8 @@ interface CrosshairCallbackArgs {
9105
9438
  */
9106
9439
  interface CrosshairOptions extends ChartItemOptions {
9107
9440
  /**
9108
- * @override
9441
+ * @append
9442
+ *
9109
9443
  * @default false
9110
9444
  */
9111
9445
  visible?: boolean;
@@ -9211,18 +9545,19 @@ type AxisPosition = typeof _AxisPosition[keyof typeof _AxisPosition];
9211
9545
  */
9212
9546
  interface AxisScrollBarOptions extends AxisItemOptions {
9213
9547
  /**
9214
- * @override
9548
+ * @append
9549
+ *
9215
9550
  * @default false
9216
9551
  */
9217
9552
  visible?: boolean;
9218
9553
  /**
9219
- * 스크롤바 두께.
9554
+ * 스크롤바 두께.<br/>
9220
9555
  *
9221
9556
  * @default 10 픽셀
9222
9557
  */
9223
9558
  thickness?: number;
9224
9559
  /**
9225
- * 최소 thumb 길이.
9560
+ * 최소 thumb 길이.<br/>
9226
9561
  *
9227
9562
  * @default 32 픽셀
9228
9563
  */
@@ -9405,7 +9740,6 @@ interface AxisOptions extends ChartItemOptions {
9405
9740
  */
9406
9741
  unit?: string;
9407
9742
  /**
9408
- * @private
9409
9743
  * 축에 포함된 시리즈들 툴팁의 위쪽에 표시되는 텍스트 템플릿.<br/>
9410
9744
  *
9411
9745
  * tooltipHeader
@@ -9419,14 +9753,12 @@ interface AxisOptions extends ChartItemOptions {
9419
9753
  */
9420
9754
  tooltipHeader?: string;
9421
9755
  /**
9422
- * @private
9423
9756
  * 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.<br/>
9424
9757
  *
9425
9758
  * @default '${series}:<b> ${yValue}</b>'
9426
9759
  */
9427
9760
  tooltipRow?: string;
9428
9761
  /**
9429
- * @private
9430
9762
  * 축에 포함된 시리즈들 툴팁의 아래쪽에 표시되는 텍스트 템플릿.<br/>
9431
9763
  *
9432
9764
  */
@@ -9533,11 +9865,11 @@ interface CategoryAxisOptions extends AxisOptions {
9533
9865
  /** @dummy */
9534
9866
  type?: typeof CategoryAxisType;
9535
9867
  /**
9536
- * @override
9868
+ * @append
9537
9869
  */
9538
9870
  tick?: CategoryAxisTickOptions | boolean;
9539
9871
  /**
9540
- * @override
9872
+ * @append
9541
9873
  */
9542
9874
  label?: CategoryAxisLabelOptions | boolean;
9543
9875
  /**
@@ -9688,7 +10020,7 @@ type AxisFit = typeof _AxisFit[keyof typeof _AxisFit];
9688
10020
  */
9689
10021
  interface ContinuousAxisLabelOptions extends AxisLabelOptions {
9690
10022
  /**
9691
- * @override
10023
+ * @append
9692
10024
  *
9693
10025
  * label에 표시될 숫자 값의 표시 형식.<br/>
9694
10026
  * 기본 설정이 최대 소숫점 두자리 까지 표시하는 것이므로 더 자세한 표시가 필요한 경우 재설정해야 한다.
@@ -9710,9 +10042,8 @@ interface ContinuousAxisOptions extends AxisOptions {
9710
10042
  */
9711
10043
  baseLine?: AxisBaseLineOptions;
9712
10044
  /**
9713
- * @override
10045
+ * @append
9714
10046
  *
9715
- * 명시적으로 지정하는 최소값.<br/>
9716
10047
  * 축에 연결된 data point들의 값으로 계산된 최소값보다 이 속성 값이 작으면 대신 이 값이 축의 최소값이 된다.
9717
10048
  * padding이 적용되므로 이 값에 정확이 맞추고 싶은 경우 {@link minPadding}을 0으로 설정한다.
9718
10049
  * 계산 최소값이 더 작으면 이 속성은 무시된다.<br/>
@@ -9720,9 +10051,8 @@ interface ContinuousAxisOptions extends AxisOptions {
9720
10051
  */
9721
10052
  minValue?: number;
9722
10053
  /**
9723
- * @override
10054
+ * @append
9724
10055
  *
9725
- * 명시적으로 지정하는 최대값.<br/>
9726
10056
  * 축에 연결된 data point들의 값으로 계산된 최대값보다 이 속성 값이 크면 대신 이 값이 축의 최대값이 된다.
9727
10057
  * padding이 적용되므로 이 값에 정확이 맞추고 싶은 경우 {@link maxPadding}을 0으로 설정한다.
9728
10058
  * 계산 최대값이 더 크면 이 속성은 무시된다.\
@@ -9757,6 +10087,7 @@ interface ContinuousAxisOptions extends AxisOptions {
9757
10087
  padding?: number | [number, number][] | string;
9758
10088
  /**
9759
10089
  * 첫번째 tick 앞쪽에 추가되는 최소 여백을 전체 값 범위에 대한 비율로 지정한다.<br/>
10090
+ * 또는 'px'로 끝나는 문자열인 경우, 해당 픽셀 정도의 여백이 생길 수 있도록 조정된다.<br/>
9760
10091
  * 이 값을 지정하지 않으면 {@link padding}에 지정된 값을 따른다.
9761
10092
  * {@link startFit}이 {@link AxitFit.TICK TICK}일 때,
9762
10093
  * data point의 최소값과 첫번째 tick 사이에 이미 그 이상의 간격이 존재한다면 이 속성은 무시된다.
@@ -9766,6 +10097,7 @@ interface ContinuousAxisOptions extends AxisOptions {
9766
10097
  minPadding?: number | [number, number][] | string;
9767
10098
  /**
9768
10099
  * 마지막 tick 뒤쪽에 추가되는 최소 여백을 전체 값 범위에 대한 비율로 지정한다.<br/>
10100
+ * 또는 'px'로 끝나는 문자열인 경우, 해당 픽셀 정도의 여백이 생길 수 있도록 조정된다.<br/>
9769
10101
  * 이 값을 지정하지 않으면 {@link padding}에 지정된 값을 따른다.
9770
10102
  * {@link endFit}이 {@link endFit tick}일 때,
9771
10103
  * data point의 최대값과 마지막 tick 사이에 이미 그 이상의 간격이 존재한다면 이 속성은 무시된다.
@@ -9804,15 +10136,15 @@ interface ContinuousAxisOptions extends AxisOptions {
9804
10136
  */
9805
10137
  endFit?: AxisFit;
9806
10138
  /**
9807
- * @override
10139
+ * @append
9808
10140
  */
9809
10141
  tick?: ContinuousAxisTickOptions | boolean;
9810
10142
  /**
9811
- * @override
10143
+ * @append
9812
10144
  */
9813
10145
  grid?: ContinuousAxisGridOptions | boolean;
9814
10146
  /**
9815
- * @override
10147
+ * @append
9816
10148
  */
9817
10149
  break?: AxisBreakOptions;
9818
10150
  }
@@ -9838,11 +10170,10 @@ declare const LinearAxisType = "linear";
9838
10170
  *
9839
10171
  */
9840
10172
  interface LinearAxisOptions extends ContinuousAxisOptions {
9841
- /**
9842
- */
10173
+ /** @dummy */
9843
10174
  type?: typeof LinearAxisType;
9844
10175
  /**
9845
- * @override
10176
+ * @append
9846
10177
  */
9847
10178
  label?: LinearAxisLabelOptions | boolean;
9848
10179
  }
@@ -9853,18 +10184,18 @@ interface LinearAxisOptions extends ContinuousAxisOptions {
9853
10184
  */
9854
10185
  interface LogAxisTickOptions extends ContinuousAxisTickOptions {
9855
10186
  /**
9856
- * @append
9857
- *
9858
10187
  * 로그를 적용한 값으로 설정한다.
9859
10188
  */
9860
10189
  baseValue?: number;
9861
10190
  /**
9862
10191
  * @append
10192
+ *
9863
10193
  * 로그를 적용한 값으로 설정한다. // #141
9864
10194
  */
9865
10195
  stepInterval?: number;
9866
10196
  /**
9867
10197
  * @append
10198
+ *
9868
10199
  * 로그를 적용한 값으로 설정한다.
9869
10200
  */
9870
10201
  steps?: (number | Date)[] | ((args: StepCallbackArgs) => (number | Date)[]);
@@ -9884,11 +10215,10 @@ declare const LogAxisType = "log";
9884
10215
  *
9885
10216
  */
9886
10217
  interface LogAxisOptions extends ContinuousAxisOptions {
9887
- /**
9888
- */
10218
+ /** @dummy */
9889
10219
  type?: typeof LogAxisType;
9890
10220
  /**
9891
- * @override
10221
+ * @append
9892
10222
  */
9893
10223
  tick?: LogAxisTickOptions | boolean;
9894
10224
  /**
@@ -9935,7 +10265,7 @@ interface TimeAxisTickOptions extends ContinuousAxisTickOptions {
9935
10265
  */
9936
10266
  stepInterval?: number;
9937
10267
  /**
9938
- * @override
10268
+ * @append
9939
10269
  */
9940
10270
  label?: TimeAxisLabelOptions | boolean;
9941
10271
  }
@@ -9947,20 +10277,20 @@ declare const TimeAxisType = "time";
9947
10277
  *
9948
10278
  */
9949
10279
  interface TimeAxisOptions extends ContinuousAxisOptions {
9950
- /**
9951
- */
10280
+ /** @dummy */
9952
10281
  type?: typeof TimeAxisType;
9953
10282
  /**
9954
- * @override
10283
+ * @append
9955
10284
  */
9956
10285
  label?: TimeAxisLabelOptions | boolean;
9957
10286
  /**
9958
- * @override
10287
+ * @append
10288
+ *
9959
10289
  * @default NaN
9960
10290
  */
9961
10291
  baseValue?: number;
9962
10292
  /**
9963
- * @override
10293
+ * @append
9964
10294
  */
9965
10295
  tick?: TimeAxisTickOptions | boolean;
9966
10296
  }
@@ -10274,7 +10604,8 @@ interface BulletGaugeBandOptions extends ChartItemOptions {
10274
10604
  */
10275
10605
  interface BulletTargetBarOptions extends ChartItemOptions {
10276
10606
  /**
10277
- * @override
10607
+ * @append
10608
+ *
10278
10609
  * @default true
10279
10610
  */
10280
10611
  visible: boolean;
@@ -10565,7 +10896,8 @@ interface CircularGaugeGroupOptions extends GaugeGroupOptions<CircleGaugeOptions
10565
10896
  */
10566
10897
  interface GaugeRangeLabelOptions extends ChartItemOptions {
10567
10898
  /**
10568
- * @override
10899
+ * @append
10900
+ *
10569
10901
  * @default false
10570
10902
  */
10571
10903
  visible?: boolean;
@@ -10576,7 +10908,8 @@ interface GaugeRangeLabelOptions extends ChartItemOptions {
10576
10908
  */
10577
10909
  interface GaugeRangeBandOptions extends ChartItemOptions {
10578
10910
  /**
10579
- * @override
10911
+ * @append
10912
+ *
10580
10913
  * @default false
10581
10914
  */
10582
10915
  visible?: boolean;
@@ -10693,11 +11026,13 @@ interface GaugeScaleOptions extends ChartItemOptions {
10693
11026
  */
10694
11027
  interface CircleGaugeScaleOptions extends GaugeScaleOptions {
10695
11028
  /**
10696
- * @override
11029
+ * @append
11030
+ *
10697
11031
  * @default false
10698
11032
  */
10699
11033
  /**
10700
- * @override
11034
+ * @append
11035
+ *
10701
11036
  * @default 72
10702
11037
  */
10703
11038
  stepPixels: number;
@@ -10756,7 +11091,8 @@ interface CircleGaugeValueRimOptions extends CircleGaugeRimBaseOptions {
10756
11091
  */
10757
11092
  interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
10758
11093
  /**
10759
- * @override
11094
+ * @append
11095
+ *
10760
11096
  * @default false
10761
11097
  */
10762
11098
  visible?: boolean;
@@ -10765,7 +11101,8 @@ interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
10765
11101
  */
10766
11102
  interface CircleGaugeHandOptions extends ChartItemOptions {
10767
11103
  /**
10768
- * @override
11104
+ * @append
11105
+ *
10769
11106
  * @default false
10770
11107
  */
10771
11108
  visible?: boolean;
@@ -10795,7 +11132,8 @@ interface CircleGaugeHandOptions extends ChartItemOptions {
10795
11132
  */
10796
11133
  interface CircleGaugePinOptions extends ChartItemOptions {
10797
11134
  /**
10798
- * @override
11135
+ * @append
11136
+ *
10799
11137
  * @default false
10800
11138
  */
10801
11139
  visible?: boolean;
@@ -10860,11 +11198,11 @@ declare const CircleGaugeGroupType = "circlegroup";
10860
11198
  * @modules gauge
10861
11199
  */
10862
11200
  interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
10863
- /**
10864
- */
11201
+ /** @dummy */
10865
11202
  type?: typeof CircleGaugeGroupType;
10866
11203
  /**
10867
- * @override
11204
+ * @append
11205
+ *
10868
11206
  * @default '50%'
10869
11207
  */
10870
11208
  innerRadius?: PercentSize;
@@ -11890,6 +12228,7 @@ interface IChart {
11890
12228
  _isDataChanged(): boolean;
11891
12229
  getAxisOf(annotation: Annotation, isX: boolean): IAxis;
11892
12230
  isValidAxis(axis: IAxis): boolean;
12231
+ getPaletteColors(palette: string): string[];
11893
12232
  }
11894
12233
  /**
11895
12234
  * 차트 제작 주체 등을 표시하는 영역에 대한 모델.<br/>
@@ -11973,6 +12312,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
11973
12312
  _exporter: Exporter;
11974
12313
  _width: number;
11975
12314
  _height: number;
12315
+ private _palColors;
11976
12316
  private _params;
11977
12317
  private _inverted;
11978
12318
  private _splitted;
@@ -12085,6 +12425,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
12085
12425
  addSeries(source: any, animate: boolean): Series;
12086
12426
  removeSeries(series: string | Series, animate: boolean): Series;
12087
12427
  render(): void;
12428
+ getPaletteColors(palette: string): string[];
12088
12429
  private $_loadTemplates;
12089
12430
  _getGroupType(type: string): any;
12090
12431
  _getSeriesType(type: string): any;
@@ -12828,7 +13169,7 @@ declare class ContinuousAxisTick<OP extends ContinuousAxisTickOptions = Continuo
12828
13169
  protected _getValidInterval(axis: ContinuousAxis, v: any, length: number, min: number, max: number): any;
12829
13170
  buildSteps(axis: ContinuousAxis, length: number, base: number, min: number, max: number, broken?: boolean): number[];
12830
13171
  getNextStep(step: number, delta: number): number;
12831
- getMaxCount(): number;
13172
+ getMaxCount(len: number, stepPixels: number): number;
12832
13173
  canUseNumSymbols(): boolean;
12833
13174
  protected _doApply(op: OP): void;
12834
13175
  private $_getStepPixels;
@@ -12915,6 +13256,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12915
13256
  _calcedMax: number;
12916
13257
  _fixedMin: number;
12917
13258
  _fixedMax: number;
13259
+ private _prevSteps;
12918
13260
  /** y축으로 사용될 때만 적용한다. */
12919
13261
  private _breaks;
12920
13262
  private _mergedBreaks;
@@ -12926,8 +13268,6 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12926
13268
  /**
12927
13269
  * base value 위치에 표시되는 선분 설정 모델.<br/>
12928
13270
  * 기본적으로 표시되지 않는다.
12929
- *
12930
- *
12931
13271
  */
12932
13272
  get baseLine(): AxisBaseLine;
12933
13273
  /**
@@ -12935,13 +13275,11 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12935
13275
  */
12936
13276
  get break(): AxisBreak;
12937
13277
  /**
12938
- * @override
12939
- *
13278
+ * @append
12940
13279
  */
12941
13280
  get tick(): ContinuousAxisTick;
12942
13281
  /**
12943
- * @override
12944
- *
13282
+ * @append
12945
13283
  */
12946
13284
  get grid(): ContinuousAxisGrid;
12947
13285
  getBaseValue(): number;
@@ -12956,8 +13294,6 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
12956
13294
  protected _createTickModel(): ContinuousAxisTick;
12957
13295
  protected abstract _createLabel(): ContinuousAxisLabel;
12958
13296
  protected _doPrepareRender(): void;
12959
- private _calcedSteps;
12960
- private _prevSteps;
12961
13297
  private $_trim;
12962
13298
  private $_trimSteps;
12963
13299
  protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
@@ -13001,8 +13337,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
13001
13337
  declare class LinearAxis extends ContinuousAxis<LinearAxisOptions> {
13002
13338
  static type: string;
13003
13339
  /**
13004
- * @override
13005
- *
13340
+ * @append
13006
13341
  */
13007
13342
  get label(): LinearAxisLabel;
13008
13343
  protected _createLabel(): ContinuousAxisLabel;
@@ -13251,6 +13586,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
13251
13586
  static readonly DATA_UNHOVER = "unhover";
13252
13587
  static readonly LEGEND_MARKER = "rct-legend-item-marker";
13253
13588
  static register(...clses: [typeof Series<SeriesOptions>, typeof SeriesView<Series>][]): void;
13589
+ static isPointDom(dom: any): dom is Element;
13254
13590
  _simpleMode: boolean;
13255
13591
  protected _pointContainer: PointContainer;
13256
13592
  _labelContainer: PointLabelContainer;
@@ -13278,8 +13614,8 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
13278
13614
  protected _doViewRateChanged(rate: number): void;
13279
13615
  protected _doPosRateChanged(rate: number): void;
13280
13616
  protected _doPrevRateChanged(rate: number): void;
13281
- _animationStarted(ani: Animation): void;
13282
- _animationFinished(ani: Animation): void;
13617
+ _animationStarted(ani: any): void;
13618
+ _animationFinished(ani: any): void;
13283
13619
  protected abstract _getPointPool(): ElementPool<RcElement>;
13284
13620
  pointByDom(elt: Element): IPointView;
13285
13621
  getPointView(p: DataPoint): RcElement;
@@ -13357,21 +13693,27 @@ declare abstract class BoxPointElement extends PointElement {
13357
13693
  xSave: number;
13358
13694
  savePrevs(): void;
13359
13695
  }
13360
- declare class BarElement extends BoxPointElement {
13361
- layout(x: number, y: number, rTop: number, rBottom: number, base: number, side: number, inverted: boolean): void;
13362
- }
13363
- declare class Bar3DElement extends RcElement implements IPointView {
13696
+ declare abstract class PointElementEx extends RcElement implements IPointView {
13364
13697
  point: DataPoint;
13698
+ constructor(doc: Document);
13699
+ savePrevs(): void;
13700
+ }
13701
+ declare abstract class BoxPointElementEx extends PointElementEx {
13365
13702
  wPoint: number;
13366
13703
  hPoint: number;
13367
13704
  wSave: number;
13368
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 {
13369
13712
  private _topView;
13370
13713
  private _frontView;
13371
13714
  private _sideView;
13372
13715
  constructor(doc: Document);
13373
13716
  layout(x: number, y: number, rTop: number, rBottom: number, base: number, side: number, inverted: boolean): void;
13374
- savePrevs(): void;
13375
13717
  }
13376
13718
  declare abstract class ClusterableSeriesView<T extends Series = Series> extends SeriesView<T> {
13377
13719
  protected _labelInfo: LabelLayoutInfo;
@@ -13388,6 +13730,10 @@ declare abstract class ClusterableSeriesView<T extends Series = Series> extends
13388
13730
  declare abstract class BasedSeriesView<T extends BasedSeries> extends ClusterableSeriesView<T> {
13389
13731
  private _labelLineContainer;
13390
13732
  protected _pointOff: number;
13733
+ protected _reversed: boolean;
13734
+ protected _yLen: number;
13735
+ protected _baseVal: number;
13736
+ protected _yBase: number;
13391
13737
  protected _depthAngle: number;
13392
13738
  protected _base: number;
13393
13739
  protected _side: number;
@@ -13395,6 +13741,7 @@ declare abstract class BasedSeriesView<T extends BasedSeries> extends Clusterabl
13395
13741
  depthEnabled(): boolean;
13396
13742
  protected _prepareSeries(doc: Document, model: T, polar: boolean, depth: BodyDepth): void;
13397
13743
  protected _doPrevRateChanged(rate: number): void;
13744
+ protected _prepareLayoutPoints(width: number, height: number): void;
13398
13745
  protected _layoutPoints(width: number, height: number): void;
13399
13746
  protected _layoutLabel(model: DataPointLabel, info: LabelLayoutInfo, w: number, h: number): void;
13400
13747
  }
@@ -13878,7 +14225,7 @@ declare class TimeAxis extends ContinuousAxis<TimeAxisOptions> {
13878
14225
  static defaults: TimeAxisOptions;
13879
14226
  _offset: number;
13880
14227
  /**
13881
- * @override
14228
+ * @append
13882
14229
  */
13883
14230
  get label(): TimeAxisLabel;
13884
14231
  protected _createTickModel(): TimeAxisTick;
@@ -14168,7 +14515,7 @@ declare class BarSeriesPoint extends DataPoint {
14168
14515
  * 원래 차지할 너비에 대한 상대값. 1이면 원래대로 표시된다.
14169
14516
  */
14170
14517
  width?: number;
14171
- protected _readObject(series: BarSeries, v: any): void;
14518
+ protected _readObject(series: BarSeriesBase, v: any): void;
14172
14519
  }
14173
14520
  /**
14174
14521
  * Bar 시리즈 계열의 기반(base) 모델.<br/>
@@ -14605,13 +14952,13 @@ declare class PieSeriesLabel extends WidgetSeriesLabel<PieSeriesLabelOptions> {
14605
14952
  static defaults: PieSeriesLabelOptions;
14606
14953
  getDistance(inner: boolean, rd: number, rdInner: number): number;
14607
14954
  }
14608
- declare class PieSeriesDepth extends ChartItem<PieSeriesDepthOption> {
14955
+ declare class PieSeriesDepth extends ChartItem<PieSeriesDepthOptions> {
14609
14956
  static readonly DEPTH_RATIO = 0.6;
14610
- static defaults: PieSeriesDepthOption;
14957
+ static defaults: PieSeriesDepthOptions;
14611
14958
  getLength(): number;
14612
14959
  protected _isVisible(): boolean;
14613
14960
  protected _doSetSimple(src: any): boolean;
14614
- protected _doApply(op: PieSeriesDepthOption): void;
14961
+ protected _doApply(op: PieSeriesDepthOptions): void;
14615
14962
  }
14616
14963
  /**
14617
14964
  * Pie 시리즈 모델.<br/>
@@ -14798,6 +15145,26 @@ declare class Color {
14798
15145
  private $_parseNumber;
14799
15146
  }
14800
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
+
14801
15168
  declare abstract class BarSeriesViewBase<T extends BarSeriesBase> extends BasedSeriesView<T> {
14802
15169
  private _deep;
14803
15170
  private _bars;
@@ -14812,6 +15179,9 @@ declare abstract class BarSeriesViewBase<T extends BarSeriesBase> extends BasedS
14812
15179
  private $_parepareSectors;
14813
15180
  private $_layoutSectors;
14814
15181
  }
15182
+ /**
15183
+ * @private
15184
+ */
14815
15185
  declare class BarSeriesView<T extends BarSeries = BarSeries> extends BarSeriesViewBase<T> {
14816
15186
  protected _rdTop: number;
14817
15187
  protected _rdBottom: number;
@@ -14892,15 +15262,16 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
14892
15262
  }
14893
15263
 
14894
15264
  declare abstract class SeriesAnimation {
14895
- static reveal(series: SeriesView<Series>, options?: IRevealAnimation): void;
14896
- static grow(series: SeriesView<Series>, endHandler?: RcAnimationEndHandler): void;
14897
- 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;
14898
15268
  static fadeIn(series: SeriesView<Series>): void;
14899
- constructor(sv: SeriesView<Series>, options?: any);
14900
- 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;
14901
15271
  }
14902
15272
  interface IRevealAnimation {
14903
15273
  from: 'left' | 'right' | 'top' | 'bottom';
15274
+ view?: RcElement;
14904
15275
  }
14905
15276
 
14906
15277
  interface ILine {
@@ -14991,6 +15362,7 @@ declare class ArcElement extends PathElement {
14991
15362
  setArc(cx: number, cy: number, rd: number, start: number, angle: number, clockwise: boolean): void;
14992
15363
  }
14993
15364
 
15365
+ declare const SVGNS = "http://www.w3.org/2000/svg";
14994
15366
  declare const isObject: (v: any) => boolean;
14995
15367
  /** @private */
14996
15368
  declare const isArray: (arg: any) => arg is any[];
@@ -15169,4 +15541,4 @@ declare const createChart: typeof Globals.createChart;
15169
15541
  declare const createData: typeof Globals.createData;
15170
15542
  declare const setLicenseKey: typeof Globals.setLicenseKey;
15171
15543
 
15172
- 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 };