realchart 1.3.10 → 1.3.12
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 +150 -24
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +8 -2
- 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 +12 -1
- package/wordcloud.js +2 -2
- package/wordcloud.mjs +2 -2
package/gauge.js
CHANGED
package/gauge.mjs
CHANGED
package/heatmap.js
CHANGED
package/heatmap.mjs
CHANGED
package/index.d.ts
CHANGED
|
@@ -1276,6 +1276,8 @@ declare abstract class RcControl extends RcObject implements IAssetOwner {
|
|
|
1276
1276
|
private _invalidateLock;
|
|
1277
1277
|
private _lockDirty;
|
|
1278
1278
|
private _cssVars;
|
|
1279
|
+
private _resizeObserver;
|
|
1280
|
+
private _domResize;
|
|
1279
1281
|
loaded: boolean;
|
|
1280
1282
|
_padding: ISides;
|
|
1281
1283
|
constructor(doc: Document, container: string | HTMLDivElement, className?: string);
|
|
@@ -1305,6 +1307,7 @@ declare abstract class RcControl extends RcObject implements IAssetOwner {
|
|
|
1305
1307
|
releaseLock(validate?: boolean): void;
|
|
1306
1308
|
lock(func: (control: RcControl) => void): void;
|
|
1307
1309
|
silentLock(func: (control: RcControl) => void): void;
|
|
1310
|
+
setDomResize(value: boolean): void;
|
|
1308
1311
|
getBounds(): DOMRect;
|
|
1309
1312
|
setAnimation(to?: number): void;
|
|
1310
1313
|
fling(distance: number, duration: number): void;
|
|
@@ -1336,7 +1339,8 @@ declare abstract class RcControl extends RcObject implements IAssetOwner {
|
|
|
1336
1339
|
protected _doAfterRender(): void;
|
|
1337
1340
|
protected _doRenderBackground(elt: HTMLDivElement, root: RcElement, width: number, height: number): void;
|
|
1338
1341
|
protected _windowResizeHandler: (event: Event) => void;
|
|
1339
|
-
protected
|
|
1342
|
+
protected _domResizeHandler: (event: Event) => void;
|
|
1343
|
+
protected _domResized(): void;
|
|
1340
1344
|
toOffset(event: any): any;
|
|
1341
1345
|
setPointerCapture(ev: PointerEvent): void;
|
|
1342
1346
|
releasePointerCapture(ev: PointerEvent): void;
|
|
@@ -2003,8 +2007,13 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
|
2003
2007
|
*/
|
|
2004
2008
|
pointWidth?: number;
|
|
2005
2009
|
/**
|
|
2010
|
+
* 데이터포인트가 표시되는 위치를 데이터포인트 너비에 대한 상대값으로 비켜 표시한다..<br/>
|
|
2011
|
+
* 기본값 0이면 카테고리의 중앙 또는 연속축의 값 위치에 데이터포인트의 중간이 놓이도록 표시한다.
|
|
2012
|
+
* -0.5이면 데이터포인트 오른쪽이, 0.5이면 데이터포인트 왼쪽이 기본 위치에 표시된다.
|
|
2013
|
+
*
|
|
2014
|
+
* @default 0
|
|
2006
2015
|
*/
|
|
2007
|
-
|
|
2016
|
+
pointOffset?: number;
|
|
2008
2017
|
/**
|
|
2009
2018
|
* 이 시리즈의 point가 차지하는 영역 중에서 point bar 양쪽 끝에 채워지는 빈 영역의 크기.
|
|
2010
2019
|
* <br>
|
|
@@ -2478,6 +2487,33 @@ interface WidgetSeriesConnectorOptions extends ChartItemOptions {
|
|
|
2478
2487
|
*/
|
|
2479
2488
|
curved?: boolean;
|
|
2480
2489
|
}
|
|
2490
|
+
/**
|
|
2491
|
+
* 최대 표시 개수나 최소 표시 값 설정에 따라 마지막 데이터 포인트들을 하나의 그룹 포인트로 묶어 표시한다.<br/>
|
|
2492
|
+
* 원본 데이터포인트들은 유지된다. 또, 자동 정렬하지 않는다.
|
|
2493
|
+
*/
|
|
2494
|
+
interface OthersGroupOptions extends ChartItemOptions {
|
|
2495
|
+
/**
|
|
2496
|
+
* @default false
|
|
2497
|
+
*/
|
|
2498
|
+
visible?: boolean;
|
|
2499
|
+
/**
|
|
2500
|
+
* @default '기타'
|
|
2501
|
+
*/
|
|
2502
|
+
x?: string;
|
|
2503
|
+
/**
|
|
2504
|
+
* 표시 최대 데이터포인트 개수.<br/>
|
|
2505
|
+
* {@page minValue}와 동시에 지정할 수 있다.
|
|
2506
|
+
* 두 속성이 모두 지정되지 않으면 이 속성값이 10인 것으로 적용된다.
|
|
2507
|
+
*/
|
|
2508
|
+
maxCount?: number;
|
|
2509
|
+
/**
|
|
2510
|
+
* 이 속성으로 지정한 값 이상을 갖는 데이터포인트들만 표시한다.<br/>
|
|
2511
|
+
* '%'로 지정하면 전체 합계에 대한 비율을 기준으로 한다.
|
|
2512
|
+
* 또, {@page maxCount}와 동시에 지정할 수 있다.
|
|
2513
|
+
* 두 속성이 모두 지정되지 않으면 {@page maxCount}가 10인 것으로 적용된다.
|
|
2514
|
+
*/
|
|
2515
|
+
minValue?: PercentSize;
|
|
2516
|
+
}
|
|
2481
2517
|
/**
|
|
2482
2518
|
* {@page config.series.pie} 시리즈나 {@page config.seriesfunnel} 시리즈 설정 옵션들의 기반(base).<br/>
|
|
2483
2519
|
*/
|
|
@@ -2516,13 +2552,15 @@ interface WidgetSeriesOptions extends SeriesOptions {
|
|
|
2516
2552
|
* @default true
|
|
2517
2553
|
*/
|
|
2518
2554
|
zeroInLegend?: boolean;
|
|
2555
|
+
othersGroup?: OthersGroupOptions;
|
|
2519
2556
|
}
|
|
2520
2557
|
declare const BarRangeSeriesType = "barrange";
|
|
2521
2558
|
/**
|
|
2522
2559
|
* BarRange 시리즈.<br/>
|
|
2523
2560
|
* {@page op.SeriesOptions#type}은 'barrange'이다.<br/>
|
|
2524
2561
|
* 수평 또는 수직 막대로 여러 값들의 범위들을 **비교**하는 데 사용한다.
|
|
2525
|
-
* 막대의 길이가 값의 범위를
|
|
2562
|
+
* 또, 개별 막대의 길이가 특정 값의 범위를 표시한다. 예를들어 월별 최저/최고 기온을 표시할 수 있다.
|
|
2563
|
+
* 데이터포인트 label도 두 값을 동시에 표시한다.<br/>
|
|
2526
2564
|
* X축 타입이 설정되지 않은 경우, 이 시리즈를 기준으로 생성되는 축은 [category](/config/config/xAxis/category)이다.<br/>
|
|
2527
2565
|
*
|
|
2528
2566
|
* {@page data}는 아래 형식들로 전달할 수 있다.<br/>
|
|
@@ -4649,6 +4687,12 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
4649
4687
|
*
|
|
4650
4688
|
*/
|
|
4651
4689
|
pointHovering?: PointHoveringOptions;
|
|
4690
|
+
/**
|
|
4691
|
+
* div의 크기가 변경될 때, 차트를 해당 크기에 맞게 조정할지 여부
|
|
4692
|
+
*
|
|
4693
|
+
* @default false
|
|
4694
|
+
*/
|
|
4695
|
+
domResize?: boolean;
|
|
4652
4696
|
}
|
|
4653
4697
|
/**
|
|
4654
4698
|
*/
|
|
@@ -6148,7 +6192,7 @@ interface IPlottingItem {
|
|
|
6148
6192
|
prepareAfter(): void;
|
|
6149
6193
|
collectValues(axis: IAxis, vals: number[]): void;
|
|
6150
6194
|
collectRanges(vals: number[]): void;
|
|
6151
|
-
|
|
6195
|
+
prepareReferents(axis: IAxis): void;
|
|
6152
6196
|
seriesChanged(): boolean;
|
|
6153
6197
|
connectable(axis: IAxis): boolean;
|
|
6154
6198
|
}
|
|
@@ -6173,6 +6217,7 @@ interface IPlottingItem {
|
|
|
6173
6217
|
declare class Trendline extends ChartItem<TrendlineOptions> {
|
|
6174
6218
|
series: Series;
|
|
6175
6219
|
static defaults: TrendlineOptions;
|
|
6220
|
+
_polar: boolean;
|
|
6176
6221
|
_points: {
|
|
6177
6222
|
x: number;
|
|
6178
6223
|
y: number;
|
|
@@ -6236,6 +6281,11 @@ interface ISeries extends IPlottingItem {
|
|
|
6236
6281
|
followPointer(): boolean;
|
|
6237
6282
|
isMarker(): boolean;
|
|
6238
6283
|
}
|
|
6284
|
+
declare class DeleteAnimation extends RcAnimation {
|
|
6285
|
+
points: DataPointCollection;
|
|
6286
|
+
constructor(points: DataPointCollection);
|
|
6287
|
+
protected _doUpdate(rate: number): boolean;
|
|
6288
|
+
}
|
|
6239
6289
|
/**
|
|
6240
6290
|
* 차트 시리즈 모델들의 기반 클래스.<br/>
|
|
6241
6291
|
* 시리즈는 {@page data}로 지정된 값들을 데이터포인트로 표시하는 차트의 핵심 구성 요소이며,
|
|
@@ -6294,6 +6344,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
6294
6344
|
* palette color indices
|
|
6295
6345
|
*/
|
|
6296
6346
|
_paletteColors: number[];
|
|
6347
|
+
private _deleteAni;
|
|
6297
6348
|
_labelPos: PointLabelPosition;
|
|
6298
6349
|
_labelPosCallback: (p: DataPointCallbackArgs) => PointLabelPosition;
|
|
6299
6350
|
_labelOff: number;
|
|
@@ -6405,6 +6456,9 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
6405
6456
|
initPoints(source: any[]): DataPoint[];
|
|
6406
6457
|
private $_getXStart;
|
|
6407
6458
|
private $_getXStep;
|
|
6459
|
+
protected _buildVisPoints(points: DataPoint[]): DataPoint[];
|
|
6460
|
+
protected _prepareRunPoints(xAxis: IAxis, yAxis: IAxis): void;
|
|
6461
|
+
protected _dataSourceChanged(): void;
|
|
6408
6462
|
_prepareRender(): void;
|
|
6409
6463
|
prepareAfter(): void;
|
|
6410
6464
|
collectCategories(axis: IAxis): string[];
|
|
@@ -6421,8 +6475,8 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
6421
6475
|
max: number;
|
|
6422
6476
|
};
|
|
6423
6477
|
private $_prepareViewRanges;
|
|
6424
|
-
|
|
6425
|
-
|
|
6478
|
+
prepareReferents(axis: IAxis): void;
|
|
6479
|
+
refer(other: Series, axis: IAxis): void;
|
|
6426
6480
|
getLegendSources(list: ILegendSource[]): void;
|
|
6427
6481
|
getLabelPos(labels: DataPointLabel): PointLabelPosition;
|
|
6428
6482
|
protected _getLabelAutoPos(labels: DataPointLabel, pos: PointLabelPosition): PointLabelPosition;
|
|
@@ -6457,6 +6511,10 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
6457
6511
|
* @returns prop로 지정한 데이터포인트 값.
|
|
6458
6512
|
*/
|
|
6459
6513
|
getValueAt(xValue: any, prop?: string): number;
|
|
6514
|
+
/**
|
|
6515
|
+
* @private
|
|
6516
|
+
*/
|
|
6517
|
+
_dataPointsChanged(): void;
|
|
6460
6518
|
/**
|
|
6461
6519
|
* 데이터포인터의 값들을 변경한다.<br/>
|
|
6462
6520
|
* <b>p</b> 매개변수에 데이터포인트 대신 값을 지정하면,
|
|
@@ -6507,6 +6565,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
6507
6565
|
* @returns 실제 추가된 데이터포인트 객체 배열.
|
|
6508
6566
|
*/
|
|
6509
6567
|
addPoints(source: any[]): DataPoint[];
|
|
6568
|
+
protected _needDeleteAnimation(): boolean;
|
|
6510
6569
|
/**
|
|
6511
6570
|
* 데이터포인트를 제거한다.<br/>
|
|
6512
6571
|
* <b>p</b> 매개변수에 데이터포인트 대신 값을 지정하면,
|
|
@@ -6548,6 +6607,9 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
6548
6607
|
protected _setViewRange(p: DataPoint, axis: 'x' | 'y' | 'z'): void;
|
|
6549
6608
|
_defViewRangeValue(): 'x' | 'y' | 'z';
|
|
6550
6609
|
protected _canSort(): boolean;
|
|
6610
|
+
$_setDeleteAni(ani: DeleteAnimation): void;
|
|
6611
|
+
$_stopDeleteAni(ani: DeleteAnimation): void;
|
|
6612
|
+
isDeleting(): boolean;
|
|
6551
6613
|
}
|
|
6552
6614
|
type PlottingItem = Series | SeriesGroup;
|
|
6553
6615
|
/**
|
|
@@ -6575,6 +6637,7 @@ declare class PlottingItemCollection extends ChartItemCollection<PlottingItem> {
|
|
|
6575
6637
|
getSeries(name: string): Series;
|
|
6576
6638
|
getVisibleSeries(): Series[];
|
|
6577
6639
|
getPaneSeries(row: number, col: number): Series[];
|
|
6640
|
+
seriesByType(type: string): Series<SeriesOptions> | SeriesGroup<Series<SeriesOptions>, SeriesGroupOptions<SeriesOptions>>;
|
|
6578
6641
|
seriesByPoint(point: DataPoint): Series;
|
|
6579
6642
|
getLegendSources(): ILegendSource[];
|
|
6580
6643
|
canPolar(): boolean;
|
|
@@ -6613,7 +6676,7 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
|
|
|
6613
6676
|
}
|
|
6614
6677
|
declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
|
|
6615
6678
|
_calcedColor: string;
|
|
6616
|
-
_legendMarker
|
|
6679
|
+
private _legendMarker;
|
|
6617
6680
|
legendMarker(): RcElement;
|
|
6618
6681
|
setLegendMarker(elt: RcElement): void;
|
|
6619
6682
|
legendColor(): string;
|
|
@@ -6621,6 +6684,7 @@ declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
|
|
|
6621
6684
|
styleLegendMarker(marker: RcElement): void;
|
|
6622
6685
|
isEmpty(): boolean;
|
|
6623
6686
|
initPrev(axis: IAxis, prev: any): void;
|
|
6687
|
+
getParam(param: string): any;
|
|
6624
6688
|
}
|
|
6625
6689
|
declare class WidgetSeriesConnector extends ChartItem<WidgetSeriesConnectorOptions> {
|
|
6626
6690
|
static defaults: WidgetSeriesConnectorOptions;
|
|
@@ -6642,18 +6706,31 @@ declare abstract class WidgetSeriesLabel<OP extends WidgetSeriesLabelOptions = W
|
|
|
6642
6706
|
getAlign(): number;
|
|
6643
6707
|
protected _doApply(options: WidgetSeriesLabelOptions): void;
|
|
6644
6708
|
}
|
|
6645
|
-
declare
|
|
6646
|
-
static readonly
|
|
6709
|
+
declare class OthersGroup extends ChartItem<OthersGroupOptions> {
|
|
6710
|
+
private static readonly DEF_COUNT;
|
|
6711
|
+
static defaults: OthersGroupOptions;
|
|
6712
|
+
private _minDim;
|
|
6713
|
+
private _save;
|
|
6714
|
+
private _dirty;
|
|
6715
|
+
calculate(points: DataPoint[]): DataPoint[];
|
|
6716
|
+
isDirty(): boolean;
|
|
6717
|
+
protected _doApply(options: OthersGroupOptions): void;
|
|
6718
|
+
}
|
|
6719
|
+
declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = WidgetSeriesOptions> extends Series<OP> {
|
|
6720
|
+
static readonly DEF_CENTER = "50%";
|
|
6647
6721
|
static defaults: WidgetSeriesOptions;
|
|
6648
6722
|
private _subLabel;
|
|
6649
6723
|
private _centerX;
|
|
6650
6724
|
private _centerY;
|
|
6651
6725
|
private _centerXDim;
|
|
6652
6726
|
private _centerYDim;
|
|
6727
|
+
private _othersGroup;
|
|
6728
|
+
private _groupedPoints;
|
|
6653
6729
|
protected _doInitChildren(op: {
|
|
6654
6730
|
[child: string]: ChartItemOptions;
|
|
6655
6731
|
}): void;
|
|
6656
6732
|
get subLabel(): WidgetSeriesLabel;
|
|
6733
|
+
get othersGroup(): OthersGroup;
|
|
6657
6734
|
getCenter(plotWidth: number, plotHeight: number): Point;
|
|
6658
6735
|
protected _getLabelAutoPos(labels: WidgetSeriesLabel, pos: PointLabelPosition): PointLabelPosition;
|
|
6659
6736
|
needAxes(): boolean;
|
|
@@ -6663,6 +6740,10 @@ declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = {}> extends
|
|
|
6663
6740
|
protected _doApply(options: WidgetSeriesOptions): void;
|
|
6664
6741
|
canMinPadding(axis: IAxis, min: number): boolean;
|
|
6665
6742
|
canMaxPadding(axis: IAxis, max: number): boolean;
|
|
6743
|
+
protected _dataSourceChanged(): void;
|
|
6744
|
+
contains(p: DataPoint): boolean;
|
|
6745
|
+
protected _buildVisPoints(points: DataPoint[]): DataPoint[];
|
|
6746
|
+
protected abstract _createOthersPoint(source: any, points: WidgetSeriesPoint[]): WidgetSeriesPoint;
|
|
6666
6747
|
}
|
|
6667
6748
|
/**
|
|
6668
6749
|
* 직교 좌표계가 표시된 경우, plot area 영역을 기준으로 size, centerX, centerY가 적용된다.<br/>
|
|
@@ -6760,7 +6841,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
|
|
|
6760
6841
|
isLastVisible(series: ISeries): boolean;
|
|
6761
6842
|
collectValues(axis: IAxis, vals: number[]): void;
|
|
6762
6843
|
collectRanges(vals: number[]): void;
|
|
6763
|
-
|
|
6844
|
+
prepareReferents(axis: IAxis): void;
|
|
6764
6845
|
collectCategories(axis: IAxis): string[];
|
|
6765
6846
|
getLegendSources(list: ILegendSource[]): void;
|
|
6766
6847
|
isBased(axis: IAxis): boolean;
|
|
@@ -6817,6 +6898,7 @@ declare abstract class MarkerSeries<OP extends MarkerSeriesOptions = MarkerSerie
|
|
|
6817
6898
|
* //[x, y]
|
|
6818
6899
|
*/
|
|
6819
6900
|
declare abstract class DataPoint {
|
|
6901
|
+
static getSum(points: DataPoint[]): number;
|
|
6820
6902
|
/**
|
|
6821
6903
|
* 인덱스
|
|
6822
6904
|
*/
|
|
@@ -6854,6 +6936,7 @@ declare abstract class DataPoint {
|
|
|
6854
6936
|
yRate: number;
|
|
6855
6937
|
/**
|
|
6856
6938
|
* 표시 여부.
|
|
6939
|
+
* 감추려면 명시적인 false로 지정해야 한다.
|
|
6857
6940
|
*/
|
|
6858
6941
|
visible: boolean;
|
|
6859
6942
|
color: string;
|
|
@@ -6889,6 +6972,8 @@ declare abstract class DataPoint {
|
|
|
6889
6972
|
getPointIcon(index: number): string;
|
|
6890
6973
|
swap(): void;
|
|
6891
6974
|
getParam(param: string): any;
|
|
6975
|
+
_setDeleted(): void;
|
|
6976
|
+
_isDeleted(): any;
|
|
6892
6977
|
updateValues(series: ISeries, values: any): any;
|
|
6893
6978
|
initValues(): void;
|
|
6894
6979
|
/**
|
|
@@ -6916,6 +7001,7 @@ declare class DataPointCollection {
|
|
|
6916
7001
|
protected _owner: ISeries;
|
|
6917
7002
|
private _points;
|
|
6918
7003
|
constructor(owner: ISeries);
|
|
7004
|
+
get owner(): ISeries;
|
|
6919
7005
|
get count(): number;
|
|
6920
7006
|
isEmpty(): boolean;
|
|
6921
7007
|
get(index: number): DataPoint;
|
|
@@ -6925,10 +7011,14 @@ declare class DataPointCollection {
|
|
|
6925
7011
|
clear(): void;
|
|
6926
7012
|
add(p: DataPoint): void;
|
|
6927
7013
|
remove(p: DataPoint): boolean;
|
|
7014
|
+
/**
|
|
7015
|
+
* 삭제 상태의 데이터포인트들을 제거한다.
|
|
7016
|
+
*/
|
|
7017
|
+
clean(): void;
|
|
6928
7018
|
getProps(prop: string | number): any[];
|
|
6929
7019
|
getCategories(axis: string): any[];
|
|
6930
7020
|
forEach(callback: (p: DataPoint, i?: number) => any): void;
|
|
6931
|
-
|
|
7021
|
+
getRunPoints(xAxis: IAxis, yAxis: IAxis): DataPoint[];
|
|
6932
7022
|
}
|
|
6933
7023
|
/**
|
|
6934
7024
|
* @internal
|
|
@@ -7051,6 +7141,7 @@ interface IAxis {
|
|
|
7051
7141
|
* 값에 따라 크기가 다를 수도 있다.
|
|
7052
7142
|
*/
|
|
7053
7143
|
getUnitLen(length: number, value: number): number;
|
|
7144
|
+
polarOff(): number;
|
|
7054
7145
|
value2Tooltip(value: number): any;
|
|
7055
7146
|
hasBreak(): boolean;
|
|
7056
7147
|
isBreak(pos: number): boolean;
|
|
@@ -7458,7 +7549,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
7458
7549
|
getConnectableSeries(): ISeries[];
|
|
7459
7550
|
collectValues(): void;
|
|
7460
7551
|
collectRanges(): void;
|
|
7461
|
-
|
|
7552
|
+
collectReferentValues(): void;
|
|
7462
7553
|
private $_checkEmpty;
|
|
7463
7554
|
_prepare(): void;
|
|
7464
7555
|
_prepareRender(): void;
|
|
@@ -7475,6 +7566,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
7475
7566
|
*/
|
|
7476
7567
|
abstract getPos(length: number, value: number): number;
|
|
7477
7568
|
abstract getUnitLen(length: number, value: number): number;
|
|
7569
|
+
polarOff(): number;
|
|
7478
7570
|
getLabelLength(length: number, value: number): number;
|
|
7479
7571
|
getValue(value: any): number;
|
|
7480
7572
|
incStep(value: number, step: any): number;
|
|
@@ -7530,7 +7622,7 @@ declare class AxisCollection extends ChartItemCollection<Axis> {
|
|
|
7530
7622
|
prepare(): void;
|
|
7531
7623
|
collectValues(): void;
|
|
7532
7624
|
collectRanges(): void;
|
|
7533
|
-
|
|
7625
|
+
collectReferentValues(): void;
|
|
7534
7626
|
prepareRender(): void;
|
|
7535
7627
|
afterRender(): void;
|
|
7536
7628
|
/** @internal */
|
|
@@ -8470,6 +8562,7 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
8470
8562
|
*/
|
|
8471
8563
|
unit?: string;
|
|
8472
8564
|
/**
|
|
8565
|
+
* @internal
|
|
8473
8566
|
* 축에 포함된 시리즈들 툴팁의 위쪽에 표시되는 텍스트 템플릿.<br/>
|
|
8474
8567
|
*
|
|
8475
8568
|
* tooltipHeader
|
|
@@ -8483,12 +8576,14 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
8483
8576
|
*/
|
|
8484
8577
|
tooltipHeader?: string;
|
|
8485
8578
|
/**
|
|
8579
|
+
* @internal
|
|
8486
8580
|
* 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.
|
|
8487
8581
|
*
|
|
8488
8582
|
* @default '${series}:<b> ${yValue}</b>'
|
|
8489
8583
|
*/
|
|
8490
8584
|
tooltipRow?: string;
|
|
8491
8585
|
/**
|
|
8586
|
+
* @internal
|
|
8492
8587
|
* 축에 포함된 시리즈들 툴팁의 아래쪽에 표시되는 텍스트 템플릿.
|
|
8493
8588
|
*
|
|
8494
8589
|
*/
|
|
@@ -10765,6 +10860,7 @@ interface IChart {
|
|
|
10765
10860
|
isSplitted(): boolean;
|
|
10766
10861
|
animatable(): boolean;
|
|
10767
10862
|
loadAnimatable(): boolean;
|
|
10863
|
+
_needAxes(): boolean;
|
|
10768
10864
|
seriesByName(series: string): Series;
|
|
10769
10865
|
axisByName(axis: string): Axis;
|
|
10770
10866
|
getAxes(dir: SectionDir, visibleOnly: boolean): Axis[];
|
|
@@ -10931,6 +11027,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
|
|
|
10931
11027
|
isSplitted(): boolean;
|
|
10932
11028
|
isEmpty(visibleOnly: boolean): boolean;
|
|
10933
11029
|
seriesByName(series: string): Series;
|
|
11030
|
+
seriesByType(type: string): Series | SeriesGroup;
|
|
10934
11031
|
seriesAt(index: number): Series | SeriesGroup;
|
|
10935
11032
|
seriesByPoint(point: DataPoint): Series;
|
|
10936
11033
|
gaugeByName(gauge: string): Gauge;
|
|
@@ -11080,13 +11177,22 @@ declare class AnnotationCollection extends ChartItemCollection<Annotation> {
|
|
|
11080
11177
|
private $_loadItem;
|
|
11081
11178
|
}
|
|
11082
11179
|
|
|
11180
|
+
/**
|
|
11181
|
+
* 차트 생성 이후 호출되는 콜백의 매개변수로 사용된다.
|
|
11182
|
+
*/
|
|
11183
|
+
interface LoadCallbackArgs {
|
|
11184
|
+
/**
|
|
11185
|
+
* RealChart의 공개 {@page api.Chart} 모델
|
|
11186
|
+
*/
|
|
11187
|
+
chart: Chart;
|
|
11188
|
+
}
|
|
11083
11189
|
/**
|
|
11084
11190
|
* RealChart의 공개 차트 모델.<br/>
|
|
11085
11191
|
*/
|
|
11086
11192
|
declare class Chart {
|
|
11087
11193
|
_obj: ChartObject;
|
|
11088
11194
|
private _modelCallback;
|
|
11089
|
-
_loadCallback: () => void;
|
|
11195
|
+
_loadCallback: (args: LoadCallbackArgs) => void;
|
|
11090
11196
|
private _loaded;
|
|
11091
11197
|
/**
|
|
11092
11198
|
* @internal
|
|
@@ -11224,6 +11330,13 @@ declare class Chart {
|
|
|
11224
11330
|
* @returns 시리즈 객체
|
|
11225
11331
|
*/
|
|
11226
11332
|
getSeries(name: string | number): Series | SeriesGroup;
|
|
11333
|
+
/**
|
|
11334
|
+
* 지정한 type에 해당하는 첫번째 시리즈나 시리즈그룹 객체를 리턴한다.<br/>
|
|
11335
|
+
*
|
|
11336
|
+
* @param type 시리즈 타입
|
|
11337
|
+
* @returns 시리즈 객체
|
|
11338
|
+
*/
|
|
11339
|
+
seriesByType(type: string): Series | SeriesGroup;
|
|
11227
11340
|
/**
|
|
11228
11341
|
* 게이지 이름에 해당하는 게이지 객체를 리턴한다.
|
|
11229
11342
|
*
|
|
@@ -11245,7 +11358,7 @@ declare class Chart {
|
|
|
11245
11358
|
*
|
|
11246
11359
|
* @param config 차트 설정 정보
|
|
11247
11360
|
*/
|
|
11248
|
-
load(config: ChartConfiguration, loadAnimation?: boolean, callback?: () => void): Chart;
|
|
11361
|
+
load(config: ChartConfiguration, loadAnimation?: boolean, callback?: (args: LoadCallbackArgs) => void): Chart;
|
|
11249
11362
|
/**
|
|
11250
11363
|
* {@page load}와 달리 기존 모델을 유지하면서 차트 설정 일부를 반영한다.<br/>
|
|
11251
11364
|
*
|
|
@@ -11494,7 +11607,7 @@ declare class Globals {
|
|
|
11494
11607
|
* @returns 생성된 차트 객체
|
|
11495
11608
|
* @see {@link createData}
|
|
11496
11609
|
*/
|
|
11497
|
-
static createChart(doc: Document, container: string | HTMLDivElement, config: ChartConfiguration, animate?: boolean, callback?: () => void): Chart;
|
|
11610
|
+
static createChart(doc: Document, container: string | HTMLDivElement, config: ChartConfiguration, animate?: boolean, callback?: (args: LoadCallbackArgs) => void): Chart;
|
|
11498
11611
|
/**
|
|
11499
11612
|
* 차트 시리즈에 연결할 수 있는 데이터.<br/>
|
|
11500
11613
|
* 저장되는 행은 json, array 또는 단일값일 수 있다.
|
|
@@ -12607,6 +12720,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
12607
12720
|
_type(): string;
|
|
12608
12721
|
unitPad(): number;
|
|
12609
12722
|
continuous(): boolean;
|
|
12723
|
+
polarOff(): number;
|
|
12610
12724
|
protected _createGrid(): CategoryAxisGrid;
|
|
12611
12725
|
protected _createTickModel(): CategoryAxisTick;
|
|
12612
12726
|
protected _createLabel(): CategoryAxisLabel;
|
|
@@ -12991,7 +13105,7 @@ declare class BellCurveSeries extends AreaSeries<BellCurveSeriesOptions> {
|
|
|
12991
13105
|
protected _createPoint(source: any): BellCurveSeriesPoint;
|
|
12992
13106
|
protected _doLoadData(src: any): any[];
|
|
12993
13107
|
_referOtherSeries(series: Series): boolean;
|
|
12994
|
-
|
|
13108
|
+
refer(other: Series, axis: IAxis): void;
|
|
12995
13109
|
private _loadTable;
|
|
12996
13110
|
}
|
|
12997
13111
|
|
|
@@ -13185,7 +13299,7 @@ declare class DumbbellSeries extends LowRangedSeries<DumbbellSeriesOptions> {
|
|
|
13185
13299
|
pointLabelCount(): number;
|
|
13186
13300
|
getLabelOff(off: number): number;
|
|
13187
13301
|
protected _createPoint(source: any): DataPoint;
|
|
13188
|
-
|
|
13302
|
+
prepareAfter(): void;
|
|
13189
13303
|
}
|
|
13190
13304
|
|
|
13191
13305
|
/**
|
|
@@ -13220,6 +13334,9 @@ declare class ErrorBarSeries extends LowRangedSeries<ErrorBarSeriesOptions> {
|
|
|
13220
13334
|
protected _getBottomValue(p: RangedPoint): number;
|
|
13221
13335
|
}
|
|
13222
13336
|
|
|
13337
|
+
declare class FunnelSeriesPoint extends WidgetSeriesPoint {
|
|
13338
|
+
height: number;
|
|
13339
|
+
}
|
|
13223
13340
|
declare class FunnelSeriesLabel extends WidgetSeriesLabel<FunnelSeriesLabelOptions> {
|
|
13224
13341
|
static readonly OUTSIDE_DIST = 25;
|
|
13225
13342
|
static readonly ENDED_DIST = 10;
|
|
@@ -13246,6 +13363,7 @@ declare class FunnelSeries extends WidgetSeries<FunnelSeriesOptions> {
|
|
|
13246
13363
|
get pointLabel(): FunnelSeriesLabel;
|
|
13247
13364
|
protected _createLabel(chart: IChart): FunnelSeriesLabel;
|
|
13248
13365
|
protected _createPoint(source: any): DataPoint;
|
|
13366
|
+
protected _createOthersPoint(source: any, points: FunnelSeriesPoint[]): FunnelSeriesPoint;
|
|
13249
13367
|
protected _doApply(options: FunnelSeriesOptions): void;
|
|
13250
13368
|
}
|
|
13251
13369
|
|
|
@@ -13287,7 +13405,7 @@ declare class LollipopSeries extends BasedSeries<LollipopSeriesOptions> {
|
|
|
13287
13405
|
canCategorized(): boolean;
|
|
13288
13406
|
getLabelOff(off: number): number;
|
|
13289
13407
|
protected _createPoint(source: any): DataPoint;
|
|
13290
|
-
|
|
13408
|
+
prepareAfter(): void;
|
|
13291
13409
|
}
|
|
13292
13410
|
|
|
13293
13411
|
/**
|
|
@@ -13314,7 +13432,7 @@ declare class ParetoSeries extends LineSeriesBase<ParetoSeriesOptions> {
|
|
|
13314
13432
|
getLineType(): LineType;
|
|
13315
13433
|
protected _createPoint(source: any): ParetoSeriesPoint;
|
|
13316
13434
|
_referOtherSeries(series: Series): boolean;
|
|
13317
|
-
|
|
13435
|
+
refer(other: Series, axis: IAxis): void;
|
|
13318
13436
|
}
|
|
13319
13437
|
|
|
13320
13438
|
/**
|
|
@@ -13370,6 +13488,7 @@ declare class PieSeries extends RadialSeries<PieSeriesOptions> {
|
|
|
13370
13488
|
get pointLabel(): PieSeriesLabel;
|
|
13371
13489
|
protected _createLabel(chart: IChart): PieSeriesLabel;
|
|
13372
13490
|
protected _createPoint(source: any): PieSeriesPoint;
|
|
13491
|
+
protected _createOthersPoint(source: any, points: PieSeriesPoint[]): PieSeriesPoint;
|
|
13373
13492
|
protected _doApply(options: PieSeriesOptions): void;
|
|
13374
13493
|
protected _doPrepareRender(): void;
|
|
13375
13494
|
}
|
|
@@ -13422,8 +13541,14 @@ declare class ScatterSeries extends MarkerSeries<ScatterSeriesOptions> {
|
|
|
13422
13541
|
declare class WaterfallSeriesPoint extends DataPoint {
|
|
13423
13542
|
_isSum: boolean;
|
|
13424
13543
|
_isMid: boolean;
|
|
13425
|
-
|
|
13426
|
-
|
|
13544
|
+
/**
|
|
13545
|
+
* 시작값
|
|
13546
|
+
*/
|
|
13547
|
+
from: number;
|
|
13548
|
+
/**
|
|
13549
|
+
* 끝값
|
|
13550
|
+
*/
|
|
13551
|
+
to: number;
|
|
13427
13552
|
save: number;
|
|
13428
13553
|
parse(series: WaterfallSeries): void;
|
|
13429
13554
|
getPointLabel(index: number): any;
|
|
@@ -13435,12 +13560,13 @@ declare class WaterfallSeriesPoint extends DataPoint {
|
|
|
13435
13560
|
*/
|
|
13436
13561
|
declare class WaterfallSeries extends RangedSeries<WaterfallSeriesOptions> {
|
|
13437
13562
|
static readonly type = "waterfall";
|
|
13563
|
+
static defaults: WaterfallSeriesOptions;
|
|
13438
13564
|
canCategorized(): boolean;
|
|
13439
13565
|
getBaseValue(axis: IAxis): number;
|
|
13440
13566
|
protected _createLabel(chart: IChart): DataPointLabel;
|
|
13441
13567
|
protected _createPoint(source: any): DataPoint;
|
|
13442
13568
|
protected _createLegendMarker(doc: Document, size: number): RcElement;
|
|
13443
|
-
|
|
13569
|
+
_doPrepareRender(): void;
|
|
13444
13570
|
protected _getBottomValue(p: WaterfallSeriesPoint): number;
|
|
13445
13571
|
}
|
|
13446
13572
|
|
|
@@ -13781,4 +13907,4 @@ declare const configure: typeof Globals.configure;
|
|
|
13781
13907
|
declare const createChart: typeof Globals.createChart;
|
|
13782
13908
|
declare const createData: typeof Globals.createData;
|
|
13783
13909
|
|
|
13784
|
-
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, ChartPoint, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, IAxis, 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, ZoomCallbackArgs, 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 };
|
|
13910
|
+
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, ChartPoint, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, IAxis, 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, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, 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, ZoomCallbackArgs, 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 };
|