realchart 1.4.26 → 1.4.27
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 +1 -1
- package/gauge.mjs +1 -1
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +1 -1
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +1 -1
- package/ie/realchart-style.ie.css +37 -0
- 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 +1 -1
- package/index.d.ts +204 -10
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +1 -1
- package/pictogram.mjs +1 -1
- package/realchart-style.css +19 -0
- 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 +1 -1
- package/wordcloud.mjs +1 -1
package/ie/pictogram.ie.js
CHANGED
|
@@ -367,6 +367,24 @@
|
|
|
367
367
|
stroke-width: 1px;
|
|
368
368
|
shape-rendering: crispEdges;
|
|
369
369
|
}
|
|
370
|
+
.rct-root .rct-axis-minor-tick {
|
|
371
|
+
stroke: #555;
|
|
372
|
+
stroke-width: 1px;
|
|
373
|
+
shape-rendering: crispEdges;
|
|
374
|
+
opacity: 0.65;
|
|
375
|
+
}
|
|
376
|
+
.rct-root[data-theme='dark'] .rct-axis-minor-tick {
|
|
377
|
+
stroke: #fff;
|
|
378
|
+
stroke-width: 1px;
|
|
379
|
+
shape-rendering: crispEdges;
|
|
380
|
+
opacity: 0.65;
|
|
381
|
+
}
|
|
382
|
+
.rct-root[data-theme='real'] .rct-axis-minor-tick {
|
|
383
|
+
stroke: #f0d9be;
|
|
384
|
+
stroke-width: 1px;
|
|
385
|
+
shape-rendering: crispEdges;
|
|
386
|
+
opacity: 0.65;
|
|
387
|
+
}
|
|
370
388
|
.rct-root .rct-axis-labels {
|
|
371
389
|
font-size: 14px;
|
|
372
390
|
fill: #333;
|
|
@@ -409,6 +427,21 @@
|
|
|
409
427
|
stroke-width: 1px;
|
|
410
428
|
shape-rendering: crispEdges;
|
|
411
429
|
}
|
|
430
|
+
.rct-root .rct-axis-minor-grid-line {
|
|
431
|
+
stroke: #f2f2f2;
|
|
432
|
+
stroke-width: 0.5px;
|
|
433
|
+
shape-rendering: crispEdges;
|
|
434
|
+
}
|
|
435
|
+
.rct-root[data-theme='dark'] .rct-axis-minor-grid-line {
|
|
436
|
+
stroke: #666;
|
|
437
|
+
stroke-width: 0.5px;
|
|
438
|
+
shape-rendering: crispEdges;
|
|
439
|
+
}
|
|
440
|
+
.rct-root[data-theme='real'] .rct-axis-minor-grid-line {
|
|
441
|
+
stroke: #f8efe4;
|
|
442
|
+
stroke-width: 0.5px;
|
|
443
|
+
shape-rendering: crispEdges;
|
|
444
|
+
}
|
|
412
445
|
.rct-root .rct-axis-break {
|
|
413
446
|
stroke: #aaa;
|
|
414
447
|
fill: #fff;
|
|
@@ -1864,6 +1897,10 @@
|
|
|
1864
1897
|
font-size: 20px;
|
|
1865
1898
|
fill: #557;
|
|
1866
1899
|
}
|
|
1900
|
+
.rct-polar-body-inner {
|
|
1901
|
+
font-size: 20px;
|
|
1902
|
+
fill: #557;
|
|
1903
|
+
}
|
|
1867
1904
|
.rct-pie-series-sides {
|
|
1868
1905
|
stroke: none;
|
|
1869
1906
|
}
|
package/ie/split.ie.js
CHANGED
package/ie/treemap.ie.js
CHANGED
package/ie/vector.ie.js
CHANGED
package/ie/wordcloud.ie.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -1174,6 +1174,10 @@ declare class SvgShapes {
|
|
|
1174
1174
|
(rd: number): (string | number)[];
|
|
1175
1175
|
};
|
|
1176
1176
|
static line(x1: number, y1: number, x2: number, y2: number): PathValue[];
|
|
1177
|
+
static arrowParts(x1: number, y1: number, x2: number, y2: number, headLen?: number): {
|
|
1178
|
+
body: PathValue[];
|
|
1179
|
+
head: PathValue[];
|
|
1180
|
+
};
|
|
1177
1181
|
static polygon(...pts: number[]): PathValue[];
|
|
1178
1182
|
static box(x1: number, y1: number, x2: number, y2: number): PathValue[];
|
|
1179
1183
|
static rect(r: IRect): PathValue[];
|
|
@@ -5538,6 +5542,12 @@ interface ZoomButtonOptions extends ChartItemOptions {
|
|
|
5538
5542
|
*/
|
|
5539
5543
|
visible?: boolean;
|
|
5540
5544
|
}
|
|
5545
|
+
/**
|
|
5546
|
+
* polar {@link innerRadius} 도넛 구멍 내부 텍스트 설정 옵션.<br/>
|
|
5547
|
+
* @css 'rct-polar-body-inner'
|
|
5548
|
+
*/
|
|
5549
|
+
interface PolarInnerTextOptions extends IconedTextOptions {
|
|
5550
|
+
}
|
|
5541
5551
|
/**
|
|
5542
5552
|
* @css 'rct-empty-view'
|
|
5543
5553
|
*/
|
|
@@ -5696,6 +5706,21 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
5696
5706
|
* @default '45%'
|
|
5697
5707
|
*/
|
|
5698
5708
|
radius?: PercentSize;
|
|
5709
|
+
/**
|
|
5710
|
+
* {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 플롯 영역의 안쪽 반지름.<br/>
|
|
5711
|
+
* 0보다 큰 값을 지정하면 {@link radius}와 함께 도넛 형태의 polar 플롯 영역이 된다.<br/>
|
|
5712
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie}의 {@link innerRadius}와 같이, 바깥 {@link radius}에 대한 상대 크기(%)나 픽셀 수로 지정할 수 있다.<br/>
|
|
5713
|
+
* y축 최솟값은 이 반지름 위치에 매핑된다.
|
|
5714
|
+
*
|
|
5715
|
+
* @default 0
|
|
5716
|
+
*/
|
|
5717
|
+
innerRadius?: PercentSize;
|
|
5718
|
+
/**
|
|
5719
|
+
* {@link innerRadius}가 0보다 클 때, polar 플롯 중앙(도넛 구멍)에 표시되는 텍스트.<br/>
|
|
5720
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie}의 {@link innerText}와 동일한 형식이다.<br/>
|
|
5721
|
+
* 기본 클래스 selector는 <b>'rct-polar-body-inner'</b>이다.
|
|
5722
|
+
*/
|
|
5723
|
+
innerText?: PolarInnerTextOptions;
|
|
5699
5724
|
/**
|
|
5700
5725
|
* {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 중심 x 좌표.<br/>
|
|
5701
5726
|
*
|
|
@@ -10119,10 +10144,15 @@ interface IPolar {
|
|
|
10119
10144
|
cx: number;
|
|
10120
10145
|
cy: number;
|
|
10121
10146
|
rd: number;
|
|
10147
|
+
/** 안쪽 구멍(도넛) 반지름. 픽셀 단위. */
|
|
10148
|
+
rdInner: number;
|
|
10122
10149
|
cyclic: boolean;
|
|
10123
10150
|
min?: number;
|
|
10124
10151
|
max?: number;
|
|
10125
10152
|
}
|
|
10153
|
+
declare class PolarInnerText extends IconedText<PolarInnerTextOptions> {
|
|
10154
|
+
getDefaultIconPos(): IconPosition;
|
|
10155
|
+
}
|
|
10126
10156
|
declare class BodyDepthLine extends ChartItem<BodyDepthLineOptions> {
|
|
10127
10157
|
static defaults: BodyDepthLineOptions;
|
|
10128
10158
|
}
|
|
@@ -10199,11 +10229,14 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
10199
10229
|
private _emptyView;
|
|
10200
10230
|
_annotations: AnnotationCollection;
|
|
10201
10231
|
private _radiusDim;
|
|
10232
|
+
private _innerRadiusDim;
|
|
10202
10233
|
private _centerXDim;
|
|
10203
10234
|
private _centerYDim;
|
|
10204
10235
|
private _rd;
|
|
10236
|
+
private _rdInner;
|
|
10205
10237
|
private _cx;
|
|
10206
10238
|
private _cy;
|
|
10239
|
+
private _innerText;
|
|
10207
10240
|
constructor(chart: IChart);
|
|
10208
10241
|
protected _doInit(op: OP): void;
|
|
10209
10242
|
anchorByName(name: string): ChartItem;
|
|
@@ -10213,10 +10246,22 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
10213
10246
|
get depth(): BodyDepth;
|
|
10214
10247
|
get image(): BackgroundImage;
|
|
10215
10248
|
get emptyView(): EmptyView;
|
|
10249
|
+
/**
|
|
10250
|
+
* {@link innerRadius}가 0보다 클 때, polar 플롯 중앙에 표시되는 텍스트.
|
|
10251
|
+
* 기본 클래스 selector는 <b>'rct-polar-body-inner'</b>이다.
|
|
10252
|
+
*/
|
|
10253
|
+
get innerText(): PolarInnerText;
|
|
10254
|
+
hasInner(): boolean;
|
|
10216
10255
|
get zoomButton(): ZoomButton;
|
|
10217
10256
|
canZoom(): boolean;
|
|
10218
10257
|
_getDepth(w: number, h: number): IBodyDepthExtents;
|
|
10219
10258
|
getRadius(width: number, height: number): number;
|
|
10259
|
+
/**
|
|
10260
|
+
* {@link innerRadius}를 바깥 반지름에 대한 비율(0~1)로 반환한다.
|
|
10261
|
+
* PieSeries.getInnerRadius와 동일한 규칙이다.
|
|
10262
|
+
*/
|
|
10263
|
+
getInnerRadius(rd: number): number;
|
|
10264
|
+
getInnerRadiusPx(rd: number): number;
|
|
10220
10265
|
setPolar(width: number, height: number): Body;
|
|
10221
10266
|
getPolar(axis: Axis): IPolar;
|
|
10222
10267
|
isZoomed(): boolean;
|
|
@@ -10935,6 +10980,28 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
|
|
|
10935
10980
|
protected _doSetSimple(src: any): boolean;
|
|
10936
10981
|
protected _doPrepareRender(chart: IChart): void;
|
|
10937
10982
|
}
|
|
10983
|
+
/**
|
|
10984
|
+
* major tick 사이 보조 눈금(minor tick) 모델.<br/>
|
|
10985
|
+
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorTickOptions AxisMinorTickOptions}이고,
|
|
10986
|
+
* {@link https://realchart.co.kr/config/config/base/axis#minortick minorTick} 항목으로 설정한다.
|
|
10987
|
+
*/
|
|
10988
|
+
declare class AxisMinorTick extends AxisItem<AxisMinorTickOptions> {
|
|
10989
|
+
static defaults: AxisMinorTickOptions;
|
|
10990
|
+
private _length;
|
|
10991
|
+
private _count;
|
|
10992
|
+
_getLength(): number;
|
|
10993
|
+
_getCount(): number;
|
|
10994
|
+
protected _doSetSimple(src: any): boolean;
|
|
10995
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
10996
|
+
}
|
|
10997
|
+
/**
|
|
10998
|
+
* major grid 사이 보조 격자선(minor grid line) 모델.<br/>
|
|
10999
|
+
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorGridOptions AxisMinorGridOptions}이고,
|
|
11000
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid grid.minorGrid} 항목으로 설정한다.
|
|
11001
|
+
*/
|
|
11002
|
+
declare class AxisMinorGrid extends AxisItem<AxisMinorGridOptions> {
|
|
11003
|
+
static defaults: AxisMinorGridOptions;
|
|
11004
|
+
}
|
|
10938
11005
|
/**
|
|
10939
11006
|
* 축 label 모델.<br/>
|
|
10940
11007
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisLabelOptions AxisLabelOptions}이고,
|
|
@@ -11092,6 +11159,8 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11092
11159
|
};
|
|
11093
11160
|
_ticks: IAxisTick[];
|
|
11094
11161
|
_markPoints: number[];
|
|
11162
|
+
_minorValues: number[];
|
|
11163
|
+
_minorMarkPoints: number[];
|
|
11095
11164
|
_vlen: number;
|
|
11096
11165
|
_zoom: AxisZoom;
|
|
11097
11166
|
_values: number[];
|
|
@@ -11491,6 +11560,59 @@ interface AxisTickOptions extends AxisItemOptions {
|
|
|
11491
11560
|
*/
|
|
11492
11561
|
gap?: number;
|
|
11493
11562
|
}
|
|
11563
|
+
/**
|
|
11564
|
+
* major grid 사이 보조 격자선(minor grid line) 설정 옵션.<br/>
|
|
11565
|
+
* linear, log, time 축에 적용된다.<br/>
|
|
11566
|
+
* 위치는 {@link AxisMinorTickOptions.count minorTick count}와 동일하게 계산된다
|
|
11567
|
+
* ({@link AxisMinorTickOptions.visible minorTick visible}이 false여도 count는 grid 위치에 사용된다).<br/>
|
|
11568
|
+
* {@link AxisGridOptions.visible grid visible}이 false이면 minor grid도 표시되지 않는다.<br/>
|
|
11569
|
+
* {@link firstVisible}, {@link lastVisible}은 major grid에만 적용되고 minor grid에는 적용되지 않는다.<br/>
|
|
11570
|
+
* {@link depthVisible} 및 depth side panel에는 minor grid가 표시되지 않는다.<br/>
|
|
11571
|
+
* axis break 경계 tick이 있는 major 구간에는 minor grid가 생성되지 않는다.<br/>
|
|
11572
|
+
* 선 스타일은 {@link style} 속성으로 지정한다.
|
|
11573
|
+
*
|
|
11574
|
+
* @css 'rct-axis-minor-grid-line'
|
|
11575
|
+
*/
|
|
11576
|
+
interface AxisMinorGridOptions extends AxisItemOptions {
|
|
11577
|
+
/**
|
|
11578
|
+
* @default false
|
|
11579
|
+
*/
|
|
11580
|
+
visible?: boolean;
|
|
11581
|
+
}
|
|
11582
|
+
/**
|
|
11583
|
+
* major tick 사이에 표시되는 보조 눈금(minor tick) 설정 옵션.<br/>
|
|
11584
|
+
* linear, log, time 축에 적용된다.<br/>
|
|
11585
|
+
* time 축은 major tick 타임스탬프 사이를 선형 보간하여 minor 위치를 계산한다
|
|
11586
|
+
* (달력 단위가 아닌 픽셀 균등 배치).<br/>
|
|
11587
|
+
* log 축은 major tick 값이 0보다 클 때 log 공간에서 보간한다.<br/>
|
|
11588
|
+
* {@link count}는 {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid minor grid} 위치 계산에도 사용된다
|
|
11589
|
+
* (visible이 false여도 grid만 표시할 수 있다).<br/>
|
|
11590
|
+
* major tick이 2개 미만이면 minor tick·grid가 생성되지 않는다.<br/>
|
|
11591
|
+
* axis break 경계 tick이 있는 major 구간에는 minor tick이 생성되지 않는다.<br/>
|
|
11592
|
+
* 선 스타일은 {@link style} 속성으로 지정한다.
|
|
11593
|
+
*
|
|
11594
|
+
* @css 'rct-axis-minor-tick'
|
|
11595
|
+
*/
|
|
11596
|
+
interface AxisMinorTickOptions extends AxisItemOptions {
|
|
11597
|
+
/**
|
|
11598
|
+
* @default false
|
|
11599
|
+
*/
|
|
11600
|
+
visible?: boolean;
|
|
11601
|
+
/**
|
|
11602
|
+
* major tick 한 구간 사이에 표시할 minor tick 개수.<br/>
|
|
11603
|
+
* 1 미만이거나 소수인 값은 내림하여 1 이상의 정수로 적용된다.<br/>
|
|
11604
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid minor grid} 위치에도 동일하게 적용된다.
|
|
11605
|
+
*
|
|
11606
|
+
* @default 4
|
|
11607
|
+
*/
|
|
11608
|
+
count?: number;
|
|
11609
|
+
/**
|
|
11610
|
+
* minor tick 선 길이(픽셀). major tick보다 짧게 지정하는 것이 일반적이다.
|
|
11611
|
+
*
|
|
11612
|
+
* @default 4
|
|
11613
|
+
*/
|
|
11614
|
+
length?: number;
|
|
11615
|
+
}
|
|
11494
11616
|
/**
|
|
11495
11617
|
* 연속축의 tick 스텝 목록을 동적으로 리턴하는 {@link https://realchart.co.kr/config/config/xAxis/linear/tick#stepcallback 콜백}의 매개변수로 사용된다.
|
|
11496
11618
|
*/
|
|
@@ -11614,6 +11736,12 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11614
11736
|
/**
|
|
11615
11737
|
*/
|
|
11616
11738
|
interface ContinuousAxisGridOptions extends AxisGridOptions {
|
|
11739
|
+
/**
|
|
11740
|
+
* major grid 사이 보조 격자선(minor grid line) 설정 옵션.<br/>
|
|
11741
|
+
* boolean 값으로 지정하면 {@link visible} 속성을 지정한 것과 동일하다.<br/>
|
|
11742
|
+
* 표시 여부는 상위 {@link AxisGridOptions.visible grid visible}이 true일 때만 적용된다.
|
|
11743
|
+
*/
|
|
11744
|
+
minorGrid?: AxisMinorGridOptions | boolean;
|
|
11617
11745
|
}
|
|
11618
11746
|
/**
|
|
11619
11747
|
* @enum
|
|
@@ -12850,6 +12978,11 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
12850
12978
|
* @append
|
|
12851
12979
|
*/
|
|
12852
12980
|
tick?: ContinuousAxisTickOptions | boolean;
|
|
12981
|
+
/**
|
|
12982
|
+
* major tick 사이 보조 눈금(minor tick) 설정 옵션.<br/>
|
|
12983
|
+
* boolean 값으로 지정하면 {@link visible} 속성을 지정한 것과 동일하다.
|
|
12984
|
+
*/
|
|
12985
|
+
minorTick?: AxisMinorTickOptions | boolean;
|
|
12853
12986
|
/**
|
|
12854
12987
|
* @append
|
|
12855
12988
|
*/
|
|
@@ -13529,6 +13662,11 @@ declare const _ShapeAnnotationShape: {
|
|
|
13529
13662
|
*
|
|
13530
13663
|
*/
|
|
13531
13664
|
readonly LINE: "line";
|
|
13665
|
+
/**
|
|
13666
|
+
* 화살표
|
|
13667
|
+
*
|
|
13668
|
+
*/
|
|
13669
|
+
readonly ARROW: "arrow";
|
|
13532
13670
|
};
|
|
13533
13671
|
/** @dummy */
|
|
13534
13672
|
type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnnotationShape];
|
|
@@ -13536,7 +13674,9 @@ type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnno
|
|
|
13536
13674
|
* Shape 어노테이션.<br/>
|
|
13537
13675
|
* {@link https://realchart.co.kr/docs/api/options/AnnotationOptions#type type}은 'shape'이다.<br/>
|
|
13538
13676
|
* {@link shape} 속성에 표시할 도형 모양을 지정하거나,
|
|
13539
|
-
* {@link path}에 SVG path를 직접 지정할 수
|
|
13677
|
+
* {@link path}에 SVG path를 직접 지정할 수 있다.<br/>
|
|
13678
|
+
* {@link shape}가 `'arrow'`이고 object {@link style}일 때 stroke/fill 기본값이 자동 보정된다.<br/>
|
|
13679
|
+
* CSS class {@link style} 문자열은 자동 보정되지 않는다.
|
|
13540
13680
|
*
|
|
13541
13681
|
* // TODO #fiddle annotation/shape-annotation Shape Annotation
|
|
13542
13682
|
* @css 'rct-shape-annotation'
|
|
@@ -13559,22 +13699,43 @@ interface ShapeAnnotationOptions extends AnnotationOptions {
|
|
|
13559
13699
|
height?: PercentSize;
|
|
13560
13700
|
/**
|
|
13561
13701
|
* Shape 종류.<br/>
|
|
13702
|
+
* `'arrow'`는 {@link x1}, {@link y1}, {@link x2}, {@link y2} 직선 화살표이며,
|
|
13703
|
+
* `'hline'`/`'vline'`처럼 축 전체를 span하지 않는다.
|
|
13562
13704
|
*
|
|
13563
13705
|
* @default 'square'
|
|
13564
13706
|
*/
|
|
13565
13707
|
shape?: ShapeAnnotationShape;
|
|
13566
13708
|
/**
|
|
13567
13709
|
* shape svg path.<br/>
|
|
13568
|
-
* 이 속성이 지정되면 {@link shape}는
|
|
13710
|
+
* 이 속성이 지정되면 {@link shape}는 무시되며, `'arrow'`일 때 화살표 머리도 표시되지 않는다.
|
|
13569
13711
|
*/
|
|
13570
13712
|
path?: string;
|
|
13571
13713
|
/**
|
|
13714
|
+
* {@link shape}가 `'arrow'`일 때 선 굵기(픽셀).<br/>
|
|
13715
|
+
* 지정하면 {@link style}의 strokeWidth보다 우선하며, 렌더 시 {@link style} strokeWidth로 반영된다.<br/>
|
|
13716
|
+
* arrow 전용이며, object {@link style} 미지정 시 strokeWidth 기본값도 함께 적용된다.
|
|
13717
|
+
*
|
|
13718
|
+
* @default 1
|
|
13719
|
+
*/
|
|
13720
|
+
lineWidth?: number;
|
|
13721
|
+
/**
|
|
13722
|
+
* {@link shape}가 `'arrow'`일 때 화살표 머리 크기(픽셀).<br/>
|
|
13723
|
+
* tip에서 wing까지의 거리이며, 선 길이의 90%를 넘지 않는다.<br/>
|
|
13724
|
+
* arrow가 아닌 {@link shape}에서는 무시된다.
|
|
13725
|
+
*
|
|
13726
|
+
* @default 12
|
|
13727
|
+
*/
|
|
13728
|
+
headSize?: number;
|
|
13729
|
+
/**
|
|
13730
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13572
13731
|
*/
|
|
13573
13732
|
series?: string;
|
|
13574
13733
|
/**
|
|
13734
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13575
13735
|
*/
|
|
13576
13736
|
xRange?: number[];
|
|
13577
13737
|
/**
|
|
13738
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13578
13739
|
*/
|
|
13579
13740
|
yRange?: number[];
|
|
13580
13741
|
}
|
|
@@ -14407,7 +14568,11 @@ declare class ImageElement extends RcElement {
|
|
|
14407
14568
|
* {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/ContinuousAxisGridOptions ContinuousAxisGridOptions}이다.
|
|
14408
14569
|
*/
|
|
14409
14570
|
declare class ContinuousAxisGrid extends AxisGrid<ContinuousAxisGridOptions> {
|
|
14571
|
+
private _minorGrid;
|
|
14572
|
+
protected _doInit(op: ContinuousAxisGridOptions): void;
|
|
14573
|
+
get minorGrid(): AxisMinorGrid;
|
|
14410
14574
|
getPositions(axis: ContinuousAxis, length: number): number[];
|
|
14575
|
+
getMinorPositions(axis: ContinuousAxis, length: number): number[];
|
|
14411
14576
|
}
|
|
14412
14577
|
/**
|
|
14413
14578
|
* 연속축의 tick 모델.<br/>
|
|
@@ -14502,6 +14667,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14502
14667
|
private static readonly PADDINGS;
|
|
14503
14668
|
static defaults: ContinuousAxisOptions;
|
|
14504
14669
|
private _baseLine;
|
|
14670
|
+
private _minorTick;
|
|
14505
14671
|
_minPadPixels: number;
|
|
14506
14672
|
_maxPadPixels: number;
|
|
14507
14673
|
private _minPaddings;
|
|
@@ -14537,6 +14703,10 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14537
14703
|
* @append
|
|
14538
14704
|
*/
|
|
14539
14705
|
get tick(): ContinuousAxisTick;
|
|
14706
|
+
/**
|
|
14707
|
+
* @append
|
|
14708
|
+
*/
|
|
14709
|
+
get minorTick(): AxisMinorTick;
|
|
14540
14710
|
/**
|
|
14541
14711
|
* @append
|
|
14542
14712
|
*/
|
|
@@ -14552,13 +14722,22 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14552
14722
|
protected _createGrid(): ContinuousAxisGrid;
|
|
14553
14723
|
protected _createTickModel(): ContinuousAxisTick;
|
|
14554
14724
|
protected abstract _createLabel(): ContinuousAxisLabel;
|
|
14725
|
+
_prepareRender(): void;
|
|
14555
14726
|
protected _doPrepareRender(): void;
|
|
14556
14727
|
private $_trim;
|
|
14557
14728
|
private $_trimSteps;
|
|
14558
14729
|
protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
|
|
14559
14730
|
private $_createTicks;
|
|
14560
14731
|
protected _createTick(index: number, step: number): IAxisTick;
|
|
14732
|
+
/**
|
|
14733
|
+
* major tick 구간 사이 minor tick/grid 값을 계산한다.<br/>
|
|
14734
|
+
* minor tick(#1450)과 minor grid line(#1449)이 동일한 보간을 사용한다.
|
|
14735
|
+
*/
|
|
14736
|
+
private $_buildMinorValues;
|
|
14737
|
+
protected _canInterpolateMinorSegment(v0: number, v1: number): boolean;
|
|
14738
|
+
protected _interpolateMinorValue(v0: number, v1: number, index: number, count: number): number;
|
|
14561
14739
|
_calcPoints(length: number, phase: number): void;
|
|
14740
|
+
private $_calcMinorPoints;
|
|
14562
14741
|
private $_buildBrokenSteps;
|
|
14563
14742
|
private $_calcBrokenSteps;
|
|
14564
14743
|
getPos(length: number, value: number): number;
|
|
@@ -15284,18 +15463,22 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15284
15463
|
static readonly AXIS_CLASS = "rct-axis";
|
|
15285
15464
|
static readonly LINE_CLASS = "rct-axis-line";
|
|
15286
15465
|
static readonly TICK_CLASS = "rct-axis-tick";
|
|
15466
|
+
static readonly MINOR_TICK_CLASS = "rct-axis-minor-tick";
|
|
15287
15467
|
_simpleMode: boolean;
|
|
15288
15468
|
private _lineView;
|
|
15289
15469
|
private _lineView2;
|
|
15290
15470
|
private _titleView;
|
|
15291
15471
|
private _markContainer;
|
|
15292
15472
|
private _markViews;
|
|
15473
|
+
private _minorMarkContainer;
|
|
15474
|
+
private _minorMarkViews;
|
|
15293
15475
|
private _labelContainer;
|
|
15294
15476
|
private _labelViews;
|
|
15295
15477
|
private _unitView;
|
|
15296
15478
|
_scrollView: AxisScrollView;
|
|
15297
15479
|
private _reversed;
|
|
15298
15480
|
private _markLen;
|
|
15481
|
+
private _minorMarkLen;
|
|
15299
15482
|
private _tickGap;
|
|
15300
15483
|
private _labelSize;
|
|
15301
15484
|
private _labelRowPts;
|
|
@@ -15324,7 +15507,11 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15324
15507
|
clean(): void;
|
|
15325
15508
|
protected _doMeasure(doc: Document, model: Axis, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
15326
15509
|
protected _doLayout(): void;
|
|
15510
|
+
private $_syncTickMarkViews;
|
|
15511
|
+
private $_prepareTickMarkViews;
|
|
15512
|
+
private $_layoutTickMarkViews;
|
|
15327
15513
|
private $_prepareTickMarks;
|
|
15514
|
+
private $_prepareMinorTickMarks;
|
|
15328
15515
|
private _prepareLabel;
|
|
15329
15516
|
private $_prepareLabels;
|
|
15330
15517
|
private $_getRows;
|
|
@@ -15523,6 +15710,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
15523
15710
|
declare class ChartControl extends RcControl implements IChartEventListener {
|
|
15524
15711
|
private _chart;
|
|
15525
15712
|
private _chartView;
|
|
15713
|
+
private _contextMenuDismissHandler;
|
|
15526
15714
|
constructor(doc: Document, container: string | HTMLDivElement);
|
|
15527
15715
|
protected _createChartView(doc: Document): ChartView;
|
|
15528
15716
|
protected _createPointerHandler(): ChartPointerHandler;
|
|
@@ -15547,6 +15735,8 @@ declare class ChartControl extends RcControl implements IChartEventListener {
|
|
|
15547
15735
|
protected _doRender(bounds: IRect): void;
|
|
15548
15736
|
protected _doRenderBackground(elt: HTMLDivElement, root: RcElement, width: number, height: number): void;
|
|
15549
15737
|
private _loadModules;
|
|
15738
|
+
private $_bindContextMenuDismiss;
|
|
15739
|
+
private $_unbindContextMenuDismiss;
|
|
15550
15740
|
private _export;
|
|
15551
15741
|
}
|
|
15552
15742
|
|
|
@@ -15680,6 +15870,8 @@ declare class LogAxis extends ContinuousAxis<LogAxisOptions> {
|
|
|
15680
15870
|
* 화면 표시는 역log 값들을 사용한다.
|
|
15681
15871
|
*/
|
|
15682
15872
|
protected _createTick(index: number, step: number): IAxisTick;
|
|
15873
|
+
protected _interpolateMinorValue(v0: number, v1: number, index: number, count: number): number;
|
|
15874
|
+
protected _canInterpolateMinorSegment(v0: number, v1: number): boolean;
|
|
15683
15875
|
protected _calcUnitLen(vals: number[], length: number, axisMin: number, axisMax: number): {
|
|
15684
15876
|
len: number;
|
|
15685
15877
|
min: number;
|
|
@@ -16725,15 +16917,13 @@ declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
|
16725
16917
|
declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
16726
16918
|
static readonly type: string;
|
|
16727
16919
|
static defaults: ShapeAnnotationOptions;
|
|
16728
|
-
private
|
|
16729
|
-
private _yRange;
|
|
16730
|
-
getSeries(): {
|
|
16731
|
-
series: ISeries;
|
|
16732
|
-
xRange: number[];
|
|
16733
|
-
yRange: number[];
|
|
16734
|
-
};
|
|
16920
|
+
private _headSize;
|
|
16735
16921
|
getShape(): ShapeAnnotationShape;
|
|
16922
|
+
hasCustomPath(): boolean;
|
|
16923
|
+
getHeadSize(): number;
|
|
16924
|
+
protected _doApply(options: ShapeAnnotationOptions): void;
|
|
16736
16925
|
protected _doSetSimple(src: any): boolean;
|
|
16926
|
+
private $_resolveArrowStyle;
|
|
16737
16927
|
}
|
|
16738
16928
|
|
|
16739
16929
|
/** @private */
|
|
@@ -17478,9 +17668,13 @@ declare class ImageAnnotationView extends AnnotationView<ImageAnnotation> {
|
|
|
17478
17668
|
declare class ShapeAnnotationView extends AnnotationView<ShapeAnnotation> {
|
|
17479
17669
|
static readonly CLASS_NAME: string;
|
|
17480
17670
|
private _shapeView;
|
|
17671
|
+
private _headView;
|
|
17481
17672
|
constructor(doc: Document);
|
|
17482
17673
|
protected _doMeasure(doc: Document, model: ShapeAnnotation, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
17483
17674
|
protected _doLayout(p: Point): void;
|
|
17675
|
+
private $_headView;
|
|
17676
|
+
private $_resetHeadView;
|
|
17677
|
+
private $_lineEndpoints;
|
|
17484
17678
|
}
|
|
17485
17679
|
|
|
17486
17680
|
declare const isIE: boolean;
|
|
@@ -17579,4 +17773,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
17579
17773
|
declare const createData: typeof Globals.createData;
|
|
17580
17774
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
17581
17775
|
|
|
17582
|
-
export { Align, Annotation, AnnotationAnimationOptions, AnnotationClickArgs, AnnotationOptions, AnnotationOptionsType, AnnotationView, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaRangeSeriesView, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AreaSeriesView, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisGuideOptionsType, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletBandLabelOptions, BulletBarLabelOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, ScatterSeriesView, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeAnnotationView, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StackLabel, StackLabelCallbackArgs, StackLabelOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextAnnotationView, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, WaterfallSeriesView, Widget, WidgetSeries, WidgetSeriesConnector, WidgetSeriesLabel, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|
|
17776
|
+
export { Align, Annotation, AnnotationAnimationOptions, AnnotationClickArgs, AnnotationOptions, AnnotationOptionsType, AnnotationView, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaRangeSeriesView, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AreaSeriesView, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisGuideOptionsType, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisMinorGridOptions, AxisMinorTickOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletBandLabelOptions, BulletBarLabelOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, PolarInnerTextOptions, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, ScatterSeriesView, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeAnnotationView, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StackLabel, StackLabelCallbackArgs, StackLabelOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextAnnotationView, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, WaterfallSeriesView, Widget, WidgetSeries, WidgetSeriesConnector, WidgetSeriesLabel, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|