realchart 1.4.25 → 1.4.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gauge.js +2 -2
- package/gauge.mjs +2 -2
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +2 -2
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +1 -1
- package/ie/realchart-style.ie.css +37 -0
- package/ie/split.ie.js +1 -1
- package/ie/treemap.ie.js +1 -1
- package/ie/vector.ie.js +1 -1
- package/ie/wordcloud.ie.js +1 -1
- package/index.d.ts +316 -11
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +1 -1
- package/pictogram.mjs +1 -1
- package/realchart-style.css +19 -0
- package/split.js +1 -1
- package/split.mjs +1 -1
- package/treemap.js +1 -1
- package/treemap.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/wordcloud.js +1 -1
- package/wordcloud.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -1174,6 +1174,10 @@ declare class SvgShapes {
|
|
|
1174
1174
|
(rd: number): (string | number)[];
|
|
1175
1175
|
};
|
|
1176
1176
|
static line(x1: number, y1: number, x2: number, y2: number): PathValue[];
|
|
1177
|
+
static arrowParts(x1: number, y1: number, x2: number, y2: number, headLen?: number): {
|
|
1178
|
+
body: PathValue[];
|
|
1179
|
+
head: PathValue[];
|
|
1180
|
+
};
|
|
1177
1181
|
static polygon(...pts: number[]): PathValue[];
|
|
1178
1182
|
static box(x1: number, y1: number, x2: number, y2: number): PathValue[];
|
|
1179
1183
|
static rect(r: IRect): PathValue[];
|
|
@@ -1262,6 +1266,8 @@ type PointLabelPosition = typeof _PointLabelPosition[keyof typeof _PointLabelPos
|
|
|
1262
1266
|
* }
|
|
1263
1267
|
* };
|
|
1264
1268
|
* ```
|
|
1269
|
+
*
|
|
1270
|
+
* @css 'rct-point-label'
|
|
1265
1271
|
*/
|
|
1266
1272
|
interface DataPointLabelOptions extends IconedTextOptions {
|
|
1267
1273
|
/**
|
|
@@ -1402,6 +1408,8 @@ interface StackLabelCallbackArgs {
|
|
|
1402
1408
|
* }]
|
|
1403
1409
|
* };
|
|
1404
1410
|
* ```
|
|
1411
|
+
*
|
|
1412
|
+
* @css 'rct-stack-label'
|
|
1405
1413
|
*/
|
|
1406
1414
|
interface StackLabelOptions extends IconedTextOptions {
|
|
1407
1415
|
/**
|
|
@@ -1490,6 +1498,8 @@ interface TrendlineAreaOptions extends ChartItemOptions {
|
|
|
1490
1498
|
}
|
|
1491
1499
|
/**
|
|
1492
1500
|
* 추세선 라벨 옵션.<br/>
|
|
1501
|
+
*
|
|
1502
|
+
* @css 'rct-series-trendline-label'
|
|
1493
1503
|
*/
|
|
1494
1504
|
interface TrendlineLabelOptions extends Omit<IconedTextOptions, 'numberFormat' | 'numberSymbols'> {
|
|
1495
1505
|
/**
|
|
@@ -1602,6 +1612,7 @@ type TrendLineType = typeof _TrendLineType[keyof typeof _TrendLineType];
|
|
|
1602
1612
|
* {@link https://realchart.co.kr/config/config/base/series series}의 'trendLine' 항목으로 설정한다.<br/>
|
|
1603
1613
|
* polar 차트에서는 {@link variableArea}, {@link fixedArea} 속성들은 지원되지 않는다.
|
|
1604
1614
|
*
|
|
1615
|
+
* @css 'rct-series-trendline'
|
|
1605
1616
|
* @enum
|
|
1606
1617
|
*/
|
|
1607
1618
|
interface TrendlineOptions extends ChartItemOptions {
|
|
@@ -2635,6 +2646,7 @@ declare const BarRangeSeriesType = "barrange";
|
|
|
2635
2646
|
* |{@link lowField}|속성 값, 또는 'low' 속성 값이 low 값이 dl된다.|
|
|
2636
2647
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
2637
2648
|
*
|
|
2649
|
+
* @css 'rct-barrange-series'
|
|
2638
2650
|
*/
|
|
2639
2651
|
interface BarRangeSeriesOptions extends LowRangedSeriesOptions {
|
|
2640
2652
|
/**
|
|
@@ -2837,6 +2849,7 @@ type LineStepDirection = typeof _LineStepDirection[keyof typeof _LineStepDirecti
|
|
|
2837
2849
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
2838
2850
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
2839
2851
|
*
|
|
2852
|
+
* @css 'rct-line-series'
|
|
2840
2853
|
*/
|
|
2841
2854
|
interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
2842
2855
|
/** @fixed line */
|
|
@@ -2917,6 +2930,7 @@ declare const SplineSeriesType = "spline";
|
|
|
2917
2930
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
2918
2931
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
2919
2932
|
*
|
|
2933
|
+
* @css 'rct-line-series'
|
|
2920
2934
|
*/
|
|
2921
2935
|
interface SplineSeriesOptions extends LineSeriesOptions {
|
|
2922
2936
|
/** @dummy */
|
|
@@ -2951,6 +2965,7 @@ interface SplineSeriesOptions extends LineSeriesOptions {
|
|
|
2951
2965
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
2952
2966
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
2953
2967
|
*
|
|
2968
|
+
* @css 'rct-area-series'
|
|
2954
2969
|
*/
|
|
2955
2970
|
interface AreaSeriesOptions extends LineSeriesOptions {
|
|
2956
2971
|
/** @fixed area */
|
|
@@ -3001,6 +3016,7 @@ declare const BellCurveSeriesType = "bellcurve";
|
|
|
3001
3016
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3002
3017
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3003
3018
|
*
|
|
3019
|
+
* @css 'rct-bellcurve-series'
|
|
3004
3020
|
*/
|
|
3005
3021
|
interface BellCurveSeriesOptions extends AreaSeriesOptions {
|
|
3006
3022
|
/** @dummy */
|
|
@@ -3054,6 +3070,7 @@ declare const BoxPlotSeriesType = "boxplot";
|
|
|
3054
3070
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3055
3071
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3056
3072
|
*
|
|
3073
|
+
* @css 'rct-boxplot-series'
|
|
3057
3074
|
*/
|
|
3058
3075
|
interface BoxPlotSeriesOptions extends LowRangedSeriesOptions {
|
|
3059
3076
|
/**
|
|
@@ -3241,6 +3258,7 @@ declare const BubbleSeriesType = "bubble";
|
|
|
3241
3258
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3242
3259
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3243
3260
|
*
|
|
3261
|
+
* @css 'rct-bubble-series'
|
|
3244
3262
|
*/
|
|
3245
3263
|
interface BubbleSeriesOptions extends MarkerSeriesOptions {
|
|
3246
3264
|
/**
|
|
@@ -3337,6 +3355,7 @@ interface BumpSeriesGroupOptions extends SeriesGroupOptions<LineSeriesMarkerOpti
|
|
|
3337
3355
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3338
3356
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3339
3357
|
*
|
|
3358
|
+
* @css 'rct-candlestick-series'
|
|
3340
3359
|
*/
|
|
3341
3360
|
interface CandlestickSeriesOptions extends LowRangedSeriesOptions {
|
|
3342
3361
|
/** @fixed candlestick */
|
|
@@ -3406,6 +3425,7 @@ declare const CircleBarSeriesType = "circlebar";
|
|
|
3406
3425
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3407
3426
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3408
3427
|
*
|
|
3428
|
+
* @css 'rct-circlebar-series'
|
|
3409
3429
|
*/
|
|
3410
3430
|
interface CircleBarSeriesOptions extends BarSeriesBaseOptions {
|
|
3411
3431
|
/**
|
|
@@ -3468,6 +3488,7 @@ declare const DumbbellSeriesType = "dumbbell";
|
|
|
3468
3488
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3469
3489
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3470
3490
|
*
|
|
3491
|
+
* @css 'rct-dumbbell-series'
|
|
3471
3492
|
*/
|
|
3472
3493
|
interface DumbbellSeriesOptions extends LowRangedSeriesOptions {
|
|
3473
3494
|
/**
|
|
@@ -3507,6 +3528,7 @@ declare const EqualizerSeriesType = "equalizer";
|
|
|
3507
3528
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3508
3529
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3509
3530
|
*
|
|
3531
|
+
* @css 'rct-equalizer-series'
|
|
3510
3532
|
*/
|
|
3511
3533
|
interface EqualizerSeriesOptions extends BasedSeriesOptions {
|
|
3512
3534
|
/**
|
|
@@ -3565,6 +3587,7 @@ declare const ErrorBarSeriesType = "errorbar";
|
|
|
3565
3587
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3566
3588
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3567
3589
|
*
|
|
3590
|
+
* @css 'rct-errorbar-series'
|
|
3568
3591
|
*/
|
|
3569
3592
|
interface ErrorBarSeriesOptions extends LowRangedSeriesOptions {
|
|
3570
3593
|
/**
|
|
@@ -3748,6 +3771,7 @@ declare const ArearangeSeriesType = "arearange";
|
|
|
3748
3771
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3749
3772
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3750
3773
|
*
|
|
3774
|
+
* @css 'rct-arearange-series'
|
|
3751
3775
|
*/
|
|
3752
3776
|
interface AreaRangeSeriesOptions extends LineSeriesBaseOptions {
|
|
3753
3777
|
/**
|
|
@@ -3836,6 +3860,7 @@ declare const LollipopSeriesType = "lollipop";
|
|
|
3836
3860
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3837
3861
|
* |{@link radiusField}|속성 값, 또는 'radius' 속성 값으로 데이터포인트의 radius 크기가 지정된다.|
|
|
3838
3862
|
*
|
|
3863
|
+
* @css 'rct-lollipop-series'
|
|
3839
3864
|
*/
|
|
3840
3865
|
interface LollipopSeriesOptions extends BasedSeriesOptions {
|
|
3841
3866
|
/**
|
|
@@ -3880,6 +3905,7 @@ declare const OhlcSeriesType = "ohlc";
|
|
|
3880
3905
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3881
3906
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3882
3907
|
*
|
|
3908
|
+
* @css 'rct-ohlc-series'
|
|
3883
3909
|
*/
|
|
3884
3910
|
interface OhlcSeriesOptions extends CandlestickSeriesOptions {
|
|
3885
3911
|
/**
|
|
@@ -3911,6 +3937,7 @@ declare const ParetoSeriesType = "pareto";
|
|
|
3911
3937
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
3912
3938
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
3913
3939
|
*
|
|
3940
|
+
* @css 'rct-pareto-series'
|
|
3914
3941
|
*/
|
|
3915
3942
|
interface ParetoSeriesOptions extends LineSeriesBaseOptions {
|
|
3916
3943
|
/**
|
|
@@ -4064,6 +4091,7 @@ declare const PieSeriesType = "pie";
|
|
|
4064
4091
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
4065
4092
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
4066
4093
|
*
|
|
4094
|
+
* @css 'rct-pie-series'
|
|
4067
4095
|
*/
|
|
4068
4096
|
interface PieSeriesOptions extends RadialSeriesOptions {
|
|
4069
4097
|
/**
|
|
@@ -4141,6 +4169,7 @@ declare const ScatterSeriesType = "scatter";
|
|
|
4141
4169
|
* |{@link colorField}|속성 값, 또는 'color' 속성 값으로 데이터포인트의 개별 색상으로 지정된다.|
|
|
4142
4170
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
4143
4171
|
*
|
|
4172
|
+
* @css 'rct-scatter-series'
|
|
4144
4173
|
*/
|
|
4145
4174
|
interface ScatterSeriesOptions extends MarkerSeriesOptions {
|
|
4146
4175
|
/**
|
|
@@ -4207,6 +4236,7 @@ declare const WaterfallSeriesType = "waterfall";
|
|
|
4207
4236
|
* |isMid|이 속성이 true이면, 해당 포인트는 시리즈 시작부터 또는 이전 중간 합계 이후의 누적 합계를 나타낸다.|
|
|
4208
4237
|
* |{@link iconField}|속성 값, 또는 'icon' 속성 값으로 데이터포인트의 개별 이미지가 지정된다.|
|
|
4209
4238
|
*
|
|
4239
|
+
* @css 'rct-waterfall-series'
|
|
4210
4240
|
*/
|
|
4211
4241
|
interface WaterfallSeriesOptions extends ClusterableSeriesOptions {
|
|
4212
4242
|
/**
|
|
@@ -5474,6 +5504,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
5474
5504
|
resizeDelay?: number;
|
|
5475
5505
|
}
|
|
5476
5506
|
/**
|
|
5507
|
+
* @css 'rct-body-image'
|
|
5477
5508
|
*/
|
|
5478
5509
|
interface BackgroundImageOptions extends ChartItemOptions {
|
|
5479
5510
|
/**
|
|
@@ -5498,6 +5529,7 @@ declare const _ZoomType: {
|
|
|
5498
5529
|
/** @dummy */
|
|
5499
5530
|
type ZoomType = typeof _ZoomType[keyof typeof _ZoomType];
|
|
5500
5531
|
/**
|
|
5532
|
+
* @css 'rct-reset-zoom'
|
|
5501
5533
|
*/
|
|
5502
5534
|
interface ZoomButtonOptions extends ChartItemOptions {
|
|
5503
5535
|
/**
|
|
@@ -5511,6 +5543,13 @@ interface ZoomButtonOptions extends ChartItemOptions {
|
|
|
5511
5543
|
visible?: boolean;
|
|
5512
5544
|
}
|
|
5513
5545
|
/**
|
|
5546
|
+
* polar {@link innerRadius} 도넛 구멍 내부 텍스트 설정 옵션.<br/>
|
|
5547
|
+
* @css 'rct-polar-body-inner'
|
|
5548
|
+
*/
|
|
5549
|
+
interface PolarInnerTextOptions extends IconedTextOptions {
|
|
5550
|
+
}
|
|
5551
|
+
/**
|
|
5552
|
+
* @css 'rct-empty-view'
|
|
5514
5553
|
*/
|
|
5515
5554
|
interface EmptyViewOptions extends ChartTextOptions {
|
|
5516
5555
|
/**
|
|
@@ -5594,6 +5633,8 @@ interface BodyDepthLineOptions extends ChartItemOptions {
|
|
|
5594
5633
|
}
|
|
5595
5634
|
/**
|
|
5596
5635
|
* {@link BodyDepth.depth depth}가 지정된 body 영역의 양 축 방향에 표시되는 side panel 설정 옵션.<br/>
|
|
5636
|
+
*
|
|
5637
|
+
* @css 'rct-body-depth-side'
|
|
5597
5638
|
*/
|
|
5598
5639
|
interface BodyDepthSideOptions extends ChartItemOptions {
|
|
5599
5640
|
/**
|
|
@@ -5613,6 +5654,8 @@ interface BodyDepthSideOptions extends ChartItemOptions {
|
|
|
5613
5654
|
* body 깊이 설정 옵션.<br/>
|
|
5614
5655
|
* x 축이고 첫번째 연결된 시리즈가 depth가 설정된 { 'bar'} 시리즈를 표시할 때, 축 깊이를 설정한다.<br/>
|
|
5615
5656
|
* 차트나 분할 pane에 연결된 첫번째 x축일 때만 의미가 있다.
|
|
5657
|
+
*
|
|
5658
|
+
* @css 'rct-body-depth'
|
|
5616
5659
|
*/
|
|
5617
5660
|
interface BodyDepthOptions extends ChartItemOptions {
|
|
5618
5661
|
/**
|
|
@@ -5663,6 +5706,21 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
5663
5706
|
* @default '45%'
|
|
5664
5707
|
*/
|
|
5665
5708
|
radius?: PercentSize;
|
|
5709
|
+
/**
|
|
5710
|
+
* {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 플롯 영역의 안쪽 반지름.<br/>
|
|
5711
|
+
* 0보다 큰 값을 지정하면 {@link radius}와 함께 도넛 형태의 polar 플롯 영역이 된다.<br/>
|
|
5712
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie}의 {@link innerRadius}와 같이, 바깥 {@link radius}에 대한 상대 크기(%)나 픽셀 수로 지정할 수 있다.<br/>
|
|
5713
|
+
* y축 최솟값은 이 반지름 위치에 매핑된다.
|
|
5714
|
+
*
|
|
5715
|
+
* @default 0
|
|
5716
|
+
*/
|
|
5717
|
+
innerRadius?: PercentSize;
|
|
5718
|
+
/**
|
|
5719
|
+
* {@link innerRadius}가 0보다 클 때, polar 플롯 중앙(도넛 구멍)에 표시되는 텍스트.<br/>
|
|
5720
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie}의 {@link innerText}와 동일한 형식이다.<br/>
|
|
5721
|
+
* 기본 클래스 selector는 <b>'rct-polar-body-inner'</b>이다.
|
|
5722
|
+
*/
|
|
5723
|
+
innerText?: PolarInnerTextOptions;
|
|
5666
5724
|
/**
|
|
5667
5725
|
* {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 중심 x 좌표.<br/>
|
|
5668
5726
|
*
|
|
@@ -5720,10 +5778,12 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
5720
5778
|
depth?: BodyDepthOptions | number | boolean;
|
|
5721
5779
|
}
|
|
5722
5780
|
/**
|
|
5781
|
+
* @css 'rct-navigator-handle'
|
|
5723
5782
|
*/
|
|
5724
5783
|
interface NavigiatorHandleOptions extends ChartItemOptions {
|
|
5725
5784
|
}
|
|
5726
5785
|
/**
|
|
5786
|
+
* @css 'rct-navigator-mask'
|
|
5727
5787
|
*/
|
|
5728
5788
|
interface NavigiatorMaskOptions extends ChartItemOptions {
|
|
5729
5789
|
}
|
|
@@ -5735,6 +5795,7 @@ interface NavigiatorMaskOptions extends ChartItemOptions {
|
|
|
5735
5795
|
* 내비게이터의 x축 종류는 명시적으로 설정하지 않으면 소스 시리즈의 x축 type을 따라간다.
|
|
5736
5796
|
* y축은 항상 {@link https://realchart.co.kr/config/config/yAxis/linear linear}로 생성된다.
|
|
5737
5797
|
*
|
|
5798
|
+
* @css 'rct-navigator'
|
|
5738
5799
|
*/
|
|
5739
5800
|
interface SeriesNavigatorOptions extends ChartItemOptions {
|
|
5740
5801
|
/**
|
|
@@ -5822,7 +5883,8 @@ interface SeriesNavigatorOptions extends ChartItemOptions {
|
|
|
5822
5883
|
* };
|
|
5823
5884
|
* ```
|
|
5824
5885
|
*
|
|
5825
|
-
*
|
|
5886
|
+
*
|
|
5887
|
+
* @css 'rct-credits'
|
|
5826
5888
|
*/
|
|
5827
5889
|
interface CreditsOptions extends ChartItemOptions {
|
|
5828
5890
|
/**
|
|
@@ -5920,6 +5982,8 @@ declare const _PointHoverScope: {
|
|
|
5920
5982
|
type PointHoverScope = typeof _PointHoverScope[keyof typeof _PointHoverScope];
|
|
5921
5983
|
/**
|
|
5922
5984
|
* 데이터포인트에 마우스가 올라갈 때 처리하는 방식 설정 옵션.<br/>
|
|
5985
|
+
*
|
|
5986
|
+
* @css 'rct-point-hover'
|
|
5923
5987
|
*/
|
|
5924
5988
|
interface PointHoveringOptions extends ChartItemOptions {
|
|
5925
5989
|
/**
|
|
@@ -6389,6 +6453,7 @@ interface PaneBodyOptions extends BodyOptions {
|
|
|
6389
6453
|
* 시리즈는 {@link https://realchart.co.kr/config/config/base/series/xAxis xAxis}, {@link https://realchart.co.kr/config/config/base/series/yAxis yAxis} 설정에 따라 연결된 axis 위치에 따라 자동으로 결정된다.
|
|
6390
6454
|
*
|
|
6391
6455
|
* @modules split
|
|
6456
|
+
* @css 'rct-panes'
|
|
6392
6457
|
*/
|
|
6393
6458
|
interface SplitOptions extends ChartItemOptions {
|
|
6394
6459
|
/**
|
|
@@ -6596,6 +6661,8 @@ declare const _HtmlButtonHintMode: {
|
|
|
6596
6661
|
type HtmlButtonHintMode = typeof _HtmlButtonHintMode[keyof typeof _HtmlButtonHintMode];
|
|
6597
6662
|
/**
|
|
6598
6663
|
* HTML 버튼 옵션<br/>
|
|
6664
|
+
*
|
|
6665
|
+
* @css 'rct-html-button'
|
|
6599
6666
|
*/
|
|
6600
6667
|
interface HtmlButtonOptions extends Omit<ChartItemOptions, 'style'> {
|
|
6601
6668
|
/**
|
|
@@ -6756,6 +6823,7 @@ interface GaugeBaseOptions extends ChartItemOptions {
|
|
|
6756
6823
|
/**
|
|
6757
6824
|
* 단일 값을 다양한 방식으로 표시한다.<br/>
|
|
6758
6825
|
*
|
|
6826
|
+
* @css 'rct-gauge'
|
|
6759
6827
|
*/
|
|
6760
6828
|
interface GaugeOptions extends GaugeBaseOptions {
|
|
6761
6829
|
/**
|
|
@@ -6770,6 +6838,7 @@ interface GaugeOptions extends GaugeBaseOptions {
|
|
|
6770
6838
|
/**
|
|
6771
6839
|
* 같은 종류의 단일 게이지들을 여러 개 묶어서 관련된 값을 표시한다.<br/>
|
|
6772
6840
|
*
|
|
6841
|
+
* @css 'rct-gauge-group'
|
|
6773
6842
|
*/
|
|
6774
6843
|
interface GaugeGroupOptions<T extends ValueGaugeOptions = ValueGaugeOptions> extends GaugeBaseOptions {
|
|
6775
6844
|
/**
|
|
@@ -7079,6 +7148,7 @@ declare const BulletGaugeType = "bullet";
|
|
|
7079
7148
|
* 또, {@link band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.
|
|
7080
7149
|
*
|
|
7081
7150
|
* @modules gauge
|
|
7151
|
+
* @css 'rct-bullet-gauge'
|
|
7082
7152
|
*/
|
|
7083
7153
|
interface BulletGaugeOptions extends LinearGaugeBaseOptions {
|
|
7084
7154
|
/**
|
|
@@ -7123,6 +7193,7 @@ declare const BulletGaugeGroupType = "bulletgroup";
|
|
|
7123
7193
|
* {@link https://realchart.co.kr/docs/api/options/GaugeOptions#type type}은 'bulletgroup'이다.
|
|
7124
7194
|
*
|
|
7125
7195
|
* @modules gauge
|
|
7196
|
+
* @css 'rct-bullet-gauge-group'
|
|
7126
7197
|
*/
|
|
7127
7198
|
interface BulletGaugeGroupOptions extends LinearGaugeGroupBaseOptions<BulletGaugeOptions> {
|
|
7128
7199
|
/** @dummy */
|
|
@@ -7422,6 +7493,8 @@ declare const _GaugeItemPosition: {
|
|
|
7422
7493
|
type GaugeItemPosition = typeof _GaugeItemPosition[keyof typeof _GaugeItemPosition];
|
|
7423
7494
|
/**
|
|
7424
7495
|
* Gauge scale.
|
|
7496
|
+
*
|
|
7497
|
+
* @css 'rct-gauge-scale'
|
|
7425
7498
|
*/
|
|
7426
7499
|
interface GaugeScaleOptions extends ChartItemOptions {
|
|
7427
7500
|
/**
|
|
@@ -7592,6 +7665,7 @@ declare const CircleGaugeType = "circle";
|
|
|
7592
7665
|
* 지정된 최대 각도 내에서 현재 값의 비율을 원호로 표시한다.<br/>
|
|
7593
7666
|
*
|
|
7594
7667
|
* @modules gauge
|
|
7668
|
+
* @css 'rct-circle-gauge'
|
|
7595
7669
|
*/
|
|
7596
7670
|
interface CircleGaugeOptions extends CircularGaugeOptions {
|
|
7597
7671
|
/**
|
|
@@ -7634,6 +7708,7 @@ declare const CircleGaugeGroupType = "circlegroup";
|
|
|
7634
7708
|
* {@link https://realchart.co.kr/docs/api/options/GaugeOptions#type type}은 'circlegroup'이다.
|
|
7635
7709
|
*
|
|
7636
7710
|
* @modules gauge
|
|
7711
|
+
* @css 'rct-circle-gauge-group'
|
|
7637
7712
|
*/
|
|
7638
7713
|
interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
|
|
7639
7714
|
/** @dummy */
|
|
@@ -7738,6 +7813,7 @@ declare const ClockGaugeType = "clock";
|
|
|
7738
7813
|
* 원형 아날로그 시계를 표시한다.<br/>
|
|
7739
7814
|
*
|
|
7740
7815
|
* @modules gauge
|
|
7816
|
+
* @css 'rct-clock-gauge'
|
|
7741
7817
|
*/
|
|
7742
7818
|
interface ClockGaugeOptions extends GaugeOptions {
|
|
7743
7819
|
/**
|
|
@@ -7833,6 +7909,7 @@ declare const LinearGaugeType = "linear";
|
|
|
7833
7909
|
* 또, {@link band}를 같이 표시하면, 여러 값 범위 중 어디에 속한 상태인 지를 나타낼 수 있다.<br/>
|
|
7834
7910
|
*
|
|
7835
7911
|
* @modules gauge
|
|
7912
|
+
* @css 'rct-linear-gauge'
|
|
7836
7913
|
*/
|
|
7837
7914
|
interface LinearGaugeOptions extends LinearGaugeBaseOptions {
|
|
7838
7915
|
/**
|
|
@@ -7855,6 +7932,7 @@ declare const LinearGaugeGroupType = "lineargroup";
|
|
|
7855
7932
|
* {@link https://realchart.co.kr/docs/api/options/GaugeOptions#type type}은 'lineargroup'이다.<br/>
|
|
7856
7933
|
*
|
|
7857
7934
|
* @modules gauge
|
|
7935
|
+
* @css 'rct-linear-gauge-group'
|
|
7858
7936
|
*/
|
|
7859
7937
|
interface LinearGaugeGroupOptions extends LinearGaugeGroupBaseOptions<LinearGaugeOptions> {
|
|
7860
7938
|
/**
|
|
@@ -10066,10 +10144,15 @@ interface IPolar {
|
|
|
10066
10144
|
cx: number;
|
|
10067
10145
|
cy: number;
|
|
10068
10146
|
rd: number;
|
|
10147
|
+
/** 안쪽 구멍(도넛) 반지름. 픽셀 단위. */
|
|
10148
|
+
rdInner: number;
|
|
10069
10149
|
cyclic: boolean;
|
|
10070
10150
|
min?: number;
|
|
10071
10151
|
max?: number;
|
|
10072
10152
|
}
|
|
10153
|
+
declare class PolarInnerText extends IconedText<PolarInnerTextOptions> {
|
|
10154
|
+
getDefaultIconPos(): IconPosition;
|
|
10155
|
+
}
|
|
10073
10156
|
declare class BodyDepthLine extends ChartItem<BodyDepthLineOptions> {
|
|
10074
10157
|
static defaults: BodyDepthLineOptions;
|
|
10075
10158
|
}
|
|
@@ -10146,11 +10229,14 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
10146
10229
|
private _emptyView;
|
|
10147
10230
|
_annotations: AnnotationCollection;
|
|
10148
10231
|
private _radiusDim;
|
|
10232
|
+
private _innerRadiusDim;
|
|
10149
10233
|
private _centerXDim;
|
|
10150
10234
|
private _centerYDim;
|
|
10151
10235
|
private _rd;
|
|
10236
|
+
private _rdInner;
|
|
10152
10237
|
private _cx;
|
|
10153
10238
|
private _cy;
|
|
10239
|
+
private _innerText;
|
|
10154
10240
|
constructor(chart: IChart);
|
|
10155
10241
|
protected _doInit(op: OP): void;
|
|
10156
10242
|
anchorByName(name: string): ChartItem;
|
|
@@ -10160,10 +10246,22 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
10160
10246
|
get depth(): BodyDepth;
|
|
10161
10247
|
get image(): BackgroundImage;
|
|
10162
10248
|
get emptyView(): EmptyView;
|
|
10249
|
+
/**
|
|
10250
|
+
* {@link innerRadius}가 0보다 클 때, polar 플롯 중앙에 표시되는 텍스트.
|
|
10251
|
+
* 기본 클래스 selector는 <b>'rct-polar-body-inner'</b>이다.
|
|
10252
|
+
*/
|
|
10253
|
+
get innerText(): PolarInnerText;
|
|
10254
|
+
hasInner(): boolean;
|
|
10163
10255
|
get zoomButton(): ZoomButton;
|
|
10164
10256
|
canZoom(): boolean;
|
|
10165
10257
|
_getDepth(w: number, h: number): IBodyDepthExtents;
|
|
10166
10258
|
getRadius(width: number, height: number): number;
|
|
10259
|
+
/**
|
|
10260
|
+
* {@link innerRadius}를 바깥 반지름에 대한 비율(0~1)로 반환한다.
|
|
10261
|
+
* PieSeries.getInnerRadius와 동일한 규칙이다.
|
|
10262
|
+
*/
|
|
10263
|
+
getInnerRadius(rd: number): number;
|
|
10264
|
+
getInnerRadiusPx(rd: number): number;
|
|
10167
10265
|
setPolar(width: number, height: number): Body;
|
|
10168
10266
|
getPolar(axis: Axis): IPolar;
|
|
10169
10267
|
isZoomed(): boolean;
|
|
@@ -10200,6 +10298,12 @@ declare class NavigatorMask extends ChartItem<NavigiatorMaskOptions> {
|
|
|
10200
10298
|
* y축은 항상 **'linear'**로 생성된다.
|
|
10201
10299
|
*/
|
|
10202
10300
|
declare class SeriesNavigator extends ChartItem<SeriesNavigatorOptions> {
|
|
10301
|
+
/** 핸들 원의 반지름 (px). {@link HANDLE_TRACK_HEIGHT} 기준으로 적정 크기로 고정. */
|
|
10302
|
+
static readonly HANDLE_RADIUS = 9.75;
|
|
10303
|
+
/** 스크롤 track 높이 (px). */
|
|
10304
|
+
static readonly HANDLE_TRACK_HEIGHT = 6;
|
|
10305
|
+
/** thickness 하단에서 track 중심까지의 거리 (px). {@link HANDLE_TRACK_HEIGHT} / 2 */
|
|
10306
|
+
static readonly HANDLE_TRACK_OFFSET: number;
|
|
10203
10307
|
static defaults: SeriesNavigatorOptions;
|
|
10204
10308
|
private _handle;
|
|
10205
10309
|
private _mask;
|
|
@@ -10225,9 +10329,30 @@ declare class SeriesNavigator extends ChartItem<SeriesNavigatorOptions> {
|
|
|
10225
10329
|
* 경계선 설정 모델.
|
|
10226
10330
|
*/
|
|
10227
10331
|
get borderLine(): ChartItem<ChartItemOptions>;
|
|
10332
|
+
/**
|
|
10333
|
+
* 네비게이터 두께를 반환한다.
|
|
10334
|
+
* @default 45
|
|
10335
|
+
*/
|
|
10228
10336
|
getThickness(): number;
|
|
10337
|
+
/**
|
|
10338
|
+
* 네비게이터와 차트 본체 방향 사이의 간격을 반환한다.
|
|
10339
|
+
* @default 8
|
|
10340
|
+
*/
|
|
10229
10341
|
getGap(): number;
|
|
10342
|
+
/**
|
|
10343
|
+
* 네비게이터와 차트 본체 반대 방향 사이의 간격을 반환한다.
|
|
10344
|
+
* @default 3
|
|
10345
|
+
*/
|
|
10230
10346
|
getGapFar(): number;
|
|
10347
|
+
/**
|
|
10348
|
+
* thickness 하단에서 핸들 원 하단까지의 거리 (px).
|
|
10349
|
+
*/
|
|
10350
|
+
getHandleOverflow(): number;
|
|
10351
|
+
/**
|
|
10352
|
+
* gap·thickness·gapFar를 합한 navigator 전체 예약 크기 (px).<br/>
|
|
10353
|
+
* gap은 ChartView layout에서 transY로, thickness는 navigator 뷰 높이로 적용된다.<br/>
|
|
10354
|
+
* gapFar가 {@link getHandleOverflow}보다 작으면 핸들 clipping 방지를 위해 후자를 사용한다.
|
|
10355
|
+
*/
|
|
10231
10356
|
getSize(): number;
|
|
10232
10357
|
axisLen(): number;
|
|
10233
10358
|
axis(): Axis;
|
|
@@ -10855,6 +10980,28 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
|
|
|
10855
10980
|
protected _doSetSimple(src: any): boolean;
|
|
10856
10981
|
protected _doPrepareRender(chart: IChart): void;
|
|
10857
10982
|
}
|
|
10983
|
+
/**
|
|
10984
|
+
* major tick 사이 보조 눈금(minor tick) 모델.<br/>
|
|
10985
|
+
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorTickOptions AxisMinorTickOptions}이고,
|
|
10986
|
+
* {@link https://realchart.co.kr/config/config/base/axis#minortick minorTick} 항목으로 설정한다.
|
|
10987
|
+
*/
|
|
10988
|
+
declare class AxisMinorTick extends AxisItem<AxisMinorTickOptions> {
|
|
10989
|
+
static defaults: AxisMinorTickOptions;
|
|
10990
|
+
private _length;
|
|
10991
|
+
private _count;
|
|
10992
|
+
_getLength(): number;
|
|
10993
|
+
_getCount(): number;
|
|
10994
|
+
protected _doSetSimple(src: any): boolean;
|
|
10995
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
10996
|
+
}
|
|
10997
|
+
/**
|
|
10998
|
+
* major grid 사이 보조 격자선(minor grid line) 모델.<br/>
|
|
10999
|
+
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorGridOptions AxisMinorGridOptions}이고,
|
|
11000
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid grid.minorGrid} 항목으로 설정한다.
|
|
11001
|
+
*/
|
|
11002
|
+
declare class AxisMinorGrid extends AxisItem<AxisMinorGridOptions> {
|
|
11003
|
+
static defaults: AxisMinorGridOptions;
|
|
11004
|
+
}
|
|
10858
11005
|
/**
|
|
10859
11006
|
* 축 label 모델.<br/>
|
|
10860
11007
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisLabelOptions AxisLabelOptions}이고,
|
|
@@ -11012,6 +11159,8 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11012
11159
|
};
|
|
11013
11160
|
_ticks: IAxisTick[];
|
|
11014
11161
|
_markPoints: number[];
|
|
11162
|
+
_minorValues: number[];
|
|
11163
|
+
_minorMarkPoints: number[];
|
|
11015
11164
|
_vlen: number;
|
|
11016
11165
|
_zoom: AxisZoom;
|
|
11017
11166
|
_values: number[];
|
|
@@ -11248,6 +11397,8 @@ interface AxisItemOptions extends ChartItemOptions {
|
|
|
11248
11397
|
}
|
|
11249
11398
|
/**
|
|
11250
11399
|
* 축 타이틀 설정 옵션.<br/>
|
|
11400
|
+
*
|
|
11401
|
+
* @css 'rct-axis-title'
|
|
11251
11402
|
*/
|
|
11252
11403
|
interface AxisTitleOptions extends AxisItemOptions {
|
|
11253
11404
|
/**
|
|
@@ -11327,6 +11478,8 @@ declare const _AxisUnitLabelPosition: {
|
|
|
11327
11478
|
type AxisUnitLabelPosition = typeof _AxisUnitLabelPosition[keyof typeof _AxisUnitLabelPosition];
|
|
11328
11479
|
/**
|
|
11329
11480
|
* 축 타이틀과 별도로 tick label 표시 값들의 단위 등을 표시한다.<br/>
|
|
11481
|
+
*
|
|
11482
|
+
* @css 'rct-axis-unit-label'
|
|
11330
11483
|
*/
|
|
11331
11484
|
interface AxisUnitLabelOptions extends AxisItemOptions {
|
|
11332
11485
|
/**
|
|
@@ -11350,6 +11503,8 @@ interface AxisUnitLabelOptions extends AxisItemOptions {
|
|
|
11350
11503
|
}
|
|
11351
11504
|
/**
|
|
11352
11505
|
* 축 선(line) 설정 모델.<br/>
|
|
11506
|
+
*
|
|
11507
|
+
* @css 'rct-axis-line'
|
|
11353
11508
|
*/
|
|
11354
11509
|
interface AxisLineOptions extends AxisItemOptions {
|
|
11355
11510
|
/**
|
|
@@ -11382,6 +11537,8 @@ interface AxisSectorLineOptions extends AxisLineOptions {
|
|
|
11382
11537
|
* },
|
|
11383
11538
|
* };
|
|
11384
11539
|
* ```
|
|
11540
|
+
*
|
|
11541
|
+
* @css 'rct-axis-tick'
|
|
11385
11542
|
*/
|
|
11386
11543
|
interface AxisTickOptions extends AxisItemOptions {
|
|
11387
11544
|
/**
|
|
@@ -11403,6 +11560,59 @@ interface AxisTickOptions extends AxisItemOptions {
|
|
|
11403
11560
|
*/
|
|
11404
11561
|
gap?: number;
|
|
11405
11562
|
}
|
|
11563
|
+
/**
|
|
11564
|
+
* major grid 사이 보조 격자선(minor grid line) 설정 옵션.<br/>
|
|
11565
|
+
* linear, log, time 축에 적용된다.<br/>
|
|
11566
|
+
* 위치는 {@link AxisMinorTickOptions.count minorTick count}와 동일하게 계산된다
|
|
11567
|
+
* ({@link AxisMinorTickOptions.visible minorTick visible}이 false여도 count는 grid 위치에 사용된다).<br/>
|
|
11568
|
+
* {@link AxisGridOptions.visible grid visible}이 false이면 minor grid도 표시되지 않는다.<br/>
|
|
11569
|
+
* {@link firstVisible}, {@link lastVisible}은 major grid에만 적용되고 minor grid에는 적용되지 않는다.<br/>
|
|
11570
|
+
* {@link depthVisible} 및 depth side panel에는 minor grid가 표시되지 않는다.<br/>
|
|
11571
|
+
* axis break 경계 tick이 있는 major 구간에는 minor grid가 생성되지 않는다.<br/>
|
|
11572
|
+
* 선 스타일은 {@link style} 속성으로 지정한다.
|
|
11573
|
+
*
|
|
11574
|
+
* @css 'rct-axis-minor-grid-line'
|
|
11575
|
+
*/
|
|
11576
|
+
interface AxisMinorGridOptions extends AxisItemOptions {
|
|
11577
|
+
/**
|
|
11578
|
+
* @default false
|
|
11579
|
+
*/
|
|
11580
|
+
visible?: boolean;
|
|
11581
|
+
}
|
|
11582
|
+
/**
|
|
11583
|
+
* major tick 사이에 표시되는 보조 눈금(minor tick) 설정 옵션.<br/>
|
|
11584
|
+
* linear, log, time 축에 적용된다.<br/>
|
|
11585
|
+
* time 축은 major tick 타임스탬프 사이를 선형 보간하여 minor 위치를 계산한다
|
|
11586
|
+
* (달력 단위가 아닌 픽셀 균등 배치).<br/>
|
|
11587
|
+
* log 축은 major tick 값이 0보다 클 때 log 공간에서 보간한다.<br/>
|
|
11588
|
+
* {@link count}는 {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid minor grid} 위치 계산에도 사용된다
|
|
11589
|
+
* (visible이 false여도 grid만 표시할 수 있다).<br/>
|
|
11590
|
+
* major tick이 2개 미만이면 minor tick·grid가 생성되지 않는다.<br/>
|
|
11591
|
+
* axis break 경계 tick이 있는 major 구간에는 minor tick이 생성되지 않는다.<br/>
|
|
11592
|
+
* 선 스타일은 {@link style} 속성으로 지정한다.
|
|
11593
|
+
*
|
|
11594
|
+
* @css 'rct-axis-minor-tick'
|
|
11595
|
+
*/
|
|
11596
|
+
interface AxisMinorTickOptions extends AxisItemOptions {
|
|
11597
|
+
/**
|
|
11598
|
+
* @default false
|
|
11599
|
+
*/
|
|
11600
|
+
visible?: boolean;
|
|
11601
|
+
/**
|
|
11602
|
+
* major tick 한 구간 사이에 표시할 minor tick 개수.<br/>
|
|
11603
|
+
* 1 미만이거나 소수인 값은 내림하여 1 이상의 정수로 적용된다.<br/>
|
|
11604
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid minor grid} 위치에도 동일하게 적용된다.
|
|
11605
|
+
*
|
|
11606
|
+
* @default 4
|
|
11607
|
+
*/
|
|
11608
|
+
count?: number;
|
|
11609
|
+
/**
|
|
11610
|
+
* minor tick 선 길이(픽셀). major tick보다 짧게 지정하는 것이 일반적이다.
|
|
11611
|
+
*
|
|
11612
|
+
* @default 4
|
|
11613
|
+
*/
|
|
11614
|
+
length?: number;
|
|
11615
|
+
}
|
|
11406
11616
|
/**
|
|
11407
11617
|
* 연속축의 tick 스텝 목록을 동적으로 리턴하는 {@link https://realchart.co.kr/config/config/xAxis/linear/tick#stepcallback 콜백}의 매개변수로 사용된다.
|
|
11408
11618
|
*/
|
|
@@ -11526,6 +11736,12 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11526
11736
|
/**
|
|
11527
11737
|
*/
|
|
11528
11738
|
interface ContinuousAxisGridOptions extends AxisGridOptions {
|
|
11739
|
+
/**
|
|
11740
|
+
* major grid 사이 보조 격자선(minor grid line) 설정 옵션.<br/>
|
|
11741
|
+
* boolean 값으로 지정하면 {@link visible} 속성을 지정한 것과 동일하다.<br/>
|
|
11742
|
+
* 표시 여부는 상위 {@link AxisGridOptions.visible grid visible}이 true일 때만 적용된다.
|
|
11743
|
+
*/
|
|
11744
|
+
minorGrid?: AxisMinorGridOptions | boolean;
|
|
11529
11745
|
}
|
|
11530
11746
|
/**
|
|
11531
11747
|
* @enum
|
|
@@ -11628,6 +11844,8 @@ interface AxisLabelArgs {
|
|
|
11628
11844
|
* //4. 1~3 모두 설정되지 않은 경우 autoArrange 설정에 따라 자동 배치한다.
|
|
11629
11845
|
* //5. 배치 후 공간을 초과하는 label은 wrap 속성에 따라 줄나누기를 하거나,
|
|
11630
11846
|
* // ellipsis('...')로 처리해서 표시한다.
|
|
11847
|
+
*
|
|
11848
|
+
* @css 'rct-axis-label'
|
|
11631
11849
|
*/
|
|
11632
11850
|
interface AxisLabelOptions extends IconedTextOptions {
|
|
11633
11851
|
/**
|
|
@@ -11769,6 +11987,8 @@ interface AxisLabelOptions extends IconedTextOptions {
|
|
|
11769
11987
|
}
|
|
11770
11988
|
/**
|
|
11771
11989
|
* 축 그리드 사이에 생성된 영역 표시 설정 모델.
|
|
11990
|
+
*
|
|
11991
|
+
* @css 'rct-axis-grid-rows'
|
|
11772
11992
|
*/
|
|
11773
11993
|
interface AxisGridRowsOptions extends AxisItemOptions {
|
|
11774
11994
|
/**
|
|
@@ -11850,6 +12070,8 @@ type AxisGuideOptionsType = AxisLineGuideOptions | AxisRangeGuideOptions;
|
|
|
11850
12070
|
* 선분이나 영역으로 축 위의 특정한 값(들)을 구분 표시한다.<br/>
|
|
11851
12071
|
* 기본적으로 이 축에 연결된 모든 body에 모두 표시된다.
|
|
11852
12072
|
* col, row를 지정해서 특정 body에만 표시되도록 할 수 있다.
|
|
12073
|
+
*
|
|
12074
|
+
* @css 'rct-axis-guide'
|
|
11853
12075
|
*/
|
|
11854
12076
|
interface AxisGuideOptions extends AxisItemOptions {
|
|
11855
12077
|
/**
|
|
@@ -11913,6 +12135,8 @@ interface AxisRangeGuideOptions extends AxisGuideOptions {
|
|
|
11913
12135
|
* Axis tick의 위치에 수평 혹은 수직선으로 plot 영역을 구분 표시한다.<br/>
|
|
11914
12136
|
* {@link visible} 기본값이 undefined인데,
|
|
11915
12137
|
* visible이 undefined나 null로 지정되면, 축 위치에 따라 visible 여부가 결정된다.
|
|
12138
|
+
*
|
|
12139
|
+
* @css 'rct-axis-grid-line'
|
|
11916
12140
|
*/
|
|
11917
12141
|
interface AxisGridOptions extends AxisItemOptions {
|
|
11918
12142
|
/**
|
|
@@ -12021,6 +12245,8 @@ interface CrosshairCallbackArgs {
|
|
|
12021
12245
|
}
|
|
12022
12246
|
/**
|
|
12023
12247
|
* 직선 또는 bar 형태로 축 위의 마우스 위치를 표시하는 구성 요소 옵션.<br/>
|
|
12248
|
+
*
|
|
12249
|
+
* @css 'rct-crosshair-line' (카테고리 축: 'rct-crosshair-bar')
|
|
12024
12250
|
*/
|
|
12025
12251
|
interface CrosshairOptions extends ChartItemOptions {
|
|
12026
12252
|
/**
|
|
@@ -12133,6 +12359,8 @@ type AxisPosition = typeof _AxisPosition[keyof typeof _AxisPosition];
|
|
|
12133
12359
|
/**
|
|
12134
12360
|
* 축 스크롤바 모델.<br/>
|
|
12135
12361
|
* 축 스크롤 상태를 표시하고, 사용자가 스크롤 범위나 위치를 변경할 수 있다.
|
|
12362
|
+
*
|
|
12363
|
+
* @css 'rct-axis-scrollbar'
|
|
12136
12364
|
*/
|
|
12137
12365
|
interface AxisScrollBarOptions extends AxisItemOptions {
|
|
12138
12366
|
/**
|
|
@@ -12181,6 +12409,7 @@ type AxisType = 'category' | 'linear' | 'log' | 'time';
|
|
|
12181
12409
|
*
|
|
12182
12410
|
* 축으로 자동 설정된다.<br/>
|
|
12183
12411
|
*
|
|
12412
|
+
* @css 'rct-axis'
|
|
12184
12413
|
*/
|
|
12185
12414
|
interface AxisOptions extends ChartItemOptions {
|
|
12186
12415
|
/**
|
|
@@ -12561,6 +12790,8 @@ interface AxisBaseLineOptions extends AxisLineOptions {
|
|
|
12561
12790
|
}
|
|
12562
12791
|
/**
|
|
12563
12792
|
* 연속축 break 설정 모델.<br/>
|
|
12793
|
+
*
|
|
12794
|
+
* @css 'rct-axis-break'
|
|
12564
12795
|
*/
|
|
12565
12796
|
interface AxisBreakOptions extends AxisItemOptions {
|
|
12566
12797
|
/**
|
|
@@ -12747,6 +12978,11 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
12747
12978
|
* @append
|
|
12748
12979
|
*/
|
|
12749
12980
|
tick?: ContinuousAxisTickOptions | boolean;
|
|
12981
|
+
/**
|
|
12982
|
+
* major tick 사이 보조 눈금(minor tick) 설정 옵션.<br/>
|
|
12983
|
+
* boolean 값으로 지정하면 {@link visible} 속성을 지정한 것과 동일하다.
|
|
12984
|
+
*/
|
|
12985
|
+
minorTick?: AxisMinorTickOptions | boolean;
|
|
12750
12986
|
/**
|
|
12751
12987
|
* @append
|
|
12752
12988
|
*/
|
|
@@ -13209,6 +13445,7 @@ interface AnnotationClickArgs {
|
|
|
13209
13445
|
* 보조로 표시할 수 있는 {@link https://realchart.co.kr/config/config/annotation/text 텍스트}나
|
|
13210
13446
|
* {@link https://realchart.co.kr/config/config/annotation/image 이미지} 또는 {@link https://realchart.co.kr/config/config/annotation/shape 도형}.<br/>
|
|
13211
13447
|
*
|
|
13448
|
+
* @css 'rct-annotation'
|
|
13212
13449
|
*/
|
|
13213
13450
|
interface AnnotationOptions extends ChartItemOptions {
|
|
13214
13451
|
/**
|
|
@@ -13425,6 +13662,11 @@ declare const _ShapeAnnotationShape: {
|
|
|
13425
13662
|
*
|
|
13426
13663
|
*/
|
|
13427
13664
|
readonly LINE: "line";
|
|
13665
|
+
/**
|
|
13666
|
+
* 화살표
|
|
13667
|
+
*
|
|
13668
|
+
*/
|
|
13669
|
+
readonly ARROW: "arrow";
|
|
13428
13670
|
};
|
|
13429
13671
|
/** @dummy */
|
|
13430
13672
|
type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnnotationShape];
|
|
@@ -13432,7 +13674,9 @@ type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnno
|
|
|
13432
13674
|
* Shape 어노테이션.<br/>
|
|
13433
13675
|
* {@link https://realchart.co.kr/docs/api/options/AnnotationOptions#type type}은 'shape'이다.<br/>
|
|
13434
13676
|
* {@link shape} 속성에 표시할 도형 모양을 지정하거나,
|
|
13435
|
-
* {@link path}에 SVG path를 직접 지정할 수
|
|
13677
|
+
* {@link path}에 SVG path를 직접 지정할 수 있다.<br/>
|
|
13678
|
+
* {@link shape}가 `'arrow'`이고 object {@link style}일 때 stroke/fill 기본값이 자동 보정된다.<br/>
|
|
13679
|
+
* CSS class {@link style} 문자열은 자동 보정되지 않는다.
|
|
13436
13680
|
*
|
|
13437
13681
|
* // TODO #fiddle annotation/shape-annotation Shape Annotation
|
|
13438
13682
|
* @css 'rct-shape-annotation'
|
|
@@ -13455,22 +13699,43 @@ interface ShapeAnnotationOptions extends AnnotationOptions {
|
|
|
13455
13699
|
height?: PercentSize;
|
|
13456
13700
|
/**
|
|
13457
13701
|
* Shape 종류.<br/>
|
|
13702
|
+
* `'arrow'`는 {@link x1}, {@link y1}, {@link x2}, {@link y2} 직선 화살표이며,
|
|
13703
|
+
* `'hline'`/`'vline'`처럼 축 전체를 span하지 않는다.
|
|
13458
13704
|
*
|
|
13459
13705
|
* @default 'square'
|
|
13460
13706
|
*/
|
|
13461
13707
|
shape?: ShapeAnnotationShape;
|
|
13462
13708
|
/**
|
|
13463
13709
|
* shape svg path.<br/>
|
|
13464
|
-
* 이 속성이 지정되면 {@link shape}는
|
|
13710
|
+
* 이 속성이 지정되면 {@link shape}는 무시되며, `'arrow'`일 때 화살표 머리도 표시되지 않는다.
|
|
13465
13711
|
*/
|
|
13466
13712
|
path?: string;
|
|
13467
13713
|
/**
|
|
13714
|
+
* {@link shape}가 `'arrow'`일 때 선 굵기(픽셀).<br/>
|
|
13715
|
+
* 지정하면 {@link style}의 strokeWidth보다 우선하며, 렌더 시 {@link style} strokeWidth로 반영된다.<br/>
|
|
13716
|
+
* arrow 전용이며, object {@link style} 미지정 시 strokeWidth 기본값도 함께 적용된다.
|
|
13717
|
+
*
|
|
13718
|
+
* @default 1
|
|
13719
|
+
*/
|
|
13720
|
+
lineWidth?: number;
|
|
13721
|
+
/**
|
|
13722
|
+
* {@link shape}가 `'arrow'`일 때 화살표 머리 크기(픽셀).<br/>
|
|
13723
|
+
* tip에서 wing까지의 거리이며, 선 길이의 90%를 넘지 않는다.<br/>
|
|
13724
|
+
* arrow가 아닌 {@link shape}에서는 무시된다.
|
|
13725
|
+
*
|
|
13726
|
+
* @default 12
|
|
13727
|
+
*/
|
|
13728
|
+
headSize?: number;
|
|
13729
|
+
/**
|
|
13730
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13468
13731
|
*/
|
|
13469
13732
|
series?: string;
|
|
13470
13733
|
/**
|
|
13734
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13471
13735
|
*/
|
|
13472
13736
|
xRange?: number[];
|
|
13473
13737
|
/**
|
|
13738
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13474
13739
|
*/
|
|
13475
13740
|
yRange?: number[];
|
|
13476
13741
|
}
|
|
@@ -14303,7 +14568,11 @@ declare class ImageElement extends RcElement {
|
|
|
14303
14568
|
* {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/ContinuousAxisGridOptions ContinuousAxisGridOptions}이다.
|
|
14304
14569
|
*/
|
|
14305
14570
|
declare class ContinuousAxisGrid extends AxisGrid<ContinuousAxisGridOptions> {
|
|
14571
|
+
private _minorGrid;
|
|
14572
|
+
protected _doInit(op: ContinuousAxisGridOptions): void;
|
|
14573
|
+
get minorGrid(): AxisMinorGrid;
|
|
14306
14574
|
getPositions(axis: ContinuousAxis, length: number): number[];
|
|
14575
|
+
getMinorPositions(axis: ContinuousAxis, length: number): number[];
|
|
14307
14576
|
}
|
|
14308
14577
|
/**
|
|
14309
14578
|
* 연속축의 tick 모델.<br/>
|
|
@@ -14398,6 +14667,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14398
14667
|
private static readonly PADDINGS;
|
|
14399
14668
|
static defaults: ContinuousAxisOptions;
|
|
14400
14669
|
private _baseLine;
|
|
14670
|
+
private _minorTick;
|
|
14401
14671
|
_minPadPixels: number;
|
|
14402
14672
|
_maxPadPixels: number;
|
|
14403
14673
|
private _minPaddings;
|
|
@@ -14433,6 +14703,10 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14433
14703
|
* @append
|
|
14434
14704
|
*/
|
|
14435
14705
|
get tick(): ContinuousAxisTick;
|
|
14706
|
+
/**
|
|
14707
|
+
* @append
|
|
14708
|
+
*/
|
|
14709
|
+
get minorTick(): AxisMinorTick;
|
|
14436
14710
|
/**
|
|
14437
14711
|
* @append
|
|
14438
14712
|
*/
|
|
@@ -14448,13 +14722,22 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14448
14722
|
protected _createGrid(): ContinuousAxisGrid;
|
|
14449
14723
|
protected _createTickModel(): ContinuousAxisTick;
|
|
14450
14724
|
protected abstract _createLabel(): ContinuousAxisLabel;
|
|
14725
|
+
_prepareRender(): void;
|
|
14451
14726
|
protected _doPrepareRender(): void;
|
|
14452
14727
|
private $_trim;
|
|
14453
14728
|
private $_trimSteps;
|
|
14454
14729
|
protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
|
|
14455
14730
|
private $_createTicks;
|
|
14456
14731
|
protected _createTick(index: number, step: number): IAxisTick;
|
|
14732
|
+
/**
|
|
14733
|
+
* major tick 구간 사이 minor tick/grid 값을 계산한다.<br/>
|
|
14734
|
+
* minor tick(#1450)과 minor grid line(#1449)이 동일한 보간을 사용한다.
|
|
14735
|
+
*/
|
|
14736
|
+
private $_buildMinorValues;
|
|
14737
|
+
protected _canInterpolateMinorSegment(v0: number, v1: number): boolean;
|
|
14738
|
+
protected _interpolateMinorValue(v0: number, v1: number, index: number, count: number): number;
|
|
14457
14739
|
_calcPoints(length: number, phase: number): void;
|
|
14740
|
+
private $_calcMinorPoints;
|
|
14458
14741
|
private $_buildBrokenSteps;
|
|
14459
14742
|
private $_calcBrokenSteps;
|
|
14460
14743
|
getPos(length: number, value: number): number;
|
|
@@ -14517,6 +14800,7 @@ declare class ChartTextElement extends GroupElement {
|
|
|
14517
14800
|
_icon: ImageElement;
|
|
14518
14801
|
private _model;
|
|
14519
14802
|
private _box;
|
|
14803
|
+
private _iconBox;
|
|
14520
14804
|
private _failedIconUrl;
|
|
14521
14805
|
constructor(doc: Document, styleName?: string);
|
|
14522
14806
|
/** text */
|
|
@@ -14525,6 +14809,12 @@ declare class ChartTextElement extends GroupElement {
|
|
|
14525
14809
|
setModel<OP extends ChartTextOptions>(doc: Document, model: IconedText<OP>, icon: string, dynStyle: SVGStyleOrClass): ChartTextElement;
|
|
14526
14810
|
setContrast(target: Element): ChartTextElement;
|
|
14527
14811
|
layout(align: Align): ChartTextElement;
|
|
14812
|
+
/**
|
|
14813
|
+
* {@link layout} 기준 콘텐츠 박스(group local 좌표).
|
|
14814
|
+
* DOM `getBBox()`에 확보한 아이콘 영역을 합쳐, 아이콘이 비동기 로드되기 전에도
|
|
14815
|
+
* 아이콘을 포함한 크기로 중앙 정렬할 수 있게 한다. 아이콘이 없으면 `getBBox()`와 동일하다.
|
|
14816
|
+
*/
|
|
14817
|
+
getLayoutBox(): IRect;
|
|
14528
14818
|
setOutline<OP extends ChartTextOptions>(model: IconedText<OP>): void;
|
|
14529
14819
|
getBBox(): IRect;
|
|
14530
14820
|
}
|
|
@@ -15173,18 +15463,22 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15173
15463
|
static readonly AXIS_CLASS = "rct-axis";
|
|
15174
15464
|
static readonly LINE_CLASS = "rct-axis-line";
|
|
15175
15465
|
static readonly TICK_CLASS = "rct-axis-tick";
|
|
15466
|
+
static readonly MINOR_TICK_CLASS = "rct-axis-minor-tick";
|
|
15176
15467
|
_simpleMode: boolean;
|
|
15177
15468
|
private _lineView;
|
|
15178
15469
|
private _lineView2;
|
|
15179
15470
|
private _titleView;
|
|
15180
15471
|
private _markContainer;
|
|
15181
15472
|
private _markViews;
|
|
15473
|
+
private _minorMarkContainer;
|
|
15474
|
+
private _minorMarkViews;
|
|
15182
15475
|
private _labelContainer;
|
|
15183
15476
|
private _labelViews;
|
|
15184
15477
|
private _unitView;
|
|
15185
15478
|
_scrollView: AxisScrollView;
|
|
15186
15479
|
private _reversed;
|
|
15187
15480
|
private _markLen;
|
|
15481
|
+
private _minorMarkLen;
|
|
15188
15482
|
private _tickGap;
|
|
15189
15483
|
private _labelSize;
|
|
15190
15484
|
private _labelRowPts;
|
|
@@ -15213,7 +15507,11 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15213
15507
|
clean(): void;
|
|
15214
15508
|
protected _doMeasure(doc: Document, model: Axis, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
15215
15509
|
protected _doLayout(): void;
|
|
15510
|
+
private $_syncTickMarkViews;
|
|
15511
|
+
private $_prepareTickMarkViews;
|
|
15512
|
+
private $_layoutTickMarkViews;
|
|
15216
15513
|
private $_prepareTickMarks;
|
|
15514
|
+
private $_prepareMinorTickMarks;
|
|
15217
15515
|
private _prepareLabel;
|
|
15218
15516
|
private $_prepareLabels;
|
|
15219
15517
|
private $_getRows;
|
|
@@ -15412,6 +15710,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
15412
15710
|
declare class ChartControl extends RcControl implements IChartEventListener {
|
|
15413
15711
|
private _chart;
|
|
15414
15712
|
private _chartView;
|
|
15713
|
+
private _contextMenuDismissHandler;
|
|
15415
15714
|
constructor(doc: Document, container: string | HTMLDivElement);
|
|
15416
15715
|
protected _createChartView(doc: Document): ChartView;
|
|
15417
15716
|
protected _createPointerHandler(): ChartPointerHandler;
|
|
@@ -15436,6 +15735,8 @@ declare class ChartControl extends RcControl implements IChartEventListener {
|
|
|
15436
15735
|
protected _doRender(bounds: IRect): void;
|
|
15437
15736
|
protected _doRenderBackground(elt: HTMLDivElement, root: RcElement, width: number, height: number): void;
|
|
15438
15737
|
private _loadModules;
|
|
15738
|
+
private $_bindContextMenuDismiss;
|
|
15739
|
+
private $_unbindContextMenuDismiss;
|
|
15439
15740
|
private _export;
|
|
15440
15741
|
}
|
|
15441
15742
|
|
|
@@ -15569,6 +15870,8 @@ declare class LogAxis extends ContinuousAxis<LogAxisOptions> {
|
|
|
15569
15870
|
* 화면 표시는 역log 값들을 사용한다.
|
|
15570
15871
|
*/
|
|
15571
15872
|
protected _createTick(index: number, step: number): IAxisTick;
|
|
15873
|
+
protected _interpolateMinorValue(v0: number, v1: number, index: number, count: number): number;
|
|
15874
|
+
protected _canInterpolateMinorSegment(v0: number, v1: number): boolean;
|
|
15572
15875
|
protected _calcUnitLen(vals: number[], length: number, axisMin: number, axisMax: number): {
|
|
15573
15876
|
len: number;
|
|
15574
15877
|
min: number;
|
|
@@ -16614,15 +16917,13 @@ declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
|
16614
16917
|
declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
16615
16918
|
static readonly type: string;
|
|
16616
16919
|
static defaults: ShapeAnnotationOptions;
|
|
16617
|
-
private
|
|
16618
|
-
private _yRange;
|
|
16619
|
-
getSeries(): {
|
|
16620
|
-
series: ISeries;
|
|
16621
|
-
xRange: number[];
|
|
16622
|
-
yRange: number[];
|
|
16623
|
-
};
|
|
16920
|
+
private _headSize;
|
|
16624
16921
|
getShape(): ShapeAnnotationShape;
|
|
16922
|
+
hasCustomPath(): boolean;
|
|
16923
|
+
getHeadSize(): number;
|
|
16924
|
+
protected _doApply(options: ShapeAnnotationOptions): void;
|
|
16625
16925
|
protected _doSetSimple(src: any): boolean;
|
|
16926
|
+
private $_resolveArrowStyle;
|
|
16626
16927
|
}
|
|
16627
16928
|
|
|
16628
16929
|
/** @private */
|
|
@@ -17367,9 +17668,13 @@ declare class ImageAnnotationView extends AnnotationView<ImageAnnotation> {
|
|
|
17367
17668
|
declare class ShapeAnnotationView extends AnnotationView<ShapeAnnotation> {
|
|
17368
17669
|
static readonly CLASS_NAME: string;
|
|
17369
17670
|
private _shapeView;
|
|
17671
|
+
private _headView;
|
|
17370
17672
|
constructor(doc: Document);
|
|
17371
17673
|
protected _doMeasure(doc: Document, model: ShapeAnnotation, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
17372
17674
|
protected _doLayout(p: Point): void;
|
|
17675
|
+
private $_headView;
|
|
17676
|
+
private $_resetHeadView;
|
|
17677
|
+
private $_lineEndpoints;
|
|
17373
17678
|
}
|
|
17374
17679
|
|
|
17375
17680
|
declare const isIE: boolean;
|
|
@@ -17468,4 +17773,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
17468
17773
|
declare const createData: typeof Globals.createData;
|
|
17469
17774
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
17470
17775
|
|
|
17471
|
-
export { Align, Annotation, AnnotationAnimationOptions, AnnotationClickArgs, AnnotationOptions, AnnotationOptionsType, AnnotationView, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaRangeSeriesView, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AreaSeriesView, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisGuideOptionsType, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletBandLabelOptions, BulletBarLabelOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, ScatterSeriesView, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeAnnotationView, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StackLabel, StackLabelCallbackArgs, StackLabelOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextAnnotationView, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, WaterfallSeriesView, Widget, WidgetSeries, WidgetSeriesConnector, WidgetSeriesLabel, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|
|
17776
|
+
export { Align, Annotation, AnnotationAnimationOptions, AnnotationClickArgs, AnnotationOptions, AnnotationOptionsType, AnnotationView, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaRangeSeriesView, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, AreaSeriesView, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisGuideOptionsType, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisMinorGridOptions, AxisMinorTickOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarRangeSeriesView, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BarSeriesPoint, BarSeriesView, BarSeriesViewBase, BasedSeries, BasedSeriesOptions, BasedSeriesView, BellCurveSeries, BellCurveSeriesOptions, BellCurveSeriesView, Body, BodyDepth, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BoxPlotSeriesView, BoxPointElementEx, BubblePie, BubblePieOptions, BubbleSeries, BubbleSeriesOptions, BubbleSeriesView, BulletBandLabelOptions, BulletBarLabelOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CandlestickSeriesView, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartPointerHandler, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleBarSeriesView, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, Dom, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, DumbbellSeriesView, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, EqualizerSeriesView, ErrorBarSeries, ErrorBarSeriesOptions, ErrorBarSeriesView, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, FunnelSeriesView, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, HistogramSeriesView, IAxis, IAxisTick, IChart, ICircularGaugeExtents, ILegendSource, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageAnnotationView, ImageElement, ImageListOptions, ImageOptions, LayerElement, Legend, LegendItem, LegendItemView, LegendOptions, LegendView, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesBaseView, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LineSeriesView, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LollipopSeriesView, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OhlcSeriesView, OthersGroup, OthersGroupOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, ParetoSeriesView, PathBuilder, PathElement, PatternOptions, PercentSize, PictogramSeriesOptions, PictogramSeriesType, PictorialBarMode, PictorialBarSeriesOptions, PictorialBarSeriesType, PictorialSeriesLabelOptions, PictorialSeriesOptions, PictorialSeriesType, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, PieSeriesView, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelLineContainer, PointLabelLineView, PointLabelView, PointViewPool, PolarInnerTextOptions, RAD_DEG, RaceBarSeriesOptions, RaceBarSeriesType, RaceCallbackArgs, RaceLineSeriesOptions, RaceLineSeriesType, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGNS, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, ScatterSeriesView, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, ShapeAnnotationView, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StackLabel, StackLabelCallbackArgs, StackLabelOptions, StepCallbackArgs, Subtitle, SubtitleOptions, SvgShapes, TextAnchor, TextAnnotation, TextAnnotationOptions, TextAnnotationView, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, TrendlineArea as TrendLineArea, TrendlineLabel as TrendLineLabel, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, WaterfallSeriesView, Widget, WidgetSeries, WidgetSeriesConnector, WidgetSeriesLabel, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isIE, isNumber, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLicenseKey, setLogging, sin, toStr };
|