realchart 1.4.23 → 1.4.25
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.d.ts +44 -1
- 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 +1 -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 +1 -1
- package/index.d.ts +126 -4
- 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/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
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
|
@@ -4033,6 +4033,12 @@ interface PieSeriesDepthOptions extends ChartItemOptions {
|
|
|
4033
4033
|
* @default 0.6
|
|
4034
4034
|
*/
|
|
4035
4035
|
ratio?: number;
|
|
4036
|
+
/**
|
|
4037
|
+
* depth 면의 색상은 슬라이스 fill을 기반으로 자동 계산되므로 직접 지정할 수 없다.<br/>
|
|
4038
|
+
* 색상을 변경하려면 슬라이스의 색상을 변경한다.
|
|
4039
|
+
* @private
|
|
4040
|
+
*/
|
|
4041
|
+
style?: never;
|
|
4036
4042
|
}
|
|
4037
4043
|
declare const PieSeriesType = "pie";
|
|
4038
4044
|
/**
|
|
@@ -6417,6 +6423,10 @@ interface SplitOptions extends ChartItemOptions {
|
|
|
6417
6423
|
* @default 0
|
|
6418
6424
|
*/
|
|
6419
6425
|
gap?: number;
|
|
6426
|
+
/**
|
|
6427
|
+
* 분할 pane별 개별 설정 옵션 목록.<br/>
|
|
6428
|
+
* 각 항목은 {@link PaneOptions}으로 구성되며, row/col 위치와 body, legend 등을 개별 지정할 수 있다.
|
|
6429
|
+
*/
|
|
6420
6430
|
panes?: PaneOptions[];
|
|
6421
6431
|
}
|
|
6422
6432
|
|
|
@@ -6989,6 +6999,39 @@ interface BulletGaugeBandOptions extends ChartItemOptions {
|
|
|
6989
6999
|
* @default true
|
|
6990
7000
|
*/
|
|
6991
7001
|
rangeInclusive?: boolean;
|
|
7002
|
+
/**
|
|
7003
|
+
* 각 범위의 toValue에 표시할 라벨 설정.
|
|
7004
|
+
*/
|
|
7005
|
+
toValueLabel?: BulletBandLabelOptions | boolean;
|
|
7006
|
+
}
|
|
7007
|
+
/**
|
|
7008
|
+
* Bullet 게이지 band toValue 라벨 설정 모델.<br/>
|
|
7009
|
+
* band 경계에 표시되는 라벨로, inside/outside 개념이 없으므로 {@link BulletBarLabelOptions}와 달리 position 옵션이 없다.
|
|
7010
|
+
*/
|
|
7011
|
+
interface BulletBandLabelOptions extends GaugeLabelOptions {
|
|
7012
|
+
/**
|
|
7013
|
+
* 밴드 경계에서 라벨까지의 간격 (픽셀).
|
|
7014
|
+
*
|
|
7015
|
+
* @default 4
|
|
7016
|
+
*/
|
|
7017
|
+
offset?: number;
|
|
7018
|
+
}
|
|
7019
|
+
/**
|
|
7020
|
+
* Bullet 게이지 bar 라벨 설정 모델.
|
|
7021
|
+
*/
|
|
7022
|
+
interface BulletBarLabelOptions extends GaugeLabelOptions {
|
|
7023
|
+
/**
|
|
7024
|
+
* 라벨 표시 위치. 'inside'이면 바 내부 끝에, 'outside'이면 바 끝 바깥에 표시한다.
|
|
7025
|
+
*
|
|
7026
|
+
* @default 'outside'
|
|
7027
|
+
*/
|
|
7028
|
+
position?: 'inside' | 'outside';
|
|
7029
|
+
/**
|
|
7030
|
+
* 바 끝에서 라벨까지의 간격 (픽셀).
|
|
7031
|
+
*
|
|
7032
|
+
* @default 4
|
|
7033
|
+
*/
|
|
7034
|
+
offset?: number;
|
|
6992
7035
|
}
|
|
6993
7036
|
/**
|
|
6994
7037
|
*/
|
|
@@ -6999,6 +7042,10 @@ interface BulletTargetBarOptions extends ChartItemOptions {
|
|
|
6999
7042
|
* @default true
|
|
7000
7043
|
*/
|
|
7001
7044
|
visible: boolean;
|
|
7045
|
+
/**
|
|
7046
|
+
* target bar 값에 표시할 라벨 설정.
|
|
7047
|
+
*/
|
|
7048
|
+
label?: BulletBarLabelOptions | boolean;
|
|
7002
7049
|
}
|
|
7003
7050
|
/**
|
|
7004
7051
|
* linear 게이지의 값을 표시하는 영역에 대한 설정 모델.
|
|
@@ -7019,6 +7066,10 @@ interface BulletValueBarOptions extends LinearValueBarOptions {
|
|
|
7019
7066
|
* 적용되는 {@link it.SVGStyles 스타일셋} 또는 css {@link https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
7020
7067
|
*/
|
|
7021
7068
|
belowStyle?: SVGStyleOrClass;
|
|
7069
|
+
/**
|
|
7070
|
+
* value bar 값에 표시할 라벨 설정.
|
|
7071
|
+
*/
|
|
7072
|
+
label?: BulletBarLabelOptions | boolean;
|
|
7022
7073
|
}
|
|
7023
7074
|
declare const BulletGaugeType = "bullet";
|
|
7024
7075
|
/**
|
|
@@ -9049,6 +9100,7 @@ declare class TrendlineLabel extends IconedText<TrendlineLabelOptions> {
|
|
|
9049
9100
|
getVerticalAlignPolar(angle: number): VerticalAlign;
|
|
9050
9101
|
getOffsetX(align: Align): number;
|
|
9051
9102
|
getOffsetY(vAlign: VerticalAlign): number;
|
|
9103
|
+
getText(): string;
|
|
9052
9104
|
getDefaultIconPos(): IconPosition;
|
|
9053
9105
|
protected _doApply(op: TrendlineLabelOptions): void;
|
|
9054
9106
|
}
|
|
@@ -10676,6 +10728,8 @@ declare class AxisLine<OP extends AxisLineOptions = AxisLineOptions> extends Axi
|
|
|
10676
10728
|
declare class AxisTitle extends AxisItem<AxisTitleOptions> {
|
|
10677
10729
|
static defaults: AxisTitleOptions;
|
|
10678
10730
|
private _rotation;
|
|
10731
|
+
private _gap;
|
|
10732
|
+
getGap(): number;
|
|
10679
10733
|
getRotation(): number;
|
|
10680
10734
|
getTextOrientation(): TextOrientation;
|
|
10681
10735
|
protected _isVisible(): boolean;
|
|
@@ -11625,7 +11679,6 @@ interface AxisLabelOptions extends IconedTextOptions {
|
|
|
11625
11679
|
/**
|
|
11626
11680
|
* {@link autoArrange} {@link AxisLabelArrange.ROWS ROWS}로 자동 정렬되는 경우 최대 행 수.<br/>
|
|
11627
11681
|
* 이 행 수 이상이 필요한 경우 label 간격을 두어 표시한다.
|
|
11628
|
-
* // TODO: 구현할 것!
|
|
11629
11682
|
*
|
|
11630
11683
|
* @default 3
|
|
11631
11684
|
*/
|
|
@@ -12130,6 +12183,12 @@ type AxisType = 'category' | 'linear' | 'log' | 'time';
|
|
|
12130
12183
|
*
|
|
12131
12184
|
*/
|
|
12132
12185
|
interface AxisOptions extends ChartItemOptions {
|
|
12186
|
+
/**
|
|
12187
|
+
* @private
|
|
12188
|
+
* 축 자체에는 스타일을 직접 지정할 수 없다.<br/>
|
|
12189
|
+
* 각 하위 항목({@link title}, {@link line}, {@link tick}, {@link label}, {@link grid} 등)에서 스타일을 지정한다.
|
|
12190
|
+
*/
|
|
12191
|
+
style?: never;
|
|
12133
12192
|
/**
|
|
12134
12193
|
* 값을 지정하지 않으면 연결된 시리즈가 있는 경우에 표시된다.<br/>
|
|
12135
12194
|
* 명시적 boolean값을 지정하면 그 설정에 따라 표시 여부가 결정된다.
|
|
@@ -12295,6 +12354,8 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
12295
12354
|
*/
|
|
12296
12355
|
tooltipFooter?: string;
|
|
12297
12356
|
/**
|
|
12357
|
+
* false로 지정하면 이 축에 한해 animation 효과를 실행하지 않는다.<br/>
|
|
12358
|
+
*
|
|
12298
12359
|
* @default true
|
|
12299
12360
|
*/
|
|
12300
12361
|
animatable?: boolean;
|
|
@@ -12755,6 +12816,14 @@ interface LogAxisTickOptions extends ContinuousAxisTickOptions {
|
|
|
12755
12816
|
*
|
|
12756
12817
|
*/
|
|
12757
12818
|
arrangeDecimals?: boolean;
|
|
12819
|
+
/**
|
|
12820
|
+
* 로그 축에는 소수점 tick 개념이 없으므로 이 속성은 사용할 수 없다.<br/>
|
|
12821
|
+
* {@link ContinuousAxisTickOptions.enableDecimals enableDecimals}는 선형 축({@link LinearAxisTickOptions})에서만 유효하며,
|
|
12822
|
+
* `LogAxisTick._getStepMultiples`는 `[1, 2, 5, 10]` 고정 배수를 반환하므로
|
|
12823
|
+
* 이 속성을 설정해도 아무런 효과가 없다.
|
|
12824
|
+
* @ignore
|
|
12825
|
+
*/
|
|
12826
|
+
enableDecimals?: never;
|
|
12758
12827
|
}
|
|
12759
12828
|
declare const LogAxisType = "log";
|
|
12760
12829
|
/**
|
|
@@ -12785,6 +12854,18 @@ interface LogAxisOptions extends ContinuousAxisOptions {
|
|
|
12785
12854
|
* 시간축 label 설정 모델.<br/>
|
|
12786
12855
|
*/
|
|
12787
12856
|
interface TimeAxisLabelOptions extends ContinuousAxisLabelOptions {
|
|
12857
|
+
/**
|
|
12858
|
+
* @private
|
|
12859
|
+
* TimeAxis는 날짜/시간 형식을 사용하므로 숫자 형식은 지원하지 않는다.<br/>
|
|
12860
|
+
* 날짜/시간 형식은 {@link timeFormat}, {@link timeFormats}을 사용한다.
|
|
12861
|
+
*/
|
|
12862
|
+
numberFormat?: never;
|
|
12863
|
+
/**
|
|
12864
|
+
* @private
|
|
12865
|
+
* TimeAxis는 날짜/시간 형식을 사용하므로 숫자 기호 설정은 지원하지 않는다.<br/>
|
|
12866
|
+
* 날짜/시간 형식은 {@link timeFormat}, {@link timeFormats}을 사용한다.
|
|
12867
|
+
*/
|
|
12868
|
+
numberSymbols?: never;
|
|
12788
12869
|
/**
|
|
12789
12870
|
* 현재 스케일의 시작일시에 상위 스케일의 포맷을 사용해서 표시한다.
|
|
12790
12871
|
*
|
|
@@ -12810,6 +12891,14 @@ interface TimeAxisLabelOptions extends ContinuousAxisLabelOptions {
|
|
|
12810
12891
|
* 시간 축 틱 설정 모델.<br/>
|
|
12811
12892
|
*/
|
|
12812
12893
|
interface TimeAxisTickOptions extends ContinuousAxisTickOptions {
|
|
12894
|
+
/**
|
|
12895
|
+
* @private
|
|
12896
|
+
* 시간 축에는 소수점 tick 개념이 없으므로 이 속성은 사용할 수 없다.<br/>
|
|
12897
|
+
* {@link ContinuousAxisTickOptions.enableDecimals enableDecimals}는 선형 축({@link LinearAxisTickOptions})에서만 유효하며,
|
|
12898
|
+
* `TimeAxisTick._getStepMultiples`는 시간 스케일(ms/초/분/시/일/주/월/년) 기반으로 동작하므로
|
|
12899
|
+
* 이 속성을 설정해도 아무런 효과가 없다.
|
|
12900
|
+
*/
|
|
12901
|
+
enableDecimals?: never;
|
|
12813
12902
|
/**
|
|
12814
12903
|
* @append
|
|
12815
12904
|
* 단위가 지정된 문자열로 지정하는 경우 값이 -1 이하이거나 1 이상이어야 한다. // #141
|
|
@@ -13271,7 +13360,20 @@ interface ImageAnnotationOptions extends AnnotationOptions {
|
|
|
13271
13360
|
*/
|
|
13272
13361
|
visible?: boolean;
|
|
13273
13362
|
/**
|
|
13274
|
-
* 이미지
|
|
13363
|
+
* 이미지 경로.<br/>
|
|
13364
|
+
* 일반 URL 경로나 `assetId::imageName` 형식의 asset 참조를 지정할 수 있다.<br/>
|
|
13365
|
+
* asset에 등록된 이미지를 사용하려면 `asset.id::imageName` 또는 `asset.id::index` 형식으로 지정한다.<br/>
|
|
13366
|
+
*
|
|
13367
|
+
* ```js
|
|
13368
|
+
* // 일반 URL 경로
|
|
13369
|
+
* imageUrl: '/images/chart.png'
|
|
13370
|
+
*
|
|
13371
|
+
* // asset 참조 (이름)
|
|
13372
|
+
* imageUrl: 'myImages::logo'
|
|
13373
|
+
*
|
|
13374
|
+
* // asset 참조 (인덱스)
|
|
13375
|
+
* imageUrl: 'myImages::0'
|
|
13376
|
+
* ```
|
|
13275
13377
|
*/
|
|
13276
13378
|
imageUrl?: string;
|
|
13277
13379
|
}
|
|
@@ -15100,7 +15202,7 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15100
15202
|
prepareGuides(doc: Document, row: number, col: number, container: AxisGuideContainer, frontContainer: AxisGuideContainer): void;
|
|
15101
15203
|
showCrosshair(pos: number, text: string): void;
|
|
15102
15204
|
setMargins(edgeStart: number, start: number, end: number, edgeEnd: number): void;
|
|
15103
|
-
|
|
15205
|
+
hideCrosshair(): void;
|
|
15104
15206
|
scroll(pos: number): void;
|
|
15105
15207
|
prepare(m: Axis): void;
|
|
15106
15208
|
checkExtents(loaded: boolean): {
|
|
@@ -15351,6 +15453,8 @@ declare class TimeAxisTick extends ContinuousAxisTick<TimeAxisTickOptions> {
|
|
|
15351
15453
|
protected _getStepMultiples(step: number): number[];
|
|
15352
15454
|
protected _getStepsByPixels(length: number, pixels: number, base: number, min: number, max: number): number[];
|
|
15353
15455
|
protected _getStepsByInterval(interval: any, base: number, min: number, max: number): number[];
|
|
15456
|
+
protected _getStepsBySteps(min: number, max: number, args: any): number[];
|
|
15457
|
+
buildSteps(axis: ContinuousAxis, length: number, base: number, min: number, max: number, broken?: boolean): number[];
|
|
15354
15458
|
}
|
|
15355
15459
|
/**
|
|
15356
15460
|
* 시간축 라벨 모델.<br/>
|
|
@@ -15448,6 +15552,14 @@ declare class LogAxis extends ContinuousAxis<LogAxisOptions> {
|
|
|
15448
15552
|
* 내부에서는 log 값들을 사용하고...
|
|
15449
15553
|
*/
|
|
15450
15554
|
getPos(length: number, value: number): number;
|
|
15555
|
+
/**
|
|
15556
|
+
* _min/_max가 log 공간에 있으므로 data 값을 log 변환 후 비교한다.
|
|
15557
|
+
*/
|
|
15558
|
+
contains(value: number): boolean;
|
|
15559
|
+
/**
|
|
15560
|
+
* _min/_max가 log 공간에 있으므로 log 변환 후 trim하여 다시 data 값으로 반환한다.
|
|
15561
|
+
*/
|
|
15562
|
+
trimRange(from: number, to: number): [number, number];
|
|
15451
15563
|
protected _checkValues(vals: number[]): number[];
|
|
15452
15564
|
protected _doCalculateRange(values: number[]): {
|
|
15453
15565
|
min: number;
|
|
@@ -16485,6 +16597,11 @@ declare class TextAnnotation extends Annotation<TextAnnotationOptions> {
|
|
|
16485
16597
|
*/
|
|
16486
16598
|
declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
16487
16599
|
static readonly type: string;
|
|
16600
|
+
/**
|
|
16601
|
+
* `imageUrl`을 반환한다.<br/>
|
|
16602
|
+
* `assetId::imageName` 형식의 asset 참조가 있으면 등록된 asset에서 실제 URL로 해석한다.
|
|
16603
|
+
*/
|
|
16604
|
+
getImageUrl(): string;
|
|
16488
16605
|
protected _isVisible(): boolean;
|
|
16489
16606
|
protected _doSetSimple(src: any): boolean;
|
|
16490
16607
|
}
|
|
@@ -16597,6 +16714,7 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
|
|
|
16597
16714
|
protected _getPointPool(): PointViewPool;
|
|
16598
16715
|
needDecoreateLegend(): boolean;
|
|
16599
16716
|
decoreateLegend(legendView: LegendItemView): void;
|
|
16717
|
+
protected _computeNeedBelow(model: LineSeries): boolean;
|
|
16600
16718
|
protected _prepareSeries(doc: Document, model: T, polar: boolean): void;
|
|
16601
16719
|
protected _prepareViewRanges(model: T): void;
|
|
16602
16720
|
protected _renderSeries(width: number, height: number): void;
|
|
@@ -16668,6 +16786,7 @@ declare class AreaSeriesView extends LineSeriesBaseView<AreaSeries> {
|
|
|
16668
16786
|
constructor(doc: Document, className?: string);
|
|
16669
16787
|
decoreateLegend(legendView: LegendItemView): void;
|
|
16670
16788
|
getClipContainer2(): RcElement;
|
|
16789
|
+
protected _computeNeedBelow(model: AreaSeries): boolean;
|
|
16671
16790
|
protected _prepareBelow(polar: boolean): boolean;
|
|
16672
16791
|
protected _prepareRanges(model: AreaSeries, ranges: ValueRange[]): void;
|
|
16673
16792
|
protected _renderSeries(width: number, height: number): void;
|
|
@@ -17227,9 +17346,12 @@ declare class TextAnnotationView extends AnnotationView<TextAnnotation> {
|
|
|
17227
17346
|
static readonly CLASS_NAME: string;
|
|
17228
17347
|
private _textView;
|
|
17229
17348
|
private _richText;
|
|
17349
|
+
private _textClip;
|
|
17350
|
+
private _hasExplicitWidth;
|
|
17230
17351
|
constructor(doc: Document);
|
|
17231
17352
|
protected _doMeasure(doc: Document, model: TextAnnotation, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
17232
17353
|
protected _doLayout(p: Point): void;
|
|
17354
|
+
remove(): RcElement;
|
|
17233
17355
|
}
|
|
17234
17356
|
|
|
17235
17357
|
declare class ImageAnnotationView extends AnnotationView<ImageAnnotation> {
|
|
@@ -17346,4 +17468,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
17346
17468
|
declare const createData: typeof Globals.createData;
|
|
17347
17469
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
17348
17470
|
|
|
17349
|
-
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, 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 };
|
|
17471
|
+
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 };
|