realchart 1.2.5 → 1.3.1
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/index.d.ts +141 -23
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +8 -3
- package/realchart-style.css +10 -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.d.ts +31 -0
- package/wordcloud.js +7 -0
- package/wordcloud.mjs +7 -0
package/gauge.js
CHANGED
package/gauge.mjs
CHANGED
package/heatmap.js
CHANGED
package/heatmap.mjs
CHANGED
package/index.d.ts
CHANGED
|
@@ -1048,7 +1048,6 @@ declare class RcElement extends RcObject {
|
|
|
1048
1048
|
private _y;
|
|
1049
1049
|
private _width;
|
|
1050
1050
|
private _height;
|
|
1051
|
-
private _zIndex;
|
|
1052
1051
|
private _tx;
|
|
1053
1052
|
private _ty;
|
|
1054
1053
|
private _scaleX;
|
|
@@ -1071,8 +1070,6 @@ declare class RcElement extends RcObject {
|
|
|
1071
1070
|
get dom(): SVGElement;
|
|
1072
1071
|
get parent(): RcElement;
|
|
1073
1072
|
get control(): RcControl;
|
|
1074
|
-
get zIndex(): number;
|
|
1075
|
-
set zIndex(value: number);
|
|
1076
1073
|
get x(): number;
|
|
1077
1074
|
set x(value: number);
|
|
1078
1075
|
get tx(): number;
|
|
@@ -1594,6 +1591,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1594
1591
|
visibleInLegend?: boolean;
|
|
1595
1592
|
/**
|
|
1596
1593
|
* true로 지정하면 시리즈 내비게이터에 표시한다.
|
|
1594
|
+
* 해당 속성은 bar, line 시리즈 에서만 적용된다.
|
|
1597
1595
|
*/
|
|
1598
1596
|
visibleInNavigator?: boolean;
|
|
1599
1597
|
/**
|
|
@@ -1618,6 +1616,12 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1618
1616
|
* 데이터포인트의 동적 스타일 콜백.<br/>
|
|
1619
1617
|
*/
|
|
1620
1618
|
pointStyleCallback?: PointStyleCallback;
|
|
1619
|
+
/**
|
|
1620
|
+
* 시리즈의 hover, focus, tooltip 상호작용 여부를 지정한다.
|
|
1621
|
+
*
|
|
1622
|
+
* @default true
|
|
1623
|
+
*/
|
|
1624
|
+
interactive?: boolean;
|
|
1621
1625
|
/**
|
|
1622
1626
|
* 데이터포인트들이 새로 로드된 후 호출된다.<br/>
|
|
1623
1627
|
*/
|
|
@@ -3719,6 +3723,121 @@ interface VectorSeriesOptions extends Omit<ConnectableSeriesOptions, 'trendline'
|
|
|
3719
3723
|
*/
|
|
3720
3724
|
arrowHead?: ArrowHead;
|
|
3721
3725
|
}
|
|
3726
|
+
declare const WordCloudSeriesType = "wordcloud";
|
|
3727
|
+
/**
|
|
3728
|
+
* Word cloud 시리즈.<br/>
|
|
3729
|
+
* {@page op.SeriesOptions#type}은 'wordcloud'이다.<br/>
|
|
3730
|
+
* 빈도(weight, 또는 중용도)와 함께 지정된 단어 묶음에 포함된 단어들을 빈도에 따라 텍스트 크기를 비례적으로 표시한다.
|
|
3731
|
+
* 전체 텍스트나 단어 목록 내에서 중요한 용어나 핵심 키워드, 또는 주제 등을 강조하는 용도로 사용된다.
|
|
3732
|
+
* 'tag cloud'로도 불린다.<br/>
|
|
3733
|
+
* {@page data} 대신 {@page text} 속성을 지정하면 단어들을 추출해서 data를 구성한다.
|
|
3734
|
+
*
|
|
3735
|
+
* {@page data}는 아래 형식들로 전달할 수 있다.
|
|
3736
|
+
*
|
|
3737
|
+
* ###### 단일값 또는 단일값 배열
|
|
3738
|
+
* |형식|설명|
|
|
3739
|
+
* |---|---|
|
|
3740
|
+
* |[x, y,]|두 값 이상이면 순서대로 name, value값.<br/>
|
|
3741
|
+
* 또는 {@page xField} 속성이 숫자이면 x값의 index.
|
|
3742
|
+
* {@page yField}는 y값의 index.<br/>{@page colorField}는 color값의 index.|
|
|
3743
|
+
*
|
|
3744
|
+
* ###### json 배열
|
|
3745
|
+
* |Series 속성|설명 |
|
|
3746
|
+
* |---|---|
|
|
3747
|
+
* |{@page xField}|속성 값, 또는 'x', 'name', 'label' 속성들 중 순서대로 값이 설정된 것이 x 값이 된다.|
|
|
3748
|
+
* |{@page yField}|속성 값, 또는 'y', 'value', 속성들 중 순서대로 값이 설정된 것이 y 값이 된다.|
|
|
3749
|
+
* |{@page colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3750
|
+
*
|
|
3751
|
+
* // TODO #fiddle series/wordcloud-series WordCloud Series
|
|
3752
|
+
* @css 'rct-wordcloud-series'
|
|
3753
|
+
* @config chart.series[type=wordcloud]
|
|
3754
|
+
* @modules wordcloud
|
|
3755
|
+
*/
|
|
3756
|
+
interface WordCloudSeriesOptions extends WidgetSeriesOptions {
|
|
3757
|
+
/**
|
|
3758
|
+
* 표시할 단어들이 포함된 전체 텍스트.<br/>
|
|
3759
|
+
* 이 속성에 비어 있지 않은 문자열이 설정되면 {@page data}는 무시된다.
|
|
3760
|
+
*/
|
|
3761
|
+
text?: string;
|
|
3762
|
+
/**
|
|
3763
|
+
* {@page text}에서 단어를 추출할 때 제외할 단어들을 배열로 지정한다.<br/>
|
|
3764
|
+
*/
|
|
3765
|
+
excludes?: string[];
|
|
3766
|
+
/**
|
|
3767
|
+
* {@page text}에서 단어를 추출한 후 표시할 단어들의 최대 개수.<br/>
|
|
3768
|
+
* 빈도수가 작은 단어들이 제외된다.
|
|
3769
|
+
*
|
|
3770
|
+
* @default 100
|
|
3771
|
+
*/
|
|
3772
|
+
maxCount?: number;
|
|
3773
|
+
/**
|
|
3774
|
+
* 지정한 값을 log base로 한 로그 연산으로 값들을 계산한다.<br>
|
|
3775
|
+
* 2 이상 값으로 지정해야 한다.
|
|
3776
|
+
*/
|
|
3777
|
+
logBase?: number;
|
|
3778
|
+
/**
|
|
3779
|
+
* 배치된 전체 영역이 시리즈 영역보다 작은 경우 시리즈 크기에 맞게 확대한다.
|
|
3780
|
+
*
|
|
3781
|
+
* @default true
|
|
3782
|
+
*/
|
|
3783
|
+
autoScale?: boolean;
|
|
3784
|
+
/**
|
|
3785
|
+
* {@page text}에서 단어를 추출한 후 표시할 단어들의 최소 빈도수(데이터포인트 y값).<br/>
|
|
3786
|
+
* 이 값 보다 작은 빈도수를 갖는 단어들은 표시되지 않는다.
|
|
3787
|
+
*/
|
|
3788
|
+
minWeight?: number;
|
|
3789
|
+
/**
|
|
3790
|
+
* {@page text}에서 단어를 추출한 후 표시할 단어들의 최소 길이.<br/>
|
|
3791
|
+
* 이 값 보다 작은 길이의 단어들은 표시되지 않는다.
|
|
3792
|
+
*/
|
|
3793
|
+
minLength?: number;
|
|
3794
|
+
/**
|
|
3795
|
+
* 시리즈 배치 기준이되는 각 단어의 높이 비율로 눈으로 보이는 폰트 높이와 계산되는 높이를 조정한다.<br/>
|
|
3796
|
+
* 'auto'로 지정하면 각 텍스트이 실제 표시 높이를 계산해서 배치한다.
|
|
3797
|
+
* 숫자값은 0.1 ~ 2 사이의 값으로 조정된다.
|
|
3798
|
+
* @default 'auto'
|
|
3799
|
+
*/
|
|
3800
|
+
textHeight?: number | 'auto';
|
|
3801
|
+
/**
|
|
3802
|
+
* 가장 작은 빈도수 단어들에 설정되는 픽셀 단위의 폰트 크기.<br/>
|
|
3803
|
+
*
|
|
3804
|
+
* @default 8
|
|
3805
|
+
*/
|
|
3806
|
+
minFontSize?: PercentSize;
|
|
3807
|
+
/**
|
|
3808
|
+
* 가장 큰 빈도수 단어들에 설정되는 픽셀 단위의 폰트 크기.<br/>
|
|
3809
|
+
* 지정한 값이 '15%' ~ '50%' 사이의 크기가 되도록 조정된다.
|
|
3810
|
+
*
|
|
3811
|
+
* @default '20%'
|
|
3812
|
+
*/
|
|
3813
|
+
maxFontSize?: PercentSize;
|
|
3814
|
+
/**
|
|
3815
|
+
* true로 지정하면 단어 마다 다른 색으로 표시한다.<br/>
|
|
3816
|
+
* 색상들은 {@page palette}나 {@page colors}로 지정할 수 있다.
|
|
3817
|
+
*
|
|
3818
|
+
* @default true
|
|
3819
|
+
*/
|
|
3820
|
+
colorByPoint?: boolean;
|
|
3821
|
+
/**
|
|
3822
|
+
* @default 'rectangle'
|
|
3823
|
+
*/
|
|
3824
|
+
frame?: 'circle' | 'ellipse' | 'rectangle' | 'square';
|
|
3825
|
+
/**
|
|
3826
|
+
* true로 지정하면 차트가 새로 표시되거나 데이터가 변경될 때, 단어들의 위치가 디르게 표시된다.
|
|
3827
|
+
*
|
|
3828
|
+
* @default false
|
|
3829
|
+
*/
|
|
3830
|
+
shuffle?: boolean;
|
|
3831
|
+
/**
|
|
3832
|
+
* 단어 사이의 최소 수평 간격을 시리즈 내부 단위로 표시한다.<br/>
|
|
3833
|
+
*/
|
|
3834
|
+
wordGap?: number;
|
|
3835
|
+
/**
|
|
3836
|
+
* 단어 배치 각도와 관련된 random 값<br/>
|
|
3837
|
+
* 0 ~ 360 사이의 값으로 지정한다.
|
|
3838
|
+
*/
|
|
3839
|
+
seed?: number;
|
|
3840
|
+
}
|
|
3722
3841
|
/** @enum */
|
|
3723
3842
|
declare const CandlestickSeriesTypes: {
|
|
3724
3843
|
readonly CandlestickSeriesType: "candlestick";
|
|
@@ -4791,6 +4910,9 @@ declare class TextElement extends RcElement {
|
|
|
4791
4910
|
applyStyles(styles: any): void;
|
|
4792
4911
|
setStyle(prop: string, value: string): boolean;
|
|
4793
4912
|
getBBox(): IRect;
|
|
4913
|
+
/**
|
|
4914
|
+
* For unit test.
|
|
4915
|
+
*/
|
|
4794
4916
|
getBBoundsTest(): IRect;
|
|
4795
4917
|
stain(): void;
|
|
4796
4918
|
}
|
|
@@ -5765,6 +5887,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
5765
5887
|
pointClicked(p: DataPoint): boolean;
|
|
5766
5888
|
pointHovered(p: DataPoint): void;
|
|
5767
5889
|
getViewRangeAxis(): 'x' | 'y' | 'z';
|
|
5890
|
+
isLabelsVisible(): boolean;
|
|
5768
5891
|
isPointLabelVisible(p: DataPoint): boolean;
|
|
5769
5892
|
/**
|
|
5770
5893
|
* 지정한 x축 값에 위치한 첫번째 데이터포인트를 리턴한다.<br/>
|
|
@@ -7588,7 +7711,8 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
7588
7711
|
*/
|
|
7589
7712
|
crosshair?: CrosshairOptions | boolean;
|
|
7590
7713
|
/**
|
|
7591
|
-
* zoom된 축에 표시할 수 있는 스크롤바 옵션.<br/>
|
|
7714
|
+
* zoom된 x축에 표시할 수 있는 스크롤바 옵션.<br/>
|
|
7715
|
+
* y축은 scrollBar가 표시되지 않는다.
|
|
7592
7716
|
* // TODO #fiddle axis/scrollbar Axis ScrollBar
|
|
7593
7717
|
*/
|
|
7594
7718
|
scrollBar?: AxisScrollBarOptions | boolean;
|
|
@@ -9313,13 +9437,6 @@ declare abstract class GaugeBase<OP extends GaugeBaseOptions = GaugeBaseOptions>
|
|
|
9313
9437
|
static defaults: GaugeBaseOptions;
|
|
9314
9438
|
_row: number;
|
|
9315
9439
|
_col: number;
|
|
9316
|
-
private _size;
|
|
9317
|
-
private _width;
|
|
9318
|
-
private _height;
|
|
9319
|
-
private _left;
|
|
9320
|
-
private _right;
|
|
9321
|
-
private _top;
|
|
9322
|
-
private _bottom;
|
|
9323
9440
|
private _name;
|
|
9324
9441
|
index: number;
|
|
9325
9442
|
private _sizeDim;
|
|
@@ -9702,7 +9819,6 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
9702
9819
|
get zoomButton(): ZoomButton;
|
|
9703
9820
|
base(): Body;
|
|
9704
9821
|
canZoom(): boolean;
|
|
9705
|
-
isEmpty(): boolean;
|
|
9706
9822
|
getRadius(width: number, height: number): number;
|
|
9707
9823
|
setPolar(width: number, height: number): Body;
|
|
9708
9824
|
getPolar(axis: Axis): IPolar;
|
|
@@ -10374,6 +10490,10 @@ declare class Chart {
|
|
|
10374
10490
|
* @param animate 애니메이션 실행 여부.
|
|
10375
10491
|
*/
|
|
10376
10492
|
removeSeries(series: string | Series, animate?: boolean): void;
|
|
10493
|
+
/**
|
|
10494
|
+
* @ignore
|
|
10495
|
+
*/
|
|
10496
|
+
draw(): void;
|
|
10377
10497
|
}
|
|
10378
10498
|
/**
|
|
10379
10499
|
* 차트 전용 데이터 모델.<br/>
|
|
@@ -11146,6 +11266,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
11146
11266
|
getPointView(p: DataPoint): RcElement;
|
|
11147
11267
|
clicked(elt: Element): void;
|
|
11148
11268
|
protected _doPointClicked(view: IPointView): void;
|
|
11269
|
+
protected _getPointColors(): string;
|
|
11149
11270
|
prepareSeries(doc: Document, model: T, polar: boolean): void;
|
|
11150
11271
|
protected _setModelColor(color: string): void;
|
|
11151
11272
|
protected _legendColorProp(): string;
|
|
@@ -11161,6 +11282,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
11161
11282
|
getSiblings(pv: IPointView): IPointView[];
|
|
11162
11283
|
getSibling(pv: IPointView): IPointView;
|
|
11163
11284
|
applyAutoRotation(view: PointLabelView, a: number, total: number, totalAngle: number): void;
|
|
11285
|
+
isEmptyView(): boolean;
|
|
11164
11286
|
protected _doAttached(parent: RcElement): void;
|
|
11165
11287
|
protected _prepareStyleOrClass(model: T): void;
|
|
11166
11288
|
protected _prepareViewRanges(model: T): void;
|
|
@@ -11175,6 +11297,7 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
11175
11297
|
protected _setPointStyle(v: RcElement, model: T, p: DataPoint, styles?: any[]): void;
|
|
11176
11298
|
protected _labelViews(): PointLabelContainer;
|
|
11177
11299
|
protected _getGrowRate(): number;
|
|
11300
|
+
protected _getPosRate(): number;
|
|
11178
11301
|
_animating(): boolean;
|
|
11179
11302
|
protected _lazyPrepareLabels(): boolean;
|
|
11180
11303
|
protected _getShowAnimation(): RcAnimation;
|
|
@@ -11226,9 +11349,11 @@ declare abstract class WidgetSeriesView<T extends WidgetSeries> extends SeriesVi
|
|
|
11226
11349
|
_zombieRate: number;
|
|
11227
11350
|
_zombieAni: ZombiAnimation;
|
|
11228
11351
|
togglePointVisible(p: DataPoint): void;
|
|
11352
|
+
needFronting(): boolean;
|
|
11229
11353
|
isPointLabelVisible(p: WidgetSeriesPoint): boolean;
|
|
11230
11354
|
protected _collectVisPoints(model: T): DataPoint[];
|
|
11231
11355
|
protected _prepareSeries(doc: Document, model: T): void;
|
|
11356
|
+
protected _getPointColors(): string;
|
|
11232
11357
|
_resizeZombie(): void;
|
|
11233
11358
|
protected _createPointLegendMarker(doc: Document, p: DataPoint, size: number): RcElement;
|
|
11234
11359
|
protected _preparePoint(doc: Document, model: T, p: WidgetSeriesPoint, pv: RcElement): void;
|
|
@@ -11352,6 +11477,7 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
11352
11477
|
protected _clipSeries(view: RcElement, view2: RcElement, invertable: boolean): void;
|
|
11353
11478
|
protected _setImage(w: number, h: number): void;
|
|
11354
11479
|
protected _doLayout(): void;
|
|
11480
|
+
private $_isEmpty;
|
|
11355
11481
|
private $_createGaugeView;
|
|
11356
11482
|
private $_prepareGrids;
|
|
11357
11483
|
protected _prepareSeries(doc: Document, chart: IChart, series: Series[]): void;
|
|
@@ -12381,17 +12507,10 @@ declare class ParetoSeries extends LineSeriesBase<ParetoSeriesOptions> {
|
|
|
12381
12507
|
* [x, y]
|
|
12382
12508
|
*/
|
|
12383
12509
|
declare class PieSeriesPoint extends WidgetSeriesPoint {
|
|
12384
|
-
private _thickness;
|
|
12385
|
-
private _thickDim;
|
|
12386
12510
|
sliced: boolean;
|
|
12387
12511
|
startAngle: number;
|
|
12388
12512
|
angle: number;
|
|
12389
12513
|
borderRaidus: number;
|
|
12390
|
-
/**
|
|
12391
|
-
* 원호 두께.
|
|
12392
|
-
*/
|
|
12393
|
-
get thickness(): PercentSize;
|
|
12394
|
-
set thickness(value: PercentSize);
|
|
12395
12514
|
parse(series: ISeries): void;
|
|
12396
12515
|
protected _assignTo(proxy: any): any;
|
|
12397
12516
|
}
|
|
@@ -12414,8 +12533,6 @@ declare class PieSeriesLabel extends WidgetSeriesLabel<PieSeriesLabelOptions> {
|
|
|
12414
12533
|
declare class PieSeries extends RadialSeries<PieSeriesOptions> {
|
|
12415
12534
|
static readonly type = "pie";
|
|
12416
12535
|
static defaults: PieSeriesOptions;
|
|
12417
|
-
private _innerRadius;
|
|
12418
|
-
private _sliceOffset;
|
|
12419
12536
|
private _innerText;
|
|
12420
12537
|
private _innerRadiusDim;
|
|
12421
12538
|
private _sliceOffsetDim;
|
|
@@ -12702,6 +12819,7 @@ declare abstract class GaugeView<T extends GaugeBase = GaugeBase> extends Conten
|
|
|
12702
12819
|
clicked(elt: Element): void;
|
|
12703
12820
|
prepareGauge(doc: Document, model: T): void;
|
|
12704
12821
|
getPosition(width: number, height: number): Point;
|
|
12822
|
+
isEmptyView(): boolean;
|
|
12705
12823
|
protected _prepareStyleOrClass(model: T): void;
|
|
12706
12824
|
protected _doMeasure(doc: Document, model: T, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
12707
12825
|
protected _doLayout(): void;
|
|
@@ -12804,7 +12922,7 @@ declare class Utils {
|
|
|
12804
12922
|
static logElapsed(message: string, runner: () => void): void;
|
|
12805
12923
|
static clamp(v: number, min: number, max: number): number;
|
|
12806
12924
|
static makeIntArray(from: number, to: number): number[];
|
|
12807
|
-
static shuffle(arr: any[]):
|
|
12925
|
+
static shuffle(arr: any[]): any[];
|
|
12808
12926
|
static isDate(v: any): boolean;
|
|
12809
12927
|
static isValidDate(d: Date): boolean;
|
|
12810
12928
|
static asFunction(fn: any): any;
|
|
@@ -12830,4 +12948,4 @@ declare const configure: typeof Globals.configure;
|
|
|
12830
12948
|
declare const createChart: typeof Globals.createChart;
|
|
12831
12949
|
declare const createData: typeof Globals.createData;
|
|
12832
12950
|
|
|
12833
|
-
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, GuageScaleTickOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, IAxis, IChart, ICircularGaugeExtents, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, LayerElement, Legend, LegendOptions, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelView, RAD_DEG, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, WidgetSeriesView, ZValuePoint, ZoomButtonOptions, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLogging, sin, toStr };
|
|
12951
|
+
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, GuageScaleTickOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, IAxis, IChart, ICircularGaugeExtents, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, LayerElement, Legend, LegendOptions, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelView, RAD_DEG, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLogging, sin, toStr };
|