realchart 1.4.7 → 1.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gauge.js +2 -2
- package/gauge.mjs +2 -2
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +2 -2
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +2 -2
- package/ie/realchart-style.ie.css +85 -1
- package/ie/split.ie.js +1 -1
- package/ie/treemap.ie.js +1 -1
- package/ie/vector.ie.js +1 -1
- package/ie/wordcloud.ie.js +2 -2
- package/index.d.ts +356 -127
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +2 -2
- package/pictogram.mjs +2 -2
- package/realchart-style.css +41 -3
- package/split.js +1 -1
- package/split.mjs +1 -1
- package/treemap.js +1 -1
- package/treemap.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/wordcloud.js +2 -2
- package/wordcloud.mjs +2 -2
package/index.d.ts
CHANGED
|
@@ -1350,12 +1350,13 @@ declare abstract class RcControl extends RcObject implements IAssetOwner {
|
|
|
1350
1350
|
contentWidth(): number;
|
|
1351
1351
|
contentHeight(): number;
|
|
1352
1352
|
contentRight(): number;
|
|
1353
|
-
clipContainer(): SVGElement;
|
|
1354
1353
|
canvasCtx(): CanvasRenderingContext2D;
|
|
1355
1354
|
setData(data: string, value: any, container?: boolean): void;
|
|
1355
|
+
addClip<T extends ClipElement>(clip: T): T;
|
|
1356
1356
|
clearDefs(): void;
|
|
1357
1357
|
private $_clearDefs;
|
|
1358
1358
|
clearAssetDefs(): void;
|
|
1359
|
+
clearClipDefs(): void;
|
|
1359
1360
|
clearTemporaryDefs(): void;
|
|
1360
1361
|
appendDom<T extends HTMLElement>(elt: T): T;
|
|
1361
1362
|
addElement<T extends RcElement>(elt: T): T;
|
|
@@ -1376,6 +1377,8 @@ declare abstract class RcControl extends RcObject implements IAssetOwner {
|
|
|
1376
1377
|
*/
|
|
1377
1378
|
clipBounds(x?: number, y?: number, width?: number, height?: number, rd?: number): ClipRectElement;
|
|
1378
1379
|
clipCircle(): ClipCircleElement;
|
|
1380
|
+
clipDonut(): ClipDonutElement;
|
|
1381
|
+
clipPath(): ClipPathElement;
|
|
1379
1382
|
addDef(element: Element): void;
|
|
1380
1383
|
removeDef(element: Element | string): void;
|
|
1381
1384
|
containerToElement(element: RcElement, x: number, y: number): Point;
|
|
@@ -1425,6 +1428,7 @@ declare class RcElement extends RcObject {
|
|
|
1425
1428
|
static DEBUGGING: boolean;
|
|
1426
1429
|
static TESTING: boolean;
|
|
1427
1430
|
static ASSET_KEY: string;
|
|
1431
|
+
static CLIP_KEY: string;
|
|
1428
1432
|
static TEMP_KEY: string;
|
|
1429
1433
|
private _visible;
|
|
1430
1434
|
private _x;
|
|
@@ -1566,6 +1570,7 @@ declare class RcElement extends RcObject {
|
|
|
1566
1570
|
stopAni(): this;
|
|
1567
1571
|
removeLater(delay: number, callback?: (v: RcElement) => void): RcElement;
|
|
1568
1572
|
hide(delay: number): RcElement;
|
|
1573
|
+
isClip(clip: ClipElement): HTMLElement;
|
|
1569
1574
|
clipRect(x: number, y: number, width: number, height: number, rd?: number): ClipRectElement;
|
|
1570
1575
|
setClip(cr?: ClipElement | string): void;
|
|
1571
1576
|
setTemporary(): RcElement;
|
|
@@ -1613,11 +1618,22 @@ declare class PathElement extends RcElement {
|
|
|
1613
1618
|
get path(): string;
|
|
1614
1619
|
setPath(path: Path): PathElement;
|
|
1615
1620
|
}
|
|
1621
|
+
declare class ClipPathElement extends ClipElement {
|
|
1622
|
+
private _path;
|
|
1623
|
+
constructor(doc: Document);
|
|
1624
|
+
getPath(): string;
|
|
1625
|
+
setPath(path: Path): void;
|
|
1626
|
+
}
|
|
1616
1627
|
declare class ClipCircleElement extends ClipElement {
|
|
1617
1628
|
private _circle;
|
|
1618
1629
|
constructor(doc: Document);
|
|
1619
1630
|
setCircle(cx: number, cy: number, radius: number): void;
|
|
1620
1631
|
}
|
|
1632
|
+
declare class ClipDonutElement extends ClipElement {
|
|
1633
|
+
private _donut;
|
|
1634
|
+
constructor(doc: Document);
|
|
1635
|
+
setDonut(cx: number, cy: number, radius: number, innerRadius: number): void;
|
|
1636
|
+
}
|
|
1621
1637
|
|
|
1622
1638
|
/**
|
|
1623
1639
|
* @enum
|
|
@@ -1662,6 +1678,11 @@ declare const _Shapes: {
|
|
|
1662
1678
|
/** @dummy */
|
|
1663
1679
|
type Shape = typeof _Shapes[keyof typeof _Shapes];
|
|
1664
1680
|
declare class SvgShapes {
|
|
1681
|
+
private static _createDrawers;
|
|
1682
|
+
private static _drawers;
|
|
1683
|
+
static getDrawer(shape: string): {
|
|
1684
|
+
(rd: number): (string | number)[];
|
|
1685
|
+
};
|
|
1665
1686
|
static line(x1: number, y1: number, x2: number, y2: number): PathValue[];
|
|
1666
1687
|
static polygon(...pts: number[]): PathValue[];
|
|
1667
1688
|
static box(x1: number, y1: number, x2: number, y2: number): PathValue[];
|
|
@@ -1673,6 +1694,7 @@ declare class SvgShapes {
|
|
|
1673
1694
|
static isCircled(angle: number): boolean;
|
|
1674
1695
|
static arc(cx: number, cy: number, rx: number, ry: number, start: number, end: number, clockwise: boolean, close?: boolean): PathValue[];
|
|
1675
1696
|
static sector(cx: number, cy: number, rx: number, ry: number, rInner: number, start: number, end: number, clockwise: boolean): PathValue[];
|
|
1697
|
+
static donut(cx: number, cy: number, rd: number, rdInner: number): PathValue[];
|
|
1676
1698
|
static arc3d(cx: number, cy: number, rx: number, ry: number, depth: number, start: number, end: number, clockwise: boolean, ret?: {
|
|
1677
1699
|
x1: number;
|
|
1678
1700
|
y1: number;
|
|
@@ -1838,13 +1860,87 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
1838
1860
|
*/
|
|
1839
1861
|
rotation?: number;
|
|
1840
1862
|
}
|
|
1841
|
-
/**
|
|
1863
|
+
/**
|
|
1864
|
+
* 데이터포인트 label의 연결선 옵션.<br/>
|
|
1865
|
+
*/
|
|
1842
1866
|
interface DataPointLabelLineOptions extends ChartItemOptions {
|
|
1843
1867
|
/**
|
|
1844
1868
|
* @default false
|
|
1845
1869
|
*/
|
|
1846
1870
|
visible?: boolean;
|
|
1847
1871
|
}
|
|
1872
|
+
/**
|
|
1873
|
+
* 추세선 아래쪽에 표시되는 영역 설정 모델.<br/>
|
|
1874
|
+
*/
|
|
1875
|
+
interface TrendlineAreaOptions extends ChartItemOptions {
|
|
1876
|
+
/**
|
|
1877
|
+
* @default false
|
|
1878
|
+
*/
|
|
1879
|
+
visible?: boolean;
|
|
1880
|
+
}
|
|
1881
|
+
/**
|
|
1882
|
+
* 추세선 라벨 옵션.<br/>
|
|
1883
|
+
*/
|
|
1884
|
+
interface TrendlineLabelOptions extends IconedTextOptions {
|
|
1885
|
+
/**
|
|
1886
|
+
* @default false
|
|
1887
|
+
*/
|
|
1888
|
+
visible?: boolean;
|
|
1889
|
+
/**
|
|
1890
|
+
* 라벨 텍스트.<br/>
|
|
1891
|
+
*
|
|
1892
|
+
* @default '${expr}'
|
|
1893
|
+
*/
|
|
1894
|
+
text?: string;
|
|
1895
|
+
/**
|
|
1896
|
+
* 라벨 위치.<br/>
|
|
1897
|
+
* 추세선 시작점과 끝점 사이의 상대 위치를 0~1 사이의 숫자로 지정한다.<br/>
|
|
1898
|
+
*
|
|
1899
|
+
* @default 1
|
|
1900
|
+
*/
|
|
1901
|
+
position?: number;
|
|
1902
|
+
/**
|
|
1903
|
+
* 수평 정렬 방식.<br/>
|
|
1904
|
+
*
|
|
1905
|
+
* @default 'auto'
|
|
1906
|
+
*/
|
|
1907
|
+
align?: 'auto' | Align;
|
|
1908
|
+
/**
|
|
1909
|
+
* 수직 정렬 방식.<br/>
|
|
1910
|
+
*
|
|
1911
|
+
* @default 'auto'
|
|
1912
|
+
*/
|
|
1913
|
+
verticalAlign?: 'auto' | VerticalAlign;
|
|
1914
|
+
/**
|
|
1915
|
+
* 0보다 큰 값이면 원래 표시 위치에서 수평으로 멀어지고, 음수면 가까워진다.<br/>
|
|
1916
|
+
*
|
|
1917
|
+
* @default {@link align}이 'left'나 'right'일 때는 4, 아니면 0
|
|
1918
|
+
} */
|
|
1919
|
+
offsetX?: number;
|
|
1920
|
+
/**
|
|
1921
|
+
* 0보다 큰 값이면 원래 표시 위치에서 수직으로 멀어지고, 음수면 가까워진다.<br/>
|
|
1922
|
+
*
|
|
1923
|
+
* @default {@link verticalAlign}이 'top'이나 'bottom'일 때는 4, 아니면 0
|
|
1924
|
+
*/
|
|
1925
|
+
offsetY?: number;
|
|
1926
|
+
}
|
|
1927
|
+
interface TrendlineMarkerOptions extends ChartItemOptions {
|
|
1928
|
+
/**
|
|
1929
|
+
* @default false
|
|
1930
|
+
*/
|
|
1931
|
+
visible?: boolean;
|
|
1932
|
+
/**
|
|
1933
|
+
* maker 모양.<br/>
|
|
1934
|
+
* 지정하지 않으면 'circle'
|
|
1935
|
+
*/
|
|
1936
|
+
shape?: Shape;
|
|
1937
|
+
/**
|
|
1938
|
+
* maker 반지름 크기.<br/>
|
|
1939
|
+
*
|
|
1940
|
+
* @default 4
|
|
1941
|
+
*/
|
|
1942
|
+
radius?: number;
|
|
1943
|
+
}
|
|
1848
1944
|
/**
|
|
1849
1945
|
* 추세선(trendline) 유형.<br/>
|
|
1850
1946
|
*
|
|
@@ -1892,7 +1988,8 @@ declare const _TrendLineType: {
|
|
|
1892
1988
|
type TrendLineType = typeof _TrendLineType[keyof typeof _TrendLineType];
|
|
1893
1989
|
/**
|
|
1894
1990
|
* 시리즈 추세선 옵션.<br/>
|
|
1895
|
-
* {@link https://realchart.co.kr/config/config/base/series series}의 'trendLine' 항목으로
|
|
1991
|
+
* {@link https://realchart.co.kr/config/config/base/series series}의 'trendLine' 항목으로 설정한다.<br/>
|
|
1992
|
+
* polar 차트에서는 {@link variableArea}, {@link fixedArea} 속성들은 지원되지 않는다.
|
|
1896
1993
|
*
|
|
1897
1994
|
* @enum
|
|
1898
1995
|
*/
|
|
@@ -1904,27 +2001,74 @@ interface TrendlineOptions extends ChartItemOptions {
|
|
|
1904
2001
|
*/
|
|
1905
2002
|
visible?: boolean;
|
|
1906
2003
|
/**
|
|
1907
|
-
* 추세선
|
|
1908
|
-
*
|
|
2004
|
+
* 추세선 유형.<br/>
|
|
1909
2005
|
*/
|
|
1910
2006
|
type?: TrendLineType;
|
|
1911
2007
|
/**
|
|
1912
|
-
* 추세선
|
|
2008
|
+
* 추세선 정밀도.<br/>
|
|
1913
2009
|
* 데이터포인트 사이에 계산될 지점의 개수.
|
|
1914
2010
|
*
|
|
2011
|
+
* @default 5
|
|
1915
2012
|
*/
|
|
1916
2013
|
resolution?: number;
|
|
1917
2014
|
/**
|
|
1918
|
-
* 이동 평균 유형의 계산
|
|
1919
|
-
*
|
|
2015
|
+
* 이동 평균 유형의 계산 간격.<br/>
|
|
1920
2016
|
*/
|
|
1921
2017
|
movingInterval?: number;
|
|
1922
2018
|
/**
|
|
1923
|
-
*
|
|
1924
|
-
*
|
|
1925
|
-
*
|
|
2019
|
+
* @deprecated 적용되지 않는다.
|
|
2020
|
+
* 아주 부드러운 곡선이 필요하면 {@link resolution} 속성값을 기본값 보다 높게 지정한다.
|
|
1926
2021
|
*/
|
|
1927
2022
|
curved?: boolean;
|
|
2023
|
+
/**
|
|
2024
|
+
* 추세선을 앞으로(데이터의 X축 증가 방향) 얼마만큼 연장(예측)할지 지정한다.<br/>
|
|
2025
|
+
* 숫자는 X축 단위(예: 시간 단위 또는 X 값 자체)로 해석된다.
|
|
2026
|
+
* 0보다 큰 값으로 지정해야 한다.
|
|
2027
|
+
*/
|
|
2028
|
+
forward?: number;
|
|
2029
|
+
/**
|
|
2030
|
+
* 추세선을 뒤로(데이터의 X축 감소 방향) 얼마만큼 연장할지 지정한다.<br/>
|
|
2031
|
+
* 숫자는 X축 단위로 해석된다.
|
|
2032
|
+
* 0보다 큰 값으로 지정해야 한다.
|
|
2033
|
+
*/
|
|
2034
|
+
backward?: number;
|
|
2035
|
+
/**
|
|
2036
|
+
* 변동 부하(Variable Load) 영역 설정.<br/>
|
|
2037
|
+
* 예측 오차 범위 또는 변동성을 나타낸다.
|
|
2038
|
+
*/
|
|
2039
|
+
variableArea?: TrendlineAreaOptions;
|
|
2040
|
+
/**
|
|
2041
|
+
* 고정 부하(Fixed Load) 영역 설정.<br/>
|
|
2042
|
+
* 고정적으로 발생하는 부하를 의미한다.
|
|
2043
|
+
* Y-Intercept(절편).
|
|
2044
|
+
*/
|
|
2045
|
+
fixedArea?: TrendlineAreaOptions;
|
|
2046
|
+
/**
|
|
2047
|
+
* 추세선 라벨 설정.<br/>
|
|
2048
|
+
* 추세선으로 계산된 수식 등을 표시하는 용도로 사용할 수 있다.
|
|
2049
|
+
*/
|
|
2050
|
+
label?: TrendlineLabelOptions;
|
|
2051
|
+
/**
|
|
2052
|
+
* 추세선 양 끝에 표시되는 마커 설정.<br/>
|
|
2053
|
+
*/
|
|
2054
|
+
marker?: TrendlineMarkerOptions;
|
|
2055
|
+
/**
|
|
2056
|
+
* 이동 평균(movingAverage) 추세선 유형일 때, 외삽법(extrapolation) 방식.<br/>
|
|
2057
|
+
* 'none'은 외삽을 사용하지 않으며, 'linear'는 선형 외삽, 'flat'은 평탄한 외삽을 의미한다.
|
|
2058
|
+
*
|
|
2059
|
+
* @default 'none'
|
|
2060
|
+
*/
|
|
2061
|
+
maExtrapolation?: 'none' | 'linear' | 'flat';
|
|
2062
|
+
/**
|
|
2063
|
+
* 추세선 수식에 사용되는 숫자 형식.<br/>
|
|
2064
|
+
*
|
|
2065
|
+
* @default '0.####'
|
|
2066
|
+
*/
|
|
2067
|
+
numberFormat?: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* true로 지정하면 시리즈가 애니메이션 중일 때는 표시하지 않는다.<br/>
|
|
2070
|
+
*/
|
|
2071
|
+
autoHide?: boolean;
|
|
1928
2072
|
}
|
|
1929
2073
|
/**
|
|
1930
2074
|
* 시리즈는 {@link data}로 지정된 값들을 데이터포인트로 표시하는 차트의 핵심 구성 요소이다.<br/>
|
|
@@ -1976,31 +2120,31 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1976
2120
|
/**
|
|
1977
2121
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 x 값을 지정하는 속성명이나 인덱스 또는,
|
|
1978
2122
|
* 전달되는 json 객체에서 x 값을 리턴하는 함수.<br/>
|
|
1979
|
-
* 지정하지
|
|
2123
|
+
* 지정하지 않으면(undefined), 데이터포인트의 값이 array일 때는 0, 객체이면 'x' 속성 값이 사용된다..
|
|
1980
2124
|
*/
|
|
1981
2125
|
xField?: string | number | Function;
|
|
1982
2126
|
/**
|
|
1983
2127
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 y 값을 지정하는 속성명이나 인덱스 또는,
|
|
1984
2128
|
* 전달되는 json 객체에서 y 값을 리턴하는 함수.<br/>
|
|
1985
|
-
* 지정하지
|
|
2129
|
+
* 지정하지 않으면(undefined), 데이터포인트의 값이 array일 때는 1, 객체이면 'y' 속성 값이 사용된다.
|
|
1986
2130
|
*/
|
|
1987
2131
|
yField?: string | number | Function;
|
|
1988
2132
|
/**
|
|
1989
2133
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 z 값을 지정하는 속성명이나 인덱스 또는,
|
|
1990
2134
|
* 전달되는 json 객체에서 z 값을 리턴하는 함수.<br/>
|
|
1991
|
-
* 지정하지
|
|
2135
|
+
* 지정하지 않으면(undefined), 데이터포인트의 값이 array일 때는 2, 객체이면 'z' 속성 값이 사용된다.
|
|
1992
2136
|
*/
|
|
1993
2137
|
zField?: string | number | Function;
|
|
1994
2138
|
/**
|
|
1995
2139
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 color 값을 지정하는 속성명이나 인덱스 또는,
|
|
1996
2140
|
* 전달되는 json 객체에서 color 값을 리턴하는 함수.<br/>
|
|
1997
|
-
* 지정하지
|
|
2141
|
+
* 지정하지 않으면(undefined), 데이터포인트의 값이 객체일 때 'color' 속성 값이 사용된다.
|
|
1998
2142
|
*/
|
|
1999
2143
|
colorField?: string | number | Function;
|
|
2000
2144
|
/**
|
|
2001
2145
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 icon 값을 지정하는 속성명이나 인덱스 또는,
|
|
2002
2146
|
* 전달되는 json 객체에서 icon 값을 리턴하는 함수.<br/>
|
|
2003
|
-
* 지정하지
|
|
2147
|
+
* 지정하지 않으면(undefined), 데이터포인트의 값이 객체일 때 'icon' 속성 값이 사용된다.
|
|
2004
2148
|
*/
|
|
2005
2149
|
iconField?: string | number | Function;
|
|
2006
2150
|
/**
|
|
@@ -2218,7 +2362,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
2218
2362
|
/**
|
|
2219
2363
|
* null인 y값을 {@link baseValue}로 간주한다.<br/>
|
|
2220
2364
|
*
|
|
2221
|
-
* @default
|
|
2365
|
+
* @default false
|
|
2222
2366
|
*/
|
|
2223
2367
|
nullAsBase?: boolean;
|
|
2224
2368
|
/**
|
|
@@ -2743,7 +2887,8 @@ interface OthersGroupOptions extends ChartItemOptions {
|
|
|
2743
2887
|
interface WidgetSeriesOptions extends SeriesOptions {
|
|
2744
2888
|
/**
|
|
2745
2889
|
* body 영역을 기준으로 {@link https://realchart.co.kr/config/config/series/pie pie},
|
|
2746
|
-
* {@link https://realchart.co.kr/config/config/series/funnel funnel}
|
|
2890
|
+
* {@link https://realchart.co.kr/config/config/series/funnel funnel}, {@link https://realchart.co.kr/config/config/series/pictorial pictorial},
|
|
2891
|
+
* 시리즈 등의 수평 중심 위치<br/>
|
|
2747
2892
|
* 숫자나 body 영역 너비에 대한 상대값을 '%'로 지정할 수 있다.
|
|
2748
2893
|
*
|
|
2749
2894
|
* @default '50%'
|
|
@@ -2751,7 +2896,8 @@ interface WidgetSeriesOptions extends SeriesOptions {
|
|
|
2751
2896
|
centerX?: PercentSize;
|
|
2752
2897
|
/**
|
|
2753
2898
|
* body 영역을 기준으로 {@link https://realchart.co.kr/config/config/series/pie pie},
|
|
2754
|
-
* {@link https://realchart.co.kr/config/config/series/funnel funnel}
|
|
2899
|
+
* {@link https://realchart.co.kr/config/config/series/funnel funnel}, {@link https://realchart.co.kr/config/config/series/pictorial pictorial},
|
|
2900
|
+
* 시리즈 등의 수직 중심 위치<br/>
|
|
2755
2901
|
* 숫자나 body 영역 높이에 대한 상대값을 '%'로 지정할 수 있다.
|
|
2756
2902
|
|
|
2757
2903
|
* @default '50%'
|
|
@@ -2764,7 +2910,8 @@ interface WidgetSeriesOptions extends SeriesOptions {
|
|
|
2764
2910
|
center?: PercentSize;
|
|
2765
2911
|
/**
|
|
2766
2912
|
* true로 지정하면 {@link https://realchart.co.kr/config/config/series/pie pie},
|
|
2767
|
-
* {@link https://realchart.co.kr/config/config/series/funnel funnel}
|
|
2913
|
+
* {@link https://realchart.co.kr/config/config/series/funnel funnel}, {@link https://realchart.co.kr/config/config/series/pictorial pictorial},
|
|
2914
|
+
* 시리즈 등의 데이터포인트별 legend 항목을 표시한다.<br/>
|
|
2768
2915
|
*
|
|
2769
2916
|
* @default false
|
|
2770
2917
|
*/
|
|
@@ -2859,7 +3006,7 @@ interface BarRangeSeriesOptions extends LowRangedSeriesOptions {
|
|
|
2859
3006
|
* |{@link yField}|속성 값, 또는 'y', 'value' 속성들 중 순서대로 값이 설정된 것이 y 값이 된다.|
|
|
2860
3007
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
2861
3008
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
2862
|
-
*
|
|
3009
|
+
*
|
|
2863
3010
|
* @css 'rct-bar-series'
|
|
2864
3011
|
*
|
|
2865
3012
|
*/
|
|
@@ -3062,6 +3209,14 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
3062
3209
|
*
|
|
3063
3210
|
*/
|
|
3064
3211
|
flag?: LineSeriesFlagOptions;
|
|
3212
|
+
/**
|
|
3213
|
+
* polar 좌표계이고, x축의 totalAngle이 360도이 경우,
|
|
3214
|
+
* 양끝 데이터포인터를 이어서 표시할 지 여부.<br/>
|
|
3215
|
+
* 그 외에는 무조건 연결하지 않는다.
|
|
3216
|
+
*
|
|
3217
|
+
* @default base 라인이 존재하지 않거나 'spline'이면 true, 아니면 false.
|
|
3218
|
+
*/
|
|
3219
|
+
connectEnds?: boolean;
|
|
3065
3220
|
}
|
|
3066
3221
|
declare const SplineSeriesType = "spline";
|
|
3067
3222
|
/**
|
|
@@ -4919,13 +5074,13 @@ interface PictorialSeriesOptions extends WidgetSeriesOptions {
|
|
|
4919
5074
|
/**
|
|
4920
5075
|
* {@link Pictorial} 표시 너비를 pixel이나 body 너비에 대한 비율(%)로 지정한다.<br/>
|
|
4921
5076
|
* 이 크기를 지정하지 않으면 {@link size} 설정에 맞게 자동으로 적용된다.
|
|
4922
|
-
* {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg
|
|
5077
|
+
* {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg 크기대로 표시된다.
|
|
4923
5078
|
*/
|
|
4924
5079
|
width?: PercentSize;
|
|
4925
5080
|
/**
|
|
4926
5081
|
* {@link Pictorial} 표시 너비를 pixel이나 body 높이에 대한 비율(%)로 지정한다.<br/>
|
|
4927
5082
|
* 이 크기를 지정하지 않으면 {@link size} 설정에 맞게 자동으로 적용된다.
|
|
4928
|
-
* {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg
|
|
5083
|
+
* {@link size}도 지정되지 않았다면 {@link Pictorial}에 지정된 svg 크기대로 표시된다.
|
|
4929
5084
|
*/
|
|
4930
5085
|
height?: PercentSize;
|
|
4931
5086
|
/**
|
|
@@ -6769,7 +6924,7 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
6769
6924
|
/** @private */
|
|
6770
6925
|
protected _setDims(options: OP, ...props: string[]): void;
|
|
6771
6926
|
/** @private */
|
|
6772
|
-
protected _doApply(op:
|
|
6927
|
+
protected _doApply(op: ChartItemOptions): void;
|
|
6773
6928
|
/** @private */
|
|
6774
6929
|
protected _doPrepareRender(chart: IChart): void;
|
|
6775
6930
|
}
|
|
@@ -7016,7 +7171,6 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
7016
7171
|
_type(): string;
|
|
7017
7172
|
unitPad(): number;
|
|
7018
7173
|
continuous(): boolean;
|
|
7019
|
-
polarOff(): number;
|
|
7020
7174
|
_prepareZoom(): AxisZoom;
|
|
7021
7175
|
protected _createGrid(): CategoryAxisGrid;
|
|
7022
7176
|
protected _createTickModel(): CategoryAxisTick;
|
|
@@ -7043,6 +7197,93 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
7043
7197
|
private $_collectCategories;
|
|
7044
7198
|
}
|
|
7045
7199
|
|
|
7200
|
+
declare class TrendlineArea extends ChartItem<TrendlineAreaOptions> {
|
|
7201
|
+
static defaults: TrendlineAreaOptions;
|
|
7202
|
+
}
|
|
7203
|
+
declare class TrendlineLabel extends IconedText<TrendlineLabelOptions> {
|
|
7204
|
+
private static readonly OFFSET;
|
|
7205
|
+
static defaults: TrendlineLabelOptions;
|
|
7206
|
+
getAlign(inverted: boolean, xReversed: boolean, yReversed: boolean, pos: number): Align;
|
|
7207
|
+
getVerticalAlign(inverted: boolean, xReversed: boolean, yReversed: boolean): VerticalAlign;
|
|
7208
|
+
getAlignPolar(angle: number): Align;
|
|
7209
|
+
getVerticalAlignPolar(angle: number): VerticalAlign;
|
|
7210
|
+
getOffsetX(align: Align): number;
|
|
7211
|
+
getOffsetY(vAlign: VerticalAlign): number;
|
|
7212
|
+
getDefaultIconPos(): IconPosition;
|
|
7213
|
+
protected _doApply(op: TrendlineLabelOptions): void;
|
|
7214
|
+
}
|
|
7215
|
+
declare class TrendlineMarker extends ChartItem<TrendlineMarkerOptions> {
|
|
7216
|
+
static defaults: TrendlineMarkerOptions;
|
|
7217
|
+
getRadius(): number;
|
|
7218
|
+
}
|
|
7219
|
+
interface ITrendlineOwner {
|
|
7220
|
+
chart: IChart;
|
|
7221
|
+
_visPoints: DataPoint[];
|
|
7222
|
+
_xAxisObj?: IAxis;
|
|
7223
|
+
_yAxisObj?: IAxis;
|
|
7224
|
+
}
|
|
7225
|
+
/**
|
|
7226
|
+
* 시리즈 {@link https://en.wikipedia.org/wiki/Trend_line_(technical_analysis) 추세선} 모델.<br/>
|
|
7227
|
+
* 설정 {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/TrendlineOptions TrendlineOptions}이고,
|
|
7228
|
+
* {@link https://realchart.co.kr/config/config/base/series/trendline trendline} 항목으로 설정한다.
|
|
7229
|
+
* ```js
|
|
7230
|
+
* const config = {
|
|
7231
|
+
* series: {
|
|
7232
|
+
* trendline: {
|
|
7233
|
+
* type: 'logarithmic'
|
|
7234
|
+
* },
|
|
7235
|
+
* },
|
|
7236
|
+
* };
|
|
7237
|
+
* ```
|
|
7238
|
+
* 또, Chart.{@link rc.Series#trendline trendline}로 모델 객체를 가져올 수 있다.
|
|
7239
|
+
* ```js
|
|
7240
|
+
* chart.series.trendline.type = 'logarithmic';
|
|
7241
|
+
* ```
|
|
7242
|
+
*/
|
|
7243
|
+
declare class Trendline extends ChartItem<TrendlineOptions> {
|
|
7244
|
+
owner: ITrendlineOwner;
|
|
7245
|
+
static defaults: TrendlineOptions;
|
|
7246
|
+
private _variableArea;
|
|
7247
|
+
private _fixedArea;
|
|
7248
|
+
private _label;
|
|
7249
|
+
private _marker;
|
|
7250
|
+
_points: {
|
|
7251
|
+
x: number;
|
|
7252
|
+
y: number;
|
|
7253
|
+
}[];
|
|
7254
|
+
private _res;
|
|
7255
|
+
private _expr;
|
|
7256
|
+
private _minX;
|
|
7257
|
+
private _maxX;
|
|
7258
|
+
private _minY;
|
|
7259
|
+
private _maxY;
|
|
7260
|
+
private _formatter;
|
|
7261
|
+
private _labelDomain;
|
|
7262
|
+
constructor(owner: ITrendlineOwner);
|
|
7263
|
+
protected _doInit(op: TrendlineOptions): void;
|
|
7264
|
+
get variableArea(): TrendlineArea;
|
|
7265
|
+
get fixedArea(): TrendlineArea;
|
|
7266
|
+
get expression(): string;
|
|
7267
|
+
get label(): TrendlineLabel;
|
|
7268
|
+
get marker(): TrendlineMarker;
|
|
7269
|
+
getLabelDomain(): IRichTextDomain;
|
|
7270
|
+
setRange(xMin: number, xMax: number, yMin: number, yMax: number): this;
|
|
7271
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
7272
|
+
getLabel(): string;
|
|
7273
|
+
protected _doApply(op: TrendlineOptions): void;
|
|
7274
|
+
private _calcLine;
|
|
7275
|
+
private _linear;
|
|
7276
|
+
private _logarithmic;
|
|
7277
|
+
private _power;
|
|
7278
|
+
private _calcLine2;
|
|
7279
|
+
private _exponential;
|
|
7280
|
+
_polynomial(f: NumberFormatter, pts: Point[]): {
|
|
7281
|
+
expr: string;
|
|
7282
|
+
evaluator: (x: number) => number;
|
|
7283
|
+
};
|
|
7284
|
+
private _movingAverage;
|
|
7285
|
+
}
|
|
7286
|
+
|
|
7046
7287
|
declare class DataPointLabelLine extends ChartItem<DataPointLabelLineOptions> {
|
|
7047
7288
|
static defaults: DataPointLabelLineOptions;
|
|
7048
7289
|
}
|
|
@@ -7103,55 +7344,13 @@ interface IPlottingItem {
|
|
|
7103
7344
|
_prepareRender(): void;
|
|
7104
7345
|
prepareAfter(): void;
|
|
7105
7346
|
collectValues(axis: IAxis, vals: number[]): void;
|
|
7106
|
-
collectRanges(vals: number[]): void;
|
|
7347
|
+
collectRanges(axis: IAxis, vals: number[]): void;
|
|
7107
7348
|
prepareReferents(axis: IAxis): void;
|
|
7108
7349
|
seriesChanged(): boolean;
|
|
7109
7350
|
connectable(axis: IAxis): boolean;
|
|
7110
7351
|
isRace(): boolean;
|
|
7111
7352
|
getCategoryPos?(value: number): number;
|
|
7112
7353
|
}
|
|
7113
|
-
/**
|
|
7114
|
-
* 시리즈 {@link https://en.wikipedia.org/wiki/Trend_line_(technical_analysis) 추세선} 모델.<br/>
|
|
7115
|
-
* 설정 {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/TrendlineOptions TrendlineOptions}이고,
|
|
7116
|
-
* {@link https://realchart.co.kr/config/config/base/series/trendline trendline} 항목으로 설정한다.
|
|
7117
|
-
* ```js
|
|
7118
|
-
* const config = {
|
|
7119
|
-
* series: {
|
|
7120
|
-
* trendline: {
|
|
7121
|
-
* type: 'logarithmic'
|
|
7122
|
-
* },
|
|
7123
|
-
* },
|
|
7124
|
-
* };
|
|
7125
|
-
* ```
|
|
7126
|
-
* 또, Chart.{@link rc.Series#trendline trendline}로 모델 객체를 가져올 수 있다.
|
|
7127
|
-
* ```js
|
|
7128
|
-
* chart.series.trendline.type = 'logarithmic';
|
|
7129
|
-
* ```
|
|
7130
|
-
*/
|
|
7131
|
-
declare class Trendline extends ChartItem<TrendlineOptions> {
|
|
7132
|
-
series: Series;
|
|
7133
|
-
static defaults: TrendlineOptions;
|
|
7134
|
-
private _polar;
|
|
7135
|
-
_points: {
|
|
7136
|
-
x: number;
|
|
7137
|
-
y: number;
|
|
7138
|
-
}[];
|
|
7139
|
-
private _res;
|
|
7140
|
-
constructor(series: Series);
|
|
7141
|
-
protected _doPrepareRender(chart: IChart): void;
|
|
7142
|
-
isCurved(): boolean;
|
|
7143
|
-
private _calcLine;
|
|
7144
|
-
private _linear;
|
|
7145
|
-
private _logarithmic;
|
|
7146
|
-
private _power;
|
|
7147
|
-
private _calcLine2;
|
|
7148
|
-
private _exponential;
|
|
7149
|
-
_polynomial(pts: Point[], list: {
|
|
7150
|
-
x: number;
|
|
7151
|
-
y: number;
|
|
7152
|
-
}[]): void;
|
|
7153
|
-
private _movingAverage;
|
|
7154
|
-
}
|
|
7155
7354
|
/**
|
|
7156
7355
|
* 옆으로 나누어 배치 가능한가? ex) bar series/group
|
|
7157
7356
|
*/
|
|
@@ -7411,7 +7610,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
7411
7610
|
* x값이 숫자가 아닐 때 axis가 해석하지 못하면 xStart 부터 xStep으로 증가 시켜 가면서 순서대로 지정한다.
|
|
7412
7611
|
*/
|
|
7413
7612
|
collectValues(axis: IAxis, vals: number[]): void;
|
|
7414
|
-
collectRanges(vals: number[]): void;
|
|
7613
|
+
collectRanges(axis: IAxis, vals: number[]): void;
|
|
7415
7614
|
getAxisPadRate(): number;
|
|
7416
7615
|
protected _getRangeMinMax(axis: 'x' | 'y' | 'z'): {
|
|
7417
7616
|
min: number;
|
|
@@ -7528,7 +7727,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
7528
7727
|
*/
|
|
7529
7728
|
removePoints(pts: (DataPoint | string | number)[]): number;
|
|
7530
7729
|
followPointer(): boolean;
|
|
7531
|
-
protected _doApply(op:
|
|
7730
|
+
protected _doApply(op: SeriesOptions): void;
|
|
7532
7731
|
_setIndex(index: number, seriesIndex?: number): void;
|
|
7533
7732
|
protected _createLabel(chart: IChart): DataPointLabel;
|
|
7534
7733
|
protected _createPoint(source: any): DataPoint;
|
|
@@ -7823,7 +8022,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
7823
8022
|
isFirstVisible(series: ISeries): boolean;
|
|
7824
8023
|
isLastVisible(series: ISeries): boolean;
|
|
7825
8024
|
collectValues(axis: IAxis, vals: number[]): void;
|
|
7826
|
-
collectRanges(vals: number[]): void;
|
|
8025
|
+
collectRanges(axis: IAxis, vals: number[]): void;
|
|
7827
8026
|
prepareReferents(axis: IAxis): void;
|
|
7828
8027
|
collectCategories(axis: IAxis): string[];
|
|
7829
8028
|
getLegendSources(list: ILegendSource[]): void;
|
|
@@ -8142,10 +8341,11 @@ interface IAxis {
|
|
|
8142
8341
|
* 값에 따라 크기가 다를 수도 있다.
|
|
8143
8342
|
*/
|
|
8144
8343
|
getUnitLen(length: number, value: number): number;
|
|
8145
|
-
polarOff(): number;
|
|
8146
8344
|
value2Tooltip(value: number): any;
|
|
8147
8345
|
hasBreak(): boolean;
|
|
8148
8346
|
isBreak(pos: number): boolean;
|
|
8347
|
+
isArced(): boolean;
|
|
8348
|
+
isAnimating(): boolean;
|
|
8149
8349
|
}
|
|
8150
8350
|
/**
|
|
8151
8351
|
* 축 {@link AxisTitle 타이틀}, {@link AxisLink line}, {@link AxisTick tick} 등,
|
|
@@ -8489,6 +8689,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
8489
8689
|
_labelArgs: AxisLabelArgs;
|
|
8490
8690
|
_prevSeries: IPlottingItem[];
|
|
8491
8691
|
_seriesChanged: boolean;
|
|
8692
|
+
_prevSize: number;
|
|
8492
8693
|
_prevRate: number;
|
|
8493
8694
|
_zooming: boolean;
|
|
8494
8695
|
readonly guides: AxisGuide[];
|
|
@@ -8616,7 +8817,6 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
8616
8817
|
*/
|
|
8617
8818
|
abstract getPos(length: number, value: number): number;
|
|
8618
8819
|
abstract getUnitLen(length: number, value: number): number;
|
|
8619
|
-
polarOff(): number;
|
|
8620
8820
|
getLabelLength(length: number, value: number): number;
|
|
8621
8821
|
getValue(value: any): number;
|
|
8622
8822
|
incStep(value: number, step: any): number;
|
|
@@ -8646,12 +8846,13 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
8646
8846
|
isBreak(pos: number): boolean;
|
|
8647
8847
|
getTickLabelArgs(index: number, value: any): AxisLabelArgs;
|
|
8648
8848
|
getXLabel(value: number): any;
|
|
8649
|
-
setPrevRate(rate: number): void;
|
|
8849
|
+
setPrevRate(size: number, rate: number): void;
|
|
8650
8850
|
prev(pos: number): number;
|
|
8851
|
+
isAnimating(): boolean;
|
|
8651
8852
|
abstract xValueAt(pos: number): number;
|
|
8652
8853
|
_posValue(): 0 | 1 | -1;
|
|
8653
8854
|
_load(source: any): OP;
|
|
8654
|
-
protected _doApply(op:
|
|
8855
|
+
protected _doApply(op: AxisOptions): void;
|
|
8655
8856
|
protected _setMinMax(min: number, max: number): void;
|
|
8656
8857
|
protected abstract _createGrid(): AxisGrid;
|
|
8657
8858
|
_connect(series: IPlottingItem): void;
|
|
@@ -9349,16 +9550,17 @@ interface AxisGuideOptions extends AxisItemOptions {
|
|
|
9349
9550
|
* 가이드 영역의 끝 값.<br/>
|
|
9350
9551
|
*/
|
|
9351
9552
|
endValue?: number;
|
|
9553
|
+
otherRange?: [number, number];
|
|
9352
9554
|
}
|
|
9353
9555
|
declare const AxisLineGuideType = "line";
|
|
9354
9556
|
/**
|
|
9355
9557
|
* 축 위의 특정한 값에 선분을 표시한다.<br/>
|
|
9356
9558
|
*/
|
|
9357
9559
|
interface AxisLineGuideOptions extends AxisGuideOptions {
|
|
9358
|
-
/**
|
|
9359
|
-
*/
|
|
9560
|
+
/** @dummy */
|
|
9360
9561
|
type?: typeof AxisLineGuideType;
|
|
9361
9562
|
/**
|
|
9563
|
+
* 가이드 선이 표시될 축 상의 위치에 해당하는 값.<br/>
|
|
9362
9564
|
*/
|
|
9363
9565
|
value: number;
|
|
9364
9566
|
}
|
|
@@ -9368,13 +9570,14 @@ declare const AxisRangeGuideType = "range";
|
|
|
9368
9570
|
* [주의] realchart-style.css에 fill-opacity가 0.2로 설정되어 있다.
|
|
9369
9571
|
*/
|
|
9370
9572
|
interface AxisRangeGuideOptions extends AxisGuideOptions {
|
|
9371
|
-
/**
|
|
9372
|
-
*/
|
|
9573
|
+
/** @dummy */
|
|
9373
9574
|
type: typeof AxisRangeGuideType;
|
|
9374
9575
|
/**
|
|
9576
|
+
* 가이드 영역의 시작 값.<br/>
|
|
9375
9577
|
*/
|
|
9376
9578
|
startValue: number;
|
|
9377
9579
|
/**
|
|
9580
|
+
* 가이드 영역의 끝 값.<br/>
|
|
9378
9581
|
*/
|
|
9379
9582
|
endValue: number;
|
|
9380
9583
|
}
|
|
@@ -10000,8 +10203,9 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
10000
10203
|
categoryPadding?: number;
|
|
10001
10204
|
/**
|
|
10002
10205
|
* polar 축일 때 시작 위치 간격.<br/>
|
|
10003
|
-
* 첫번째 카테고리 너비(각도)에 대한
|
|
10004
|
-
*
|
|
10206
|
+
* 첫번째 카테고리 너비(각도)에 대한 상대값 만큼 반대 방향으로 옮겨서 시작한다.
|
|
10207
|
+
* 0 ~ 1 사이의 값으로 지정한다.<br/>
|
|
10208
|
+
* ex) 0.5로 지정하면 bar 시리즈의 첫 째 bar 가운데, 또는 line 시리즈의 첫 째 포인트가 12시 위치에 표시된다.
|
|
10005
10209
|
*
|
|
10006
10210
|
* @default 0
|
|
10007
10211
|
*/
|
|
@@ -10130,7 +10334,8 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
10130
10334
|
* {@link minPadding}, {@link maxPadding}이 설정되지 않았을 때 적용되는 기본값이다.<br/>
|
|
10131
10335
|
* [plot크기, padding] 목록으로 지정한다. 단일 값으로 지정하면 [[Infiniy, padding]]으로 설정된다.
|
|
10132
10336
|
* plot 영역의 크기가 첫번째 값 이하면 두번째로 지정한 값만큼 padding을 적용한다.<br/>
|
|
10133
|
-
* 지정하지 않거나 잘못 지정하면 아래 목록이 기본
|
|
10337
|
+
* 지정하지 않거나 잘못 지정하면 아래 목록이 기본 적용된다.
|
|
10338
|
+
* 또, polar이고 x축이면 0으로 적용된다.<br/>
|
|
10134
10339
|
* `[[170, 0.2], [340, 0.1], [700, 0.05], [Infinity, 0.03]]`<br/>
|
|
10135
10340
|
* 또, 숫자와 'px'로 끝나는 문자열로 지정하면 위 설정을 무시하고,
|
|
10136
10341
|
* 적어도 지정한 pixel 정도의 여백이 생길 수 있도록 조정된다.<br/>
|
|
@@ -10174,7 +10379,8 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
10174
10379
|
/**
|
|
10175
10380
|
* 축 시작 위치에 tick 표시 여부.<br/>
|
|
10176
10381
|
* paddingd이나 base 설정 등은 반영된 상태에서 적용된다.
|
|
10177
|
-
* {@link strictMin}가 설정되면 'value'로
|
|
10382
|
+
* {@link strictMin}가 설정되면 'value'로 적용된다.<br/>
|
|
10383
|
+
* 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
|
|
10178
10384
|
*
|
|
10179
10385
|
* @default 'default'
|
|
10180
10386
|
*/
|
|
@@ -10182,7 +10388,8 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
10182
10388
|
/**
|
|
10183
10389
|
* 축 끝 위치에 tick 표시 여부.<br/>
|
|
10184
10390
|
* paddingd이나 base 설정 등은 반영된 상태에서 적용된다.
|
|
10185
|
-
* {@link strictMax}가 설정되면 무시되고 'value'로
|
|
10391
|
+
* {@link strictMax}가 설정되면 무시되고 'value'로 적용된다.<br/>
|
|
10392
|
+
* 'default'이면 x축이고 polar가 아니면 'value', 그렇지 않은 경우 'tick'으로 적용된다.
|
|
10186
10393
|
*
|
|
10187
10394
|
* @default 'default'
|
|
10188
10395
|
*/
|
|
@@ -11991,6 +12198,9 @@ interface IPolar {
|
|
|
11991
12198
|
cx: number;
|
|
11992
12199
|
cy: number;
|
|
11993
12200
|
rd: number;
|
|
12201
|
+
cyclic: boolean;
|
|
12202
|
+
min?: number;
|
|
12203
|
+
max?: number;
|
|
11994
12204
|
}
|
|
11995
12205
|
declare class BodyDepthLine extends ChartItem<BodyDepthLineOptions> {
|
|
11996
12206
|
static defaults: BodyDepthLineOptions;
|
|
@@ -13202,6 +13412,19 @@ declare abstract class AnnotationView<T extends Annotation = Annotation> extends
|
|
|
13202
13412
|
protected _doLayout(p: Point): void;
|
|
13203
13413
|
}
|
|
13204
13414
|
|
|
13415
|
+
declare class ImageElement extends RcElement {
|
|
13416
|
+
private _bounds;
|
|
13417
|
+
private _proxy;
|
|
13418
|
+
onloadProxy: () => void;
|
|
13419
|
+
constructor(doc: Document, full: boolean, styleName?: string);
|
|
13420
|
+
/** image url */
|
|
13421
|
+
get url(): string;
|
|
13422
|
+
set url(value: string);
|
|
13423
|
+
setImage(url: string, width: number, height: number): void;
|
|
13424
|
+
getBBox(): IRect;
|
|
13425
|
+
resize(width: number, height: number, attr?: boolean): boolean;
|
|
13426
|
+
}
|
|
13427
|
+
|
|
13205
13428
|
/**
|
|
13206
13429
|
* 연속축의 그리드 모델.<br/>
|
|
13207
13430
|
* {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/ContinuousAxisGridOptions ContinuousAxisGridOptions}이다.
|
|
@@ -13406,19 +13629,6 @@ declare class LinearAxis extends ContinuousAxis<LinearAxisOptions> {
|
|
|
13406
13629
|
};
|
|
13407
13630
|
}
|
|
13408
13631
|
|
|
13409
|
-
declare class ImageElement extends RcElement {
|
|
13410
|
-
private _bounds;
|
|
13411
|
-
private _proxy;
|
|
13412
|
-
onloadProxy: () => void;
|
|
13413
|
-
constructor(doc: Document, full: boolean, styleName?: string);
|
|
13414
|
-
/** image url */
|
|
13415
|
-
get url(): string;
|
|
13416
|
-
set url(value: string);
|
|
13417
|
-
setImage(url: string, width: number, height: number): void;
|
|
13418
|
-
getBBox(): IRect;
|
|
13419
|
-
resize(width: number, height: number, attr?: boolean): boolean;
|
|
13420
|
-
}
|
|
13421
|
-
|
|
13422
13632
|
/**
|
|
13423
13633
|
* ChartText를 표시하는 텍스트 view.
|
|
13424
13634
|
*/
|
|
@@ -13496,6 +13706,7 @@ declare class PathBuilder {
|
|
|
13496
13706
|
reset(x: number | Point, y?: number): PathBuilder;
|
|
13497
13707
|
end(close?: boolean): string;
|
|
13498
13708
|
close(clear: boolean): string;
|
|
13709
|
+
push(...list: (string | number | Point)[]): PathBuilder;
|
|
13499
13710
|
move(x: number | Point, y?: number): PathBuilder;
|
|
13500
13711
|
moveBy(x: number | Point, y?: number): PathBuilder;
|
|
13501
13712
|
line(x: number | Point, y?: number): PathBuilder;
|
|
@@ -13508,10 +13719,19 @@ declare class PathBuilder {
|
|
|
13508
13719
|
lines(...pts: (number | Point)[]): PathBuilder;
|
|
13509
13720
|
polygon(...pts: (number | Point)[]): PathBuilder;
|
|
13510
13721
|
circle(cx: number, cy: number, rd: number): PathBuilder;
|
|
13722
|
+
donut(cx: number, cy: number, rd: number, rdInner: number): PathBuilder;
|
|
13511
13723
|
getMove(p?: number, remove?: boolean): Point;
|
|
13512
13724
|
getLine(p?: number, remove?: boolean): Point;
|
|
13513
13725
|
getQuad(p?: number, remove?: boolean): IPoint2;
|
|
13514
13726
|
getPoints(p: number, count: number, remove?: boolean): Point[];
|
|
13727
|
+
spline(pts: {
|
|
13728
|
+
px: number;
|
|
13729
|
+
py: number;
|
|
13730
|
+
}[], start: number, end: number): void;
|
|
13731
|
+
closedSpline(pts: {
|
|
13732
|
+
px: number;
|
|
13733
|
+
py: number;
|
|
13734
|
+
}[], close: boolean): void;
|
|
13515
13735
|
}
|
|
13516
13736
|
|
|
13517
13737
|
/**
|
|
@@ -13653,10 +13873,13 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
13653
13873
|
_simpleMode: boolean;
|
|
13654
13874
|
protected _pointContainer: PointContainer;
|
|
13655
13875
|
_labelContainer: PointLabelContainer;
|
|
13656
|
-
private
|
|
13876
|
+
private _trendView;
|
|
13877
|
+
protected _yReversed: boolean;
|
|
13657
13878
|
protected _depthExt: IBodyDepthExtents;
|
|
13658
13879
|
protected _legendMarker: RcElement;
|
|
13659
13880
|
protected _visPoints: DataPoint[];
|
|
13881
|
+
private _colorByPoint;
|
|
13882
|
+
private _randomPalette;
|
|
13660
13883
|
private _growRate;
|
|
13661
13884
|
private _posRate;
|
|
13662
13885
|
protected _prevRate: number;
|
|
@@ -13686,6 +13909,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
13686
13909
|
protected _doPointClicked(view: IPointView): void;
|
|
13687
13910
|
protected _getPointColors(): string;
|
|
13688
13911
|
_setDepth(depth: IBodyDepthExtents): void;
|
|
13912
|
+
setCircular(circular: boolean): void;
|
|
13689
13913
|
prepareSeries(doc: Document, model: T, polar: boolean, depth: BodyDepth): void;
|
|
13690
13914
|
protected _setModelColor(color: string): void;
|
|
13691
13915
|
protected _legendColorProp(): string;
|
|
@@ -13722,10 +13946,6 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
13722
13946
|
protected _lazyPrepareLabels(): boolean;
|
|
13723
13947
|
protected _getShowAnimation(): RcAnimation;
|
|
13724
13948
|
protected _runShowEffect(firstTime: boolean): void;
|
|
13725
|
-
protected _drawSpline(pts: {
|
|
13726
|
-
px: number;
|
|
13727
|
-
py: number;
|
|
13728
|
-
}[], start: number, end: number, sb: PathBuilder): void;
|
|
13729
13949
|
private $_renderTrendline;
|
|
13730
13950
|
protected _layoutLabel(model: DataPointLabel, info: LabelLayoutInfo, w: number, h: number): void;
|
|
13731
13951
|
protected _checkLabelOverlap(lv: PointLabelView, r: IRect, px: number, py: number, pw: number, ph: number, x: number, y: number, inner: boolean, target: Element): boolean;
|
|
@@ -13793,7 +14013,6 @@ declare abstract class ClusterableSeriesView<T extends Series = Series> extends
|
|
|
13793
14013
|
declare abstract class BasedSeriesView<T extends BasedSeries> extends ClusterableSeriesView<T> {
|
|
13794
14014
|
private _labelLineContainer;
|
|
13795
14015
|
protected _pointOff: number;
|
|
13796
|
-
protected _reversed: boolean;
|
|
13797
14016
|
protected _yLen: number;
|
|
13798
14017
|
protected _baseVal: number;
|
|
13799
14018
|
protected _yBase: number;
|
|
@@ -13823,8 +14042,6 @@ declare abstract class MarkerSeriesPointView extends PointElement implements IPo
|
|
|
13823
14042
|
distance(rd: number, x: number, y: number): number;
|
|
13824
14043
|
}
|
|
13825
14044
|
declare abstract class MarkerSeriesView<T extends MarkerSeries, P extends DataPoint> extends SeriesView<T> {
|
|
13826
|
-
private static _createDrawers;
|
|
13827
|
-
private static _drawers;
|
|
13828
14045
|
protected _markers: ElementPool<MarkerSeriesPointView>;
|
|
13829
14046
|
constructor(doc: Document, styleName: string);
|
|
13830
14047
|
protected abstract _createMarkers(container: PointContainer): ElementPool<MarkerSeriesPointView>;
|
|
@@ -13834,7 +14051,6 @@ declare abstract class MarkerSeriesView<T extends MarkerSeries, P extends DataPo
|
|
|
13834
14051
|
getPointsAt(axis: Axis, pos: number): IPointView[];
|
|
13835
14052
|
protected _adjustRotatedLabelPosition(lv: PointLabelView, info: ILabelOverlap, r: IRect, x: number, y: number): void;
|
|
13836
14053
|
protected abstract _getDefaultPos(overflowed: boolean): PointLabelPosition;
|
|
13837
|
-
_getDrawer(shape: string): (rd: number) => (string | number)[];
|
|
13838
14054
|
protected _layoutLabelView(labelView: PointLabelView, pos: PointLabelPosition, off: number, radius: number, x: number, y: number): void;
|
|
13839
14055
|
}
|
|
13840
14056
|
declare class ZombiAnimation extends RcAnimation {
|
|
@@ -13911,9 +14127,9 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
13911
14127
|
private _owner;
|
|
13912
14128
|
private _polar;
|
|
13913
14129
|
private _hitTester;
|
|
13914
|
-
|
|
14130
|
+
protected _background: PathElement;
|
|
13915
14131
|
private _depthLayer;
|
|
13916
|
-
|
|
14132
|
+
protected _image: ImageElement;
|
|
13917
14133
|
private _emptyView;
|
|
13918
14134
|
_gridRowContainer: AxisGridRowContainer;
|
|
13919
14135
|
private _gridContainer;
|
|
@@ -13982,7 +14198,8 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
13982
14198
|
getBounds(): DOMRect;
|
|
13983
14199
|
protected _doMeasure(doc: Document, model: Body, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
13984
14200
|
protected _clipSeries(view: RcElement, view2: RcElement, invertable: boolean): void;
|
|
13985
|
-
protected
|
|
14201
|
+
protected _renderBackground(elt: PathElement, width: number, height: number): void;
|
|
14202
|
+
protected _setImage(model: BackgroundImage, img: ImageElement, width: number, height: number): boolean;
|
|
13986
14203
|
protected _doLayout(): void;
|
|
13987
14204
|
private $_isEmptyVisible;
|
|
13988
14205
|
private $_createGaugeView;
|
|
@@ -14380,6 +14597,7 @@ interface IPointPos {
|
|
|
14380
14597
|
}
|
|
14381
14598
|
type PointLine = IPointPos[];
|
|
14382
14599
|
declare class LineSeriesPoint extends DataPoint {
|
|
14600
|
+
angle: number;
|
|
14383
14601
|
radius: number;
|
|
14384
14602
|
shape: Shape;
|
|
14385
14603
|
px: number;
|
|
@@ -14419,7 +14637,7 @@ declare abstract class LineSeriesBase<OP extends LineSeriesBaseOptions = LineSer
|
|
|
14419
14637
|
/**
|
|
14420
14638
|
* null, ranges를 모두 고려해야 한다.
|
|
14421
14639
|
*/
|
|
14422
|
-
|
|
14640
|
+
buildLines(pts: LineSeriesPoint[]): PointLine[];
|
|
14423
14641
|
get pointLabel(): LinePointLabel;
|
|
14424
14642
|
protected _createLabel(chart: IChart): LinePointLabel;
|
|
14425
14643
|
protected _createPoint(source: any): LineSeriesPoint;
|
|
@@ -14431,9 +14649,10 @@ declare abstract class LineSeriesBase<OP extends LineSeriesBaseOptions = LineSer
|
|
|
14431
14649
|
_defViewRangeValue(): "x" | "y" | "z";
|
|
14432
14650
|
protected _createLegendMarker(doc: Document, size: number): RcElement;
|
|
14433
14651
|
legendMarker(doc: Document, size: number): RcElement;
|
|
14652
|
+
protected _doPrepareRender(): void;
|
|
14434
14653
|
abstract getLineType(): LineType;
|
|
14435
14654
|
protected _connectNulls(): boolean;
|
|
14436
|
-
protected
|
|
14655
|
+
protected _doBuildLines(pts: LineSeriesPoint[]): PointLine[];
|
|
14437
14656
|
}
|
|
14438
14657
|
/**
|
|
14439
14658
|
* Line 시리즈의 마지막 데이터포인트 옆에 표시되는 아이콘과 텍스트 설정 모델.<br/>
|
|
@@ -14459,6 +14678,7 @@ declare class LineSeries<OP extends LineSeriesOptions = LineSeriesOptions> exten
|
|
|
14459
14678
|
protected _doInit(op: OP): void;
|
|
14460
14679
|
get flag(): LineSeriesFlag;
|
|
14461
14680
|
backDir(): LineStepDirection;
|
|
14681
|
+
isConnectEnds(based: boolean, cyclic: boolean): boolean;
|
|
14462
14682
|
isMarker(): boolean;
|
|
14463
14683
|
get canPolar(): boolean;
|
|
14464
14684
|
getLineType(): LineType;
|
|
@@ -14501,7 +14721,7 @@ declare class AreaSeries<OP extends AreaSeriesOptions = AreaSeriesOptions> exten
|
|
|
14501
14721
|
protected _createLegendMarker(doc: Document, size: number): RcElement;
|
|
14502
14722
|
protected _createPoint(source: any): AreaSeriesPoint;
|
|
14503
14723
|
isBased(axis: IAxis): boolean;
|
|
14504
|
-
protected
|
|
14724
|
+
protected _doBuildLines(pts: LineSeriesPoint[]): PointLine[];
|
|
14505
14725
|
}
|
|
14506
14726
|
/**
|
|
14507
14727
|
* [low, high|y]
|
|
@@ -14540,7 +14760,7 @@ declare class AreaRangeSeries extends LineSeriesBase<AreaRangeSeriesOptions> {
|
|
|
14540
14760
|
protected _createPoint(source: any): AreaRangeSeriesPoint;
|
|
14541
14761
|
getLineType(): LineType;
|
|
14542
14762
|
collectValues(axis: IAxis, vals: number[]): void;
|
|
14543
|
-
protected
|
|
14763
|
+
protected _doBuildLines(pts: LineSeriesPoint[]): PointLine[];
|
|
14544
14764
|
}
|
|
14545
14765
|
/**
|
|
14546
14766
|
* Line 시리즈그룹 모델.<br/>
|
|
@@ -14653,6 +14873,7 @@ declare class BellCurveSeries extends AreaSeries<BellCurveSeriesOptions> {
|
|
|
14653
14873
|
static readonly type = "bellcurve";
|
|
14654
14874
|
static defaults: BellCurveSeriesOptions;
|
|
14655
14875
|
private _refer;
|
|
14876
|
+
get canPolar(): boolean;
|
|
14656
14877
|
isEmpty(): boolean;
|
|
14657
14878
|
getLineType(): LineType;
|
|
14658
14879
|
protected _createPoint(source: any): BellCurveSeriesPoint;
|
|
@@ -15224,6 +15445,7 @@ declare class Dom {
|
|
|
15224
15445
|
static getPadding(dom: HTMLElement | SVGElement): ISides;
|
|
15225
15446
|
static hasFill(path: Element): boolean;
|
|
15226
15447
|
static setVisible(dom: HTMLElement | SVGElement, visible: boolean, style?: string): boolean;
|
|
15448
|
+
static isHidden(dom: HTMLElement | SVGElement): boolean;
|
|
15227
15449
|
static setClipPath(dom: Element, clip: string | SVGClipPathElement): void;
|
|
15228
15450
|
static createClipRect(doc: Document, id: string): SVGClipPathElement;
|
|
15229
15451
|
static setRect(dom: Element, r: IRect): Element;
|
|
@@ -15231,11 +15453,13 @@ declare class Dom {
|
|
|
15231
15453
|
}
|
|
15232
15454
|
|
|
15233
15455
|
declare abstract class BarSeriesViewBase<T extends BarSeriesBase> extends BasedSeriesView<T> {
|
|
15456
|
+
private _polar;
|
|
15234
15457
|
private _deep;
|
|
15235
15458
|
private _bars;
|
|
15236
15459
|
private _sectors;
|
|
15237
15460
|
protected _labelInfo: LabelLayoutInfo;
|
|
15238
15461
|
protected _getPointPool(): ElementPool<RcElement>;
|
|
15462
|
+
protected _prepareSeries(doc: Document, model: T, polar: boolean, depth: BodyDepth): void;
|
|
15239
15463
|
protected _preparePoints(doc: Document, model: T, points: DataPoint[], deep: boolean): void;
|
|
15240
15464
|
protected _setPointStyle(v: RcElement, model: T, p: DataPoint): void;
|
|
15241
15465
|
protected _layoutPoints(width: number, height: number): void;
|
|
@@ -15274,14 +15498,21 @@ declare class LineContainer extends PointContainer {
|
|
|
15274
15498
|
declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesBase> extends SeriesView<T> implements IMarkerSeriesView {
|
|
15275
15499
|
protected _lineContainer: LineContainer;
|
|
15276
15500
|
private _line;
|
|
15501
|
+
protected _based: boolean;
|
|
15277
15502
|
protected _needBelow: boolean;
|
|
15278
15503
|
private _lowLine;
|
|
15279
|
-
protected _upperClip:
|
|
15280
|
-
protected _lowerClip:
|
|
15504
|
+
protected _upperClip: ClipRectElement;
|
|
15505
|
+
protected _lowerClip: ClipRectElement;
|
|
15506
|
+
protected _innerClip: ClipPathElement;
|
|
15507
|
+
protected _outerClip: ClipPathElement;
|
|
15508
|
+
protected _innerLineClip: ClipPathElement;
|
|
15509
|
+
protected _outerLineClip: ClipPathElement;
|
|
15510
|
+
protected _reverseClip: ClipDonutElement;
|
|
15281
15511
|
protected _markers: ElementPool<LineMarkerView>;
|
|
15282
15512
|
private _rangeLines;
|
|
15283
15513
|
private _rangeClips;
|
|
15284
15514
|
protected _polar: IPolar;
|
|
15515
|
+
_tester: PathElement;
|
|
15285
15516
|
constructor(doc: Document, styleName: string);
|
|
15286
15517
|
getClipContainer(): RcElement;
|
|
15287
15518
|
protected _getPointPool(): ElementPool<RcElement>;
|
|
@@ -15305,23 +15536,22 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
|
|
|
15305
15536
|
getHintDistance(): number;
|
|
15306
15537
|
canHover(dist: number, pv: LineMarkerView, hint: number): boolean;
|
|
15307
15538
|
protected _markersPerPoint(): number;
|
|
15308
|
-
protected _prepareBelow(
|
|
15539
|
+
protected _prepareBelow(polar: boolean): boolean;
|
|
15309
15540
|
protected _prepareRanges(model: T, ranges: ValueRange[]): void;
|
|
15310
15541
|
private $_resetClips;
|
|
15311
15542
|
private $_prepareMarkers;
|
|
15312
15543
|
protected _prepareMakrer(mv: LineMarkerView): void;
|
|
15313
15544
|
protected _layoutMarker(mv: LineMarkerView, markerStyle: SVGStyleOrClass, x: number, y: number): void;
|
|
15314
15545
|
protected _layoutMarkers(pts: LineSeriesPoint[], width: number, height: number): void;
|
|
15315
|
-
protected _layoutLines(polar:
|
|
15316
|
-
protected
|
|
15317
|
-
protected
|
|
15318
|
-
private
|
|
15546
|
+
protected _layoutLines(polar: IPolar): void;
|
|
15547
|
+
protected _buildLine(line: PointLine, t: LineType, connected: boolean, sb: PathBuilder): void;
|
|
15548
|
+
protected _buildLines(polar: IPolar, lines: PointLine[]): string;
|
|
15549
|
+
private $_drawLine;
|
|
15319
15550
|
private _drawLines;
|
|
15320
|
-
private
|
|
15551
|
+
private _drawStep;
|
|
15321
15552
|
private _drawSteps;
|
|
15322
|
-
|
|
15323
|
-
|
|
15324
|
-
protected _drawCurve(pts: IPointPos[], from: number, sb: PathBuilder): void;
|
|
15553
|
+
protected _drawCurve(pts: PointLine, connected: boolean, sb: PathBuilder): void;
|
|
15554
|
+
protected _drawCurves(polar: IPolar, lines: PointLine[], sb: PathBuilder): void;
|
|
15325
15555
|
protected _buildAreas(lines: PointLine[], t1: LineType, t2?: LineType): string;
|
|
15326
15556
|
setHoverStyle(pv: RcElement): void;
|
|
15327
15557
|
}
|
|
@@ -15367,8 +15597,6 @@ interface ISectorShape {
|
|
|
15367
15597
|
depth?: number;
|
|
15368
15598
|
}
|
|
15369
15599
|
declare class SectorElement extends PathElement {
|
|
15370
|
-
static create(doc: Document, styleName: string, x: number, y: number, rx: number, ry: number, start: number, angle: number, clockwise?: boolean): SectorElement;
|
|
15371
|
-
static createInner(doc: Document, styleName: string, x: number, y: number, rx: number, ry: number, innerRadius: number, start: number, angle: number, clockwise?: boolean): SectorElement;
|
|
15372
15600
|
constructor(doc: Document, styleName?: string, shape?: ISectorShape);
|
|
15373
15601
|
/**
|
|
15374
15602
|
* 중심 x.
|
|
@@ -15595,6 +15823,7 @@ declare class Utils {
|
|
|
15595
15823
|
* @returns
|
|
15596
15824
|
*/
|
|
15597
15825
|
static randomLike(i: number): number;
|
|
15826
|
+
static diffAngle(rad1: number, rad2: number): number;
|
|
15598
15827
|
}
|
|
15599
15828
|
|
|
15600
15829
|
declare const getVersion: typeof Globals.getVersion;
|
|
@@ -15606,4 +15835,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
15606
15835
|
declare const createData: typeof Globals.createData;
|
|
15607
15836
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
15608
15837
|
|
|
15609
|
-
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, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, 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, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|
|
15838
|
+
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, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, 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, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, 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, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|