realchart 1.1.6 → 1.1.7
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/dist/index.d.ts +105 -28
- package/dist/index.esm.js +2 -2
- package/dist/index.ie.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +15 -5
- package/dist/realchart-style.ie.css +15 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -592,6 +592,10 @@ declare const _AnnotationScope: {
|
|
|
592
592
|
readonly CONTAINER: "container";
|
|
593
593
|
};
|
|
594
594
|
type AnnotationScope = typeof _AnnotationScope[keyof typeof _AnnotationScope];
|
|
595
|
+
interface AnnotationAnimationOptions {
|
|
596
|
+
type: string;
|
|
597
|
+
duration?: number;
|
|
598
|
+
}
|
|
595
599
|
/**
|
|
596
600
|
* 차트 {@page config.base.series 시리즈}나 {@page config.base.gauge 게이지}로
|
|
597
601
|
* 표현이 부족하거나 특별히 강조할 내용이 있을 때,
|
|
@@ -1433,10 +1437,6 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1433
1437
|
* 단순히 boolean 값으로 설정하면 {@page visible} 속성에 적용된다.
|
|
1434
1438
|
*/
|
|
1435
1439
|
pointLabel?: DataPointLabelOptions | boolean;
|
|
1436
|
-
/**
|
|
1437
|
-
* 추세선 옵션.<br/>
|
|
1438
|
-
*/
|
|
1439
|
-
trendline?: TrendlineOptions;
|
|
1440
1440
|
/**
|
|
1441
1441
|
* 분할 모드일 때 시리즈가 표시될 pane의 수직 index.
|
|
1442
1442
|
*/
|
|
@@ -1584,7 +1584,13 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1584
1584
|
*/
|
|
1585
1585
|
onPointHover?: PointHoverCallback;
|
|
1586
1586
|
}
|
|
1587
|
-
interface
|
|
1587
|
+
interface ConnectableSeriesOptions extends SeriesOptions {
|
|
1588
|
+
/**
|
|
1589
|
+
* 추세선 옵션.<br/>
|
|
1590
|
+
*/
|
|
1591
|
+
trendline?: TrendlineOptions;
|
|
1592
|
+
}
|
|
1593
|
+
interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
1588
1594
|
/**
|
|
1589
1595
|
* 시리즈가 그룹에 포함되지 않거나,
|
|
1590
1596
|
* 포함된 그룹의 layout이 {@page SeriesGroupLayout.DEFAULT}이거나 특별히 설정되지 않아서,
|
|
@@ -1830,7 +1836,7 @@ interface SeriesMarkerOptions extends ChartItemOptions {
|
|
|
1830
1836
|
*/
|
|
1831
1837
|
styleCallback?: PointStyleCallback;
|
|
1832
1838
|
}
|
|
1833
|
-
interface MarkerSeriesOptions extends
|
|
1839
|
+
interface MarkerSeriesOptions extends ConnectableSeriesOptions {
|
|
1834
1840
|
/**
|
|
1835
1841
|
* 명시적으로 지정하지 않으면 typeIndex에 따라 Shapes 중 하나로 돌아가면서 설정된다.
|
|
1836
1842
|
*
|
|
@@ -1919,7 +1925,7 @@ interface LineSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
|
1919
1925
|
* //기본값은 AUTO(HEAD)이다.
|
|
1920
1926
|
* //pointLabel.align으로 수평 정렬을 설정할 수있다.
|
|
1921
1927
|
*/
|
|
1922
|
-
interface LineSeriesBaseOptions extends
|
|
1928
|
+
interface LineSeriesBaseOptions extends ConnectableSeriesOptions {
|
|
1923
1929
|
/**
|
|
1924
1930
|
* marker 옵션.<br/>
|
|
1925
1931
|
*/
|
|
@@ -2734,12 +2740,12 @@ interface ErrorBarSeriesOptions extends LowRangedSeriesOptions {
|
|
|
2734
2740
|
* @override
|
|
2735
2741
|
* @default 0.3
|
|
2736
2742
|
*/
|
|
2737
|
-
pointPadding
|
|
2743
|
+
pointPadding?: number;
|
|
2738
2744
|
/**
|
|
2739
2745
|
* @override
|
|
2740
2746
|
* @default '<b>${name}</b><br>${series}: <b>${lowValue}</b> ~ <b>${highValue}</b>'
|
|
2741
2747
|
*/
|
|
2742
|
-
tooltipText
|
|
2748
|
+
tooltipText?: string;
|
|
2743
2749
|
}
|
|
2744
2750
|
declare const FunnelSeriesType = "funnel";
|
|
2745
2751
|
/**
|
|
@@ -2829,13 +2835,13 @@ declare const HeatmapSeriesType = "heatmap";
|
|
|
2829
2835
|
*
|
|
2830
2836
|
* @config chart.series[type=heatmap]
|
|
2831
2837
|
*/
|
|
2832
|
-
interface HeatmapSeriesOptions extends
|
|
2838
|
+
interface HeatmapSeriesOptions extends ConnectableSeriesOptions {
|
|
2833
2839
|
type?: typeof HeatmapSeriesType;
|
|
2834
2840
|
/**
|
|
2835
2841
|
* @override
|
|
2836
2842
|
* @default 'x: <b>${x}</b><br>y: <b>${y}</b><br>heat: <b>${z}</b>'
|
|
2837
2843
|
*/
|
|
2838
|
-
tooltipText
|
|
2844
|
+
tooltipText?: string;
|
|
2839
2845
|
}
|
|
2840
2846
|
/**
|
|
2841
2847
|
* @enum
|
|
@@ -2871,7 +2877,7 @@ declare const HistogramSeriesType = "histogram";
|
|
|
2871
2877
|
* @css 'rct-histogram-series'
|
|
2872
2878
|
* @config chart.series[type=histogram]
|
|
2873
2879
|
*/
|
|
2874
|
-
interface HistogramSeriesOptions extends
|
|
2880
|
+
interface HistogramSeriesOptions extends ConnectableSeriesOptions {
|
|
2875
2881
|
type?: typeof HistogramSeriesType;
|
|
2876
2882
|
/**
|
|
2877
2883
|
* @default 0
|
|
@@ -2983,7 +2989,7 @@ declare const LollipopSeriesType = "lollipop";
|
|
|
2983
2989
|
*/
|
|
2984
2990
|
interface LollipopSeriesOptions extends BasedSeriesOptions {
|
|
2985
2991
|
type?: typeof LollipopSeriesType;
|
|
2986
|
-
marker
|
|
2992
|
+
marker?: LollipopSeriesMarkerOptions;
|
|
2987
2993
|
}
|
|
2988
2994
|
declare const OhlcSeriesType = "ohlc";
|
|
2989
2995
|
/**
|
|
@@ -3275,6 +3281,13 @@ declare const _TreemapAlgorithm: {
|
|
|
3275
3281
|
readonly SLICE_DICE: "sliceDice";
|
|
3276
3282
|
};
|
|
3277
3283
|
type TreemapAlgorithm = typeof _TreemapAlgorithm[keyof typeof _TreemapAlgorithm];
|
|
3284
|
+
interface TreeGroupHeadOptions extends ChartItemOptions {
|
|
3285
|
+
/**
|
|
3286
|
+
* @override
|
|
3287
|
+
* @default false
|
|
3288
|
+
*/
|
|
3289
|
+
visible?: boolean;
|
|
3290
|
+
}
|
|
3278
3291
|
declare const TreemapSeriesType = "treemap";
|
|
3279
3292
|
/**
|
|
3280
3293
|
* Treemap 시리즈.<br/>
|
|
@@ -3429,7 +3442,7 @@ declare const VectorSeriesType = "vector";
|
|
|
3429
3442
|
*
|
|
3430
3443
|
* @config chart.series[type=vector]
|
|
3431
3444
|
*/
|
|
3432
|
-
interface VectorSeriesOptions extends
|
|
3445
|
+
interface VectorSeriesOptions extends ConnectableSeriesOptions {
|
|
3433
3446
|
type?: typeof VectorSeriesType;
|
|
3434
3447
|
/**
|
|
3435
3448
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 길이(length) 값을 지정하는 속성명이나 인덱스.<br/>
|
|
@@ -3787,6 +3800,26 @@ interface ZoomButtonOptions extends ChartItemOptions {
|
|
|
3787
3800
|
*/
|
|
3788
3801
|
visible?: boolean;
|
|
3789
3802
|
}
|
|
3803
|
+
interface EmptyViewOptions extends ChartTextOptions {
|
|
3804
|
+
/**
|
|
3805
|
+
* @override
|
|
3806
|
+
*
|
|
3807
|
+
* false로 지정하면 표시돼야할 상황에서도 표시되지 않는다.
|
|
3808
|
+
*
|
|
3809
|
+
* @default undefined
|
|
3810
|
+
*/
|
|
3811
|
+
visible?: boolean;
|
|
3812
|
+
/**
|
|
3813
|
+
* @override
|
|
3814
|
+
*
|
|
3815
|
+
* 표시할 텍스트.<br/>
|
|
3816
|
+
* 지정하지 않으면 ''표시할 데이터가 없습니다.'가 표시된다.
|
|
3817
|
+
* 또, split pane인 경우 지정하지 않으면 먼저 기본 body에 설정된 값으로 표시된다.
|
|
3818
|
+
*
|
|
3819
|
+
* @default undefined
|
|
3820
|
+
*/
|
|
3821
|
+
text?: string;
|
|
3822
|
+
}
|
|
3790
3823
|
/**
|
|
3791
3824
|
* {@page config.base.series 시리즈}나 {@page config.base.gauge 게이지}들이 그려지는 영역 설정 옵션.<br/>
|
|
3792
3825
|
*
|
|
@@ -3831,6 +3864,10 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
3831
3864
|
* 배경 이미지 설정 옵션.<br/>
|
|
3832
3865
|
*/
|
|
3833
3866
|
image?: BackgroundImageOptions;
|
|
3867
|
+
/**
|
|
3868
|
+
* 차트에 표시할 데이터가 존재하지 않을 때 표시되는 메시지 view.<br/>
|
|
3869
|
+
*/
|
|
3870
|
+
emptyView?: EmptyViewOptions;
|
|
3834
3871
|
/**
|
|
3835
3872
|
* plot 영역 마우스 드래깅을 통한 zooming 방식.
|
|
3836
3873
|
*
|
|
@@ -4242,7 +4279,7 @@ interface ImageListOptions extends AssetItemOptions {
|
|
|
4242
4279
|
rootUrl?: string;
|
|
4243
4280
|
width?: number;
|
|
4244
4281
|
height?: number;
|
|
4245
|
-
images
|
|
4282
|
+
images?: (ImageOptions | string)[];
|
|
4246
4283
|
}
|
|
4247
4284
|
/**
|
|
4248
4285
|
* 색상 목록을 미리 지정하고 {@page config.base.series#pointcolors} 등에 적용할 수 있다.<br/>
|
|
@@ -5183,8 +5220,8 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5183
5220
|
static _loadSeries(chart: IChart, index: number, src: any, defType?: string): Series;
|
|
5184
5221
|
static getPointTooltipParam(series: Series, point: DataPoint, param: string): any;
|
|
5185
5222
|
private _data;
|
|
5186
|
-
private _trendline;
|
|
5187
5223
|
protected _pointLabel: DataPointLabel;
|
|
5224
|
+
protected _trendline: Trendline;
|
|
5188
5225
|
private _name;
|
|
5189
5226
|
_row: number;
|
|
5190
5227
|
_col: number;
|
|
@@ -5245,16 +5282,11 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5245
5282
|
* 데이터포인트 label 설정 모델.
|
|
5246
5283
|
*/
|
|
5247
5284
|
get pointLabel(): DataPointLabel<DataPointLabelOptions>;
|
|
5248
|
-
/**
|
|
5249
|
-
* 추세선 설정 모델.
|
|
5250
|
-
*/
|
|
5251
|
-
get trendline(): Trendline;
|
|
5252
5285
|
/**
|
|
5253
5286
|
* 데이터포인터들을 생성하는 데 사용되는 값 목록.
|
|
5254
5287
|
*/
|
|
5255
5288
|
get data(): any;
|
|
5256
5289
|
private _setData;
|
|
5257
|
-
contains(p: DataPoint): boolean;
|
|
5258
5290
|
/**
|
|
5259
5291
|
* 시리즈에 설정된 데이터포인트 개수.<br/>
|
|
5260
5292
|
*/
|
|
@@ -5263,6 +5295,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5263
5295
|
* 시리즈에 설정된 데이터포인트들 중 표시 중인 것들의 개수.<br/>
|
|
5264
5296
|
*/
|
|
5265
5297
|
get visiblePointCount(): number;
|
|
5298
|
+
contains(p: DataPoint): boolean;
|
|
5266
5299
|
getPoints(): DataPointCollection;
|
|
5267
5300
|
_getLabeledPoints(): DataPoint[];
|
|
5268
5301
|
_getVisiblePoints(): DataPoint[];
|
|
@@ -5487,6 +5520,16 @@ declare class PlottingItemCollection extends ChartItemCollection<PlottingItem> {
|
|
|
5487
5520
|
private $_loadItem;
|
|
5488
5521
|
private $_add;
|
|
5489
5522
|
}
|
|
5523
|
+
declare abstract class ConnectableSeries<OP extends ConnectableSeriesOptions = ConnectableSeriesOptions> extends Series<OP> {
|
|
5524
|
+
static defaults: ConnectableSeriesOptions;
|
|
5525
|
+
protected _doInitChildren(op: {
|
|
5526
|
+
[child: string]: ChartItemOptions;
|
|
5527
|
+
}): void;
|
|
5528
|
+
/**
|
|
5529
|
+
* 추세선 설정 모델.
|
|
5530
|
+
*/
|
|
5531
|
+
get trendline(): Trendline;
|
|
5532
|
+
}
|
|
5490
5533
|
/**
|
|
5491
5534
|
* dumbbell 시리즈 등에 표시되는 마커.
|
|
5492
5535
|
*/
|
|
@@ -5535,7 +5578,7 @@ declare abstract class RadialSeries<OP extends RadialSeriesOptions = RadialSerie
|
|
|
5535
5578
|
}
|
|
5536
5579
|
/**
|
|
5537
5580
|
*/
|
|
5538
|
-
declare abstract class ClusterableSeries<OP extends ClusterableSeriesOptions = ClusterableSeriesOptions> extends
|
|
5581
|
+
declare abstract class ClusterableSeries<OP extends ClusterableSeriesOptions = ClusterableSeriesOptions> extends ConnectableSeries<OP> implements IClusterable {
|
|
5539
5582
|
static defaults: ClusterableSeriesOptions;
|
|
5540
5583
|
_clusterWidth: number;
|
|
5541
5584
|
_clusterPos: number;
|
|
@@ -5658,7 +5701,7 @@ declare abstract class ClusterableSeriesGroup<T extends Series = Series, OP exte
|
|
|
5658
5701
|
isClusterable(): boolean;
|
|
5659
5702
|
setCluster(width: number, pos: number): void;
|
|
5660
5703
|
}
|
|
5661
|
-
declare abstract class MarkerSeries<OP extends MarkerSeriesOptions = MarkerSeriesOptions> extends
|
|
5704
|
+
declare abstract class MarkerSeries<OP extends MarkerSeriesOptions = MarkerSeriesOptions> extends ConnectableSeries<OP> {
|
|
5662
5705
|
static defaults: MarkerSeriesOptions;
|
|
5663
5706
|
isMarker(): boolean;
|
|
5664
5707
|
}
|
|
@@ -6827,6 +6870,24 @@ interface AxisGuideOptions extends AxisItemOptions {
|
|
|
6827
6870
|
*/
|
|
6828
6871
|
endValue?: number;
|
|
6829
6872
|
}
|
|
6873
|
+
declare const AxisLineGuideType = "line";
|
|
6874
|
+
/**
|
|
6875
|
+
* 축 위의 특정한 값에 선분을 표시한다.<br/>
|
|
6876
|
+
*/
|
|
6877
|
+
interface AxisLineGuideOptions extends AxisGuideOptions {
|
|
6878
|
+
type?: typeof AxisLineGuideType;
|
|
6879
|
+
value: number;
|
|
6880
|
+
}
|
|
6881
|
+
declare const AxisRangeGuideType = "range";
|
|
6882
|
+
/**
|
|
6883
|
+
* 축 위 특정한 두 값 사이의 영역을 구분 표시한다.<br/>
|
|
6884
|
+
* [주의] realchart-style.css에 fill-opacity가 0.2로 설정되어 있다.
|
|
6885
|
+
*/
|
|
6886
|
+
interface AxisRangeGuideOptions extends AxisGuideOptions {
|
|
6887
|
+
type: typeof AxisRangeGuideType;
|
|
6888
|
+
startValue: number;
|
|
6889
|
+
endValue: number;
|
|
6890
|
+
}
|
|
6830
6891
|
/**
|
|
6831
6892
|
* Axis tick의 위치에 수평 혹은 수직선으로 plot 영역을 구분 표시한다.\
|
|
6832
6893
|
* {@page visible} 기본값이 undefined인데,
|
|
@@ -8363,6 +8424,13 @@ interface CircleGaugeValueRimOptions extends CircleGaugeRimBaseOptions {
|
|
|
8363
8424
|
*/
|
|
8364
8425
|
stroked?: boolean;
|
|
8365
8426
|
}
|
|
8427
|
+
interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
|
|
8428
|
+
/**
|
|
8429
|
+
* @override
|
|
8430
|
+
* @default false
|
|
8431
|
+
*/
|
|
8432
|
+
visible?: boolean;
|
|
8433
|
+
}
|
|
8366
8434
|
interface CircleGaugeHandOptions extends ChartItemOptions {
|
|
8367
8435
|
/**
|
|
8368
8436
|
* @override
|
|
@@ -9239,6 +9307,12 @@ declare class ZoomButton extends ChartItem<ZoomButtonOptions> {
|
|
|
9239
9307
|
constructor(body: Body);
|
|
9240
9308
|
protected _isVisible(): boolean;
|
|
9241
9309
|
}
|
|
9310
|
+
declare class EmptyView extends ChartText<EmptyViewOptions> {
|
|
9311
|
+
static readonly DEF_TEXT = "\uD45C\uC2DC\uD560 \uB370\uC774\uD130\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.";
|
|
9312
|
+
static defaults: EmptyViewOptions;
|
|
9313
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
9314
|
+
protected _getMessage(): string;
|
|
9315
|
+
}
|
|
9242
9316
|
interface IPolar {
|
|
9243
9317
|
start: number;
|
|
9244
9318
|
total: number;
|
|
@@ -9271,6 +9345,7 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
9271
9345
|
private _anns;
|
|
9272
9346
|
private _image;
|
|
9273
9347
|
private _zoomButton;
|
|
9348
|
+
private _emptyView;
|
|
9274
9349
|
_annotations: AnnotationCollection;
|
|
9275
9350
|
private _radiusDim;
|
|
9276
9351
|
private _centerXDim;
|
|
@@ -9284,9 +9359,11 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
9284
9359
|
}): void;
|
|
9285
9360
|
anchorByName(name: string): ChartItem;
|
|
9286
9361
|
get image(): BackgroundImage;
|
|
9362
|
+
get emptyView(): EmptyView;
|
|
9287
9363
|
get zoomButton(): ZoomButton;
|
|
9288
9364
|
base(): Body;
|
|
9289
9365
|
canZoom(): boolean;
|
|
9366
|
+
isEmpty(): boolean;
|
|
9290
9367
|
getRadius(width: number, height: number): number;
|
|
9291
9368
|
setPolar(width: number, height: number): Body;
|
|
9292
9369
|
getPolar(axis: Axis): IPolar;
|
|
@@ -10644,7 +10721,7 @@ declare class LinePointLabel extends DataPointLabel<LinePointLabelOptions> {
|
|
|
10644
10721
|
* //기본값은 'auto'('head'')이다.
|
|
10645
10722
|
* //pointLabel.align으로 수평 정렬을 설정할 수있다.
|
|
10646
10723
|
*/
|
|
10647
|
-
declare abstract class LineSeriesBase<OP extends LineSeriesBaseOptions = LineSeriesBaseOptions> extends
|
|
10724
|
+
declare abstract class LineSeriesBase<OP extends LineSeriesBaseOptions = LineSeriesBaseOptions> extends ConnectableSeries<OP> {
|
|
10648
10725
|
static defaults: LineSeriesBaseOptions;
|
|
10649
10726
|
private _marker;
|
|
10650
10727
|
private _shape;
|
|
@@ -11128,7 +11205,7 @@ declare class FunnelSeries extends WidgetSeries<FunnelSeriesOptions> {
|
|
|
11128
11205
|
* {@page op.SeriesOptions#type}은 {@page config.series.heatmap 'heatmap'}이고,
|
|
11129
11206
|
* {@page options 설정} 모델은 {@page op.HeatmapSeriesOptions}이다.
|
|
11130
11207
|
*/
|
|
11131
|
-
declare class HeatmapSeries extends
|
|
11208
|
+
declare class HeatmapSeries extends ConnectableSeries<HeatmapSeriesOptions> {
|
|
11132
11209
|
static readonly type = "heatmap";
|
|
11133
11210
|
static defaults: HeatmapSeriesOptions;
|
|
11134
11211
|
_heatMin: number;
|
|
@@ -11147,7 +11224,7 @@ declare class HeatmapSeries extends Series<HeatmapSeriesOptions> {
|
|
|
11147
11224
|
* {@page op.SeriesOptions#type}은 {@page config.series.histogram 'histogram'}이고,
|
|
11148
11225
|
* {@page options 설정} 모델은 {@page op.HistogramSeriesOptions}이다.
|
|
11149
11226
|
*/
|
|
11150
|
-
declare class HistogramSeries extends
|
|
11227
|
+
declare class HistogramSeries extends ConnectableSeries<HistogramSeriesOptions> {
|
|
11151
11228
|
static readonly type = "histogram";
|
|
11152
11229
|
static defaults: HistogramSeriesOptions;
|
|
11153
11230
|
_binInterval: number;
|
|
@@ -11413,7 +11490,7 @@ declare class TreemapSeries extends Series<TreemapSeriesOptions> {
|
|
|
11413
11490
|
* {@page op.SeriesOptions#type}은 {@page config.series.vecotor 'vector'}이고,
|
|
11414
11491
|
* {@page options 설정} 모델은 {@page op.VectorSeriesOptions}이다.
|
|
11415
11492
|
*/
|
|
11416
|
-
declare class VectorSeries extends
|
|
11493
|
+
declare class VectorSeries extends ConnectableSeries<VectorSeriesOptions> {
|
|
11417
11494
|
static readonly type = "vector";
|
|
11418
11495
|
static defaults: VectorSeriesOptions;
|
|
11419
11496
|
protected _createPoint(source: any): DataPoint;
|
|
@@ -11990,4 +12067,4 @@ declare const configure: typeof Globals.configure;
|
|
|
11990
12067
|
declare const createChart: typeof Globals.createChart;
|
|
11991
12068
|
declare const createData: typeof Globals.createData;
|
|
11992
12069
|
|
|
11993
|
-
export { Annotation, AreaRangeSeries, AreaSeries, AreaSeriesGroup, Axis, AxisBaseLine, AxisGrid, AxisItem, AxisLabel, AxisLabelArgs, AxisLine, AxisScrollBar, AxisSectorLine, AxisTick, AxisTitle, BarRangeSeries, BarSeries, BarSeriesBase, BarSeriesGroup, BarSeriesGroupBase, BasedSeries, BellCurveSeries, Body, BoxPlotSeries, BubbleSeries, BulletGauge, BulletGaugeBand, BulletGaugeGroup, BulletTargetBar, BulletValueBar, BumpSeriesGroup, CandlestickSeries, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisTick, Chart, ChartData, ChartDataCollection, ChartDataOptions, ChartItem, ChartOptions, ChartText, CircelBarPointLabel, CircleBarSeries, CircleBarSeriesGroup, CircleGauge, CircleGaugeGroup, CircleGaugeHand, CircleGaugePin, CircleGaugeRim, CircleGaugeRimBase, CircleGaugeScale, CircleGaugeValueRim, CircularGauge, CircularGaugeGroup, CircularGaugeLabel, ClockGauge, ClockGaugeHand, ClockGaugeLabel, ClockGaugeMinuteHand, ClockGaugePin, ClockGaugeRim, ClockGaugeSecondHand, ClockGaugeTick, ClockGaugeTickLabel, ClusterableSeries, ClusterableSeriesGroup, ConstraintSeriesGroup, ContinuousAxis, Credits, Crosshair, CrosshairCallbackArgs, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DumbbellSeries, EqualizerSeries, ErrorBarSeries, ExportOptions, Exporter, FunnelSeries, Gauge, GaugeBase, GaugeGroup, GaugeItem, GaugeLabel, GaugeRangeBand, GaugeRangeLabel, GaugeScale, HeatmapSeries, HistogramSeries, IAxis, Point as IPoint, IconedText, ImageAnnotation, Legend, LinePointLabel, LineSeries, LineSeriesBase, LineSeriesGroup, LineSeriesPoint, LinearAxis, LinearGauge, LinearGaugeBase, LinearGaugeChildLabel, LinearGaugeGroup, LinearGaugeGroupBase, LinearGaugeGroupLabel, LinearGaugeLabel, LinearGaugeScale, LinearValueBar, LogAxis, LollipopSeries, LowRangedSeries, MarkerSeries, NavigatorMask, NavigiatorHandle, OhlcSeries, ParetoSeries, PieSeries, PieSeriesGroup, PieSeriesLabel, PieSeriesText, PointHovering, RadialSeries, RangedSeries, RcObject, SVGStyles, ScatterSeries, Series, SeriesGroup, SeriesMarker, SeriesNavigator, Shape, ShapeAnnotation, SplineSeries, Split, StepCallbackArgs, Subtitle, TextAnnotation, TimeAxis, Title, Tooltip, TreemapSeries, Trendline, ValueGauge, ValueRange, ValueRangeList, VectorSeries, WaterfallSeries, Widget, WidgetSeries, configure, createChart, createData, getVersion, setAnimatable, setDebugging, setLogging };
|
|
12070
|
+
export { Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGauge, BulletGaugeBand, BulletGaugeBandOptions, BulletGaugeGroup, BulletGaugeGroupOptions, BulletGaugeOptions, BulletTargetBar, BulletTargetBarOptions, BulletValueBar, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartData, ChartDataCollection, ChartDataOptions, ChartItem, ChartItemOptions, ChartOptions, ChartOptionsOptions, ChartText, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleGauge, CircleGaugeGroup, CircleGaugeGroupOptions, CircleGaugeHand, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePin, CircleGaugePinOptions, CircleGaugeRim, CircleGaugeRimBase, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScale, CircleGaugeScaleOptions, CircleGaugeValueMarkerOptions, CircleGaugeValueRim, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGauge, ClockGaugeHand, ClockGaugeHandOptions, ClockGaugeLabel, ClockGaugeLabelOptions, ClockGaugeMinuteHand, ClockGaugeOptions, ClockGaugePin, ClockGaugePinOptions, ClockGaugeRim, ClockGaugeRimOptions, ClockGaugeSecondHand, ClockGaugeSecondHandOptions, ClockGaugeTick, ClockGaugeTickLabel, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, ColorListOptions, ConstraintSeriesGroup, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, FunnelSeries, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GradientOptions, GuageScaleTickOptions, HeatmapSeries, HeatmapSeriesOptions, HistogramSeries, HistogramSeriesOptions, IAxis, Point as IPoint, IconedText, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, Legend, LegendOptions, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGauge, LinearGaugeBase, LinearGaugeBaseOptions, LinearGaugeChildLabel, LinearGaugeChildLabelOptions, LinearGaugeGroup, LinearGaugeGroupBase, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabel, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeLabel, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScale, LinearGaugeScaleOptions, LinearGradientOptions, LinearValueBar, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, OhlcSeries, OhlcSeriesOptions, PaneBodyOptions, PaneOptions, ParetoSeries, ParetoSeriesOptions, PatternOptions, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PointHovering, PointHoveringOptions, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcObject, SVGStyles, ScatterSeries, ScatterSeriesOptions, Series, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, Shape, ShapeAnnotation, ShapeAnnotationOptions, SplineSeries, SplineSeriesOptions, Split, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnnotation, TextAnnotationOptions, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeries, TreemapSeriesOptions, Trendline, TrendlineOptions, ValueGauge, ValueGaugeOptions, ValueRange, ValueRangeList, VectorSeries, VectorSeriesOptions, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, ZoomButtonOptions, configure, createChart, createData, getVersion, setAnimatable, setDebugging, setLogging };
|