realchart 1.4.26 → 1.4.28
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 +2 -2
- package/heatmap.mjs +2 -2
- package/ie/gauge.ie.js +2 -2
- package/ie/heatmap.ie.js +2 -2
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +2 -2
- package/ie/realchart-style.ie.css +79 -0
- package/ie/split.ie.js +2 -2
- package/ie/treemap.ie.js +2 -2
- package/ie/vector.ie.js +2 -2
- package/ie/wordcloud.ie.js +2 -2
- package/index.d.ts +675 -15
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +2 -2
- package/pictogram.mjs +2 -2
- package/realchart-style.css +43 -0
- package/split.js +2 -2
- package/split.mjs +2 -2
- package/treemap.js +2 -2
- package/treemap.mjs +2 -2
- package/vector.js +2 -2
- package/vector.mjs +2 -2
- package/wordcloud.js +2 -2
- package/wordcloud.mjs +2 -2
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[];
|
|
@@ -2810,6 +2814,92 @@ interface LineSeriesFlagOptions extends Omit<IconedTextOptions, 'numberFormat' |
|
|
|
2810
2814
|
*/
|
|
2811
2815
|
offset?: number;
|
|
2812
2816
|
}
|
|
2817
|
+
/**
|
|
2818
|
+
* line 시리즈 arrow 마커 회전 방식.<br/>
|
|
2819
|
+
* @enum
|
|
2820
|
+
*/
|
|
2821
|
+
declare const _LineArrowRotation: {
|
|
2822
|
+
/**
|
|
2823
|
+
* 인접 데이터포인트를 잇는 선분(또는 step/spline의 마지막 구간) 방향으로 회전한다.
|
|
2824
|
+
*
|
|
2825
|
+
*
|
|
2826
|
+
*/
|
|
2827
|
+
readonly AUTO: "auto";
|
|
2828
|
+
/**
|
|
2829
|
+
* {@link auto} 방향의 반대(180도)로 회전한다.
|
|
2830
|
+
*
|
|
2831
|
+
*
|
|
2832
|
+
*/
|
|
2833
|
+
readonly AUTO_REVERSE: "auto-reverse";
|
|
2834
|
+
};
|
|
2835
|
+
/** @dummy */
|
|
2836
|
+
type LineArrowRotation = typeof _LineArrowRotation[keyof typeof _LineArrowRotation] | number;
|
|
2837
|
+
/**
|
|
2838
|
+
* line 시리즈 arrow 마커 표시 위치.<br/>
|
|
2839
|
+
* @enum
|
|
2840
|
+
*/
|
|
2841
|
+
declare const _LineArrowPosition: {
|
|
2842
|
+
/**
|
|
2843
|
+
* 첫 번째 유효 데이터포인트.
|
|
2844
|
+
*
|
|
2845
|
+
*
|
|
2846
|
+
*/
|
|
2847
|
+
readonly START: "start";
|
|
2848
|
+
/**
|
|
2849
|
+
* 마지막 유효 데이터포인트.
|
|
2850
|
+
*
|
|
2851
|
+
*
|
|
2852
|
+
*/
|
|
2853
|
+
readonly END: "end";
|
|
2854
|
+
/**
|
|
2855
|
+
* 양 끝 데이터포인트.
|
|
2856
|
+
*
|
|
2857
|
+
*
|
|
2858
|
+
*/
|
|
2859
|
+
readonly BOTH: "both";
|
|
2860
|
+
};
|
|
2861
|
+
/** @dummy */
|
|
2862
|
+
type LineArrowPosition = typeof _LineArrowPosition[keyof typeof _LineArrowPosition];
|
|
2863
|
+
/**
|
|
2864
|
+
* Line 시리즈 양 끝(또는 한쪽 끝)에 표시되는 arrow 마커 설정.<br/>
|
|
2865
|
+
* {@link shape} 등 marker와 동일한 도형을 사용하며, {@link rotation}으로 방향을 지정한다.<br/>
|
|
2866
|
+
* {@link style}을 지정하지 않으면 시리즈 color가 fill로 적용되고, line strokeDasharray는 상속되지 않는다.
|
|
2867
|
+
*/
|
|
2868
|
+
interface LineSeriesArrowOptions extends SeriesMarkerOptions {
|
|
2869
|
+
/**
|
|
2870
|
+
* @append
|
|
2871
|
+
*
|
|
2872
|
+
* @default false
|
|
2873
|
+
*/
|
|
2874
|
+
visible?: boolean;
|
|
2875
|
+
/**
|
|
2876
|
+
* @append
|
|
2877
|
+
*
|
|
2878
|
+
* @default 'triangle'
|
|
2879
|
+
*/
|
|
2880
|
+
shape?: Shape;
|
|
2881
|
+
/**
|
|
2882
|
+
* @append
|
|
2883
|
+
*
|
|
2884
|
+
* @default 6
|
|
2885
|
+
*/
|
|
2886
|
+
radius?: number;
|
|
2887
|
+
/**
|
|
2888
|
+
* arrow 마커 회전 각도.<br/>
|
|
2889
|
+
* `'auto'`/`'auto-reverse'`이면 인접 데이터포인트를 잇는 선분(또는 step의 해당 직각 구간) 방향으로 회전한다.
|
|
2890
|
+
* spline 등 곡선 시리즈는 인접 포인트를 잇는 직선(chord) 방향을 따른다.
|
|
2891
|
+
* 숫자이면 라인 기울기와 무관하게 지정한 각도(도)로 회전한다.
|
|
2892
|
+
*
|
|
2893
|
+
* @default 'auto'
|
|
2894
|
+
*/
|
|
2895
|
+
rotation?: LineArrowRotation;
|
|
2896
|
+
/**
|
|
2897
|
+
* arrow 마커를 표시할 위치.
|
|
2898
|
+
*
|
|
2899
|
+
* @default 'end'
|
|
2900
|
+
*/
|
|
2901
|
+
position?: LineArrowPosition;
|
|
2902
|
+
}
|
|
2813
2903
|
/**
|
|
2814
2904
|
* @enum
|
|
2815
2905
|
*/
|
|
@@ -2893,6 +2983,11 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
2893
2983
|
*
|
|
2894
2984
|
*/
|
|
2895
2985
|
flag?: LineSeriesFlagOptions;
|
|
2986
|
+
/**
|
|
2987
|
+
* 라인 양 끝(또는 한쪽 끝)에 표시되는 arrow 마커 설정.
|
|
2988
|
+
*
|
|
2989
|
+
*/
|
|
2990
|
+
arrow?: LineSeriesArrowOptions;
|
|
2896
2991
|
/**
|
|
2897
2992
|
* polar 좌표계이고, x축의 totalAngle이 360도이 경우,
|
|
2898
2993
|
* 양끝 데이터포인터를 이어서 표시할 지 여부.<br/>
|
|
@@ -5538,6 +5633,12 @@ interface ZoomButtonOptions extends ChartItemOptions {
|
|
|
5538
5633
|
*/
|
|
5539
5634
|
visible?: boolean;
|
|
5540
5635
|
}
|
|
5636
|
+
/**
|
|
5637
|
+
* polar {@link innerRadius} 도넛 구멍 내부 텍스트 설정 옵션.<br/>
|
|
5638
|
+
* @css 'rct-polar-body-inner'
|
|
5639
|
+
*/
|
|
5640
|
+
interface PolarInnerTextOptions extends IconedTextOptions {
|
|
5641
|
+
}
|
|
5541
5642
|
/**
|
|
5542
5643
|
* @css 'rct-empty-view'
|
|
5543
5644
|
*/
|
|
@@ -5696,6 +5797,21 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
5696
5797
|
* @default '45%'
|
|
5697
5798
|
*/
|
|
5698
5799
|
radius?: PercentSize;
|
|
5800
|
+
/**
|
|
5801
|
+
* {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 플롯 영역의 안쪽 반지름.<br/>
|
|
5802
|
+
* 0보다 큰 값을 지정하면 {@link radius}와 함께 도넛 형태의 polar 플롯 영역이 된다.<br/>
|
|
5803
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie}의 {@link innerRadius}와 같이, 바깥 {@link radius}에 대한 상대 크기(%)나 픽셀 수로 지정할 수 있다.<br/>
|
|
5804
|
+
* y축 최솟값은 이 반지름 위치에 매핑된다.
|
|
5805
|
+
*
|
|
5806
|
+
* @default 0
|
|
5807
|
+
*/
|
|
5808
|
+
innerRadius?: PercentSize;
|
|
5809
|
+
/**
|
|
5810
|
+
* {@link innerRadius}가 0보다 클 때, polar 플롯 중앙(도넛 구멍)에 표시되는 텍스트.<br/>
|
|
5811
|
+
* {@link https://realchart.co.kr/config/config/series/pie pie}의 {@link innerText}와 동일한 형식이다.<br/>
|
|
5812
|
+
* 기본 클래스 selector는 <b>'rct-polar-body-inner'</b>이다.
|
|
5813
|
+
*/
|
|
5814
|
+
innerText?: PolarInnerTextOptions;
|
|
5699
5815
|
/**
|
|
5700
5816
|
* {@link https://realchart.co.kr/config/config/#polar 극좌표계} 차트일 때 중심 x 좌표.<br/>
|
|
5701
5817
|
*
|
|
@@ -9049,6 +9165,15 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
|
|
|
9049
9165
|
protected _doApply(options: TooltipOptions): void;
|
|
9050
9166
|
}
|
|
9051
9167
|
|
|
9168
|
+
/**
|
|
9169
|
+
* @private
|
|
9170
|
+
*/
|
|
9171
|
+
interface ICategoryTreeGroup {
|
|
9172
|
+
level: number;
|
|
9173
|
+
start: number;
|
|
9174
|
+
end: number;
|
|
9175
|
+
label: string;
|
|
9176
|
+
}
|
|
9052
9177
|
/**
|
|
9053
9178
|
* 카테고리축의 tick 모델.<br/>
|
|
9054
9179
|
* {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/CategoryAxisTickOptions CategoryAxisTickOptions}이다.
|
|
@@ -9085,12 +9210,24 @@ declare class CategoryAxisGrid extends AxisGrid<AxisGridOptions> {
|
|
|
9085
9210
|
*/
|
|
9086
9211
|
declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
9087
9212
|
static type: string;
|
|
9213
|
+
static readonly categoryTreeDividerDefaults: Readonly<CategoryTreeDividerOptions>;
|
|
9214
|
+
static readonly categoryTreeDefaults: Readonly<CategoryTreeOptions>;
|
|
9088
9215
|
static defaults: CategoryAxisOptions;
|
|
9089
9216
|
_categories: {
|
|
9090
9217
|
c: string;
|
|
9091
9218
|
t: string;
|
|
9219
|
+
levels?: string[];
|
|
9092
9220
|
i?: string;
|
|
9221
|
+
v?: number;
|
|
9093
9222
|
}[];
|
|
9223
|
+
_categoryTreeDepth: number;
|
|
9224
|
+
_categoryTreeGroups: ICategoryTreeGroup[];
|
|
9225
|
+
_categoryTreeDividerEnds: number[];
|
|
9226
|
+
_categoryTreeDividerLevel: number;
|
|
9227
|
+
private _categoryTreeOp;
|
|
9228
|
+
private _bandColors;
|
|
9229
|
+
private _categoryTreeLevelGroups;
|
|
9230
|
+
private _categoryTreeLevelEnds;
|
|
9094
9231
|
_weights: Map<number, number>;
|
|
9095
9232
|
_len: number;
|
|
9096
9233
|
_minPad: number;
|
|
@@ -9111,7 +9248,55 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9111
9248
|
get label(): CategoryAxisLabel;
|
|
9112
9249
|
xValueAt(pos: number): number;
|
|
9113
9250
|
getCategorySeparator(): string;
|
|
9251
|
+
isCategoryTreeEnabled(): boolean;
|
|
9252
|
+
hasCategoryTree(): boolean;
|
|
9253
|
+
private $_resolveCategoryTreeOp;
|
|
9254
|
+
private $_normalizeDivider;
|
|
9255
|
+
private $_isDividerOn;
|
|
9256
|
+
private $_dividerProp;
|
|
9257
|
+
isLevelVisible(level: number): boolean;
|
|
9258
|
+
/**
|
|
9259
|
+
* 계층 행 라벨 회전 각도를 반환한다.<br/>
|
|
9260
|
+
* 'auto'(기본값)는 라벨 폭이 자기 영역(span)을 벗어날 때만 -90°로 회전해야 하므로,
|
|
9261
|
+
* 실제 각도 결정은 라벨 폭과 span을 아는 View로 위임한다.
|
|
9262
|
+
*/
|
|
9263
|
+
getLevelRotation(level: number): number | 'auto';
|
|
9264
|
+
private $_resolveLevelRotation;
|
|
9265
|
+
getLevelStyle(level: number): SVGStyleOrClass | undefined;
|
|
9266
|
+
getLevelAlign(level: number): Align;
|
|
9267
|
+
getCategoryTreeDepth(): number;
|
|
9268
|
+
getCategoryTreeGroups(): ICategoryTreeGroup[];
|
|
9269
|
+
getDividerLevel(): number;
|
|
9270
|
+
/** level 생략 시 기준 레벨 경계, 지정 시 해당 레벨 행의 그룹 경계 인덱스. */
|
|
9271
|
+
getDividerEnds(level?: number): number[];
|
|
9272
|
+
private $_groupsAtLevel;
|
|
9273
|
+
isDividerBetween(level: number): boolean;
|
|
9274
|
+
isDividerEdge(level: number): boolean;
|
|
9275
|
+
isDividerBelow(level: number): boolean;
|
|
9276
|
+
isDividerTopCap(): boolean;
|
|
9277
|
+
isDividerVisible(): boolean;
|
|
9278
|
+
/** 배경 stripe는 구분선 기준 레벨을 그대로 따른다. */
|
|
9279
|
+
getBandLevel(): number;
|
|
9280
|
+
private $_resolveDividerStyle;
|
|
9281
|
+
private $_dividerStyleOf;
|
|
9282
|
+
getDividerStyle(level?: number): SVGStyleOrClass | undefined;
|
|
9283
|
+
private $_isBandEnabled;
|
|
9284
|
+
isBandVisible(): boolean;
|
|
9285
|
+
getBandGroups(): ICategoryTreeGroup[];
|
|
9286
|
+
getBandColor(index: number): string;
|
|
9287
|
+
private $_resolveBandColors;
|
|
9288
|
+
getCategoryTreeSpan(start: number, end: number, length: number): {
|
|
9289
|
+
center: number;
|
|
9290
|
+
size: number;
|
|
9291
|
+
};
|
|
9292
|
+
getDividerPos(categoryEnd: number, length: number): number;
|
|
9293
|
+
/** 구분선 위치: 첫 카테고리 왼쪽, 그룹 경계, 마지막 카테고리 오른쪽. */
|
|
9294
|
+
getDividerLinePositions(length?: number): number[];
|
|
9114
9295
|
getWeight(key: number): number;
|
|
9296
|
+
/** 수직 축 라벨 배치 Y (시리즈 inverted 카테고리 좌표와 동일). */
|
|
9297
|
+
getLabelY(length: number, pos: number): number;
|
|
9298
|
+
/** 수평 축 라벨 배치 X. */
|
|
9299
|
+
getLabelX(length: number, pos: number): number;
|
|
9115
9300
|
_type(): string;
|
|
9116
9301
|
unitPad(): number;
|
|
9117
9302
|
continuous(): boolean;
|
|
@@ -9119,6 +9304,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9119
9304
|
protected _createGrid(): CategoryAxisGrid;
|
|
9120
9305
|
protected _createTickModel(): CategoryAxisTick;
|
|
9121
9306
|
protected _createLabel(): CategoryAxisLabel;
|
|
9307
|
+
protected _doApply(op: CategoryAxisOptions): void;
|
|
9122
9308
|
collectValues(): void;
|
|
9123
9309
|
getStartAngle(): number;
|
|
9124
9310
|
protected _doPrepareRender(): void;
|
|
@@ -9138,6 +9324,12 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9138
9324
|
min: number;
|
|
9139
9325
|
max: number;
|
|
9140
9326
|
};
|
|
9327
|
+
private $_getSpanFromPts;
|
|
9328
|
+
private $_getDividerPosFromPts;
|
|
9329
|
+
private $_getCategoryEdgePos;
|
|
9330
|
+
private $_parseCategoryLevels;
|
|
9331
|
+
private $_pushCategory;
|
|
9332
|
+
private $_buildCategoryTree;
|
|
9141
9333
|
private $_collectCategories;
|
|
9142
9334
|
}
|
|
9143
9335
|
|
|
@@ -10119,10 +10311,15 @@ interface IPolar {
|
|
|
10119
10311
|
cx: number;
|
|
10120
10312
|
cy: number;
|
|
10121
10313
|
rd: number;
|
|
10314
|
+
/** 안쪽 구멍(도넛) 반지름. 픽셀 단위. */
|
|
10315
|
+
rdInner: number;
|
|
10122
10316
|
cyclic: boolean;
|
|
10123
10317
|
min?: number;
|
|
10124
10318
|
max?: number;
|
|
10125
10319
|
}
|
|
10320
|
+
declare class PolarInnerText extends IconedText<PolarInnerTextOptions> {
|
|
10321
|
+
getDefaultIconPos(): IconPosition;
|
|
10322
|
+
}
|
|
10126
10323
|
declare class BodyDepthLine extends ChartItem<BodyDepthLineOptions> {
|
|
10127
10324
|
static defaults: BodyDepthLineOptions;
|
|
10128
10325
|
}
|
|
@@ -10199,11 +10396,14 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
10199
10396
|
private _emptyView;
|
|
10200
10397
|
_annotations: AnnotationCollection;
|
|
10201
10398
|
private _radiusDim;
|
|
10399
|
+
private _innerRadiusDim;
|
|
10202
10400
|
private _centerXDim;
|
|
10203
10401
|
private _centerYDim;
|
|
10204
10402
|
private _rd;
|
|
10403
|
+
private _rdInner;
|
|
10205
10404
|
private _cx;
|
|
10206
10405
|
private _cy;
|
|
10406
|
+
private _innerText;
|
|
10207
10407
|
constructor(chart: IChart);
|
|
10208
10408
|
protected _doInit(op: OP): void;
|
|
10209
10409
|
anchorByName(name: string): ChartItem;
|
|
@@ -10213,10 +10413,22 @@ declare class Body<OP extends BodyOptions = BodyOptions> extends ChartItem<OP> i
|
|
|
10213
10413
|
get depth(): BodyDepth;
|
|
10214
10414
|
get image(): BackgroundImage;
|
|
10215
10415
|
get emptyView(): EmptyView;
|
|
10416
|
+
/**
|
|
10417
|
+
* {@link innerRadius}가 0보다 클 때, polar 플롯 중앙에 표시되는 텍스트.
|
|
10418
|
+
* 기본 클래스 selector는 <b>'rct-polar-body-inner'</b>이다.
|
|
10419
|
+
*/
|
|
10420
|
+
get innerText(): PolarInnerText;
|
|
10421
|
+
hasInner(): boolean;
|
|
10216
10422
|
get zoomButton(): ZoomButton;
|
|
10217
10423
|
canZoom(): boolean;
|
|
10218
10424
|
_getDepth(w: number, h: number): IBodyDepthExtents;
|
|
10219
10425
|
getRadius(width: number, height: number): number;
|
|
10426
|
+
/**
|
|
10427
|
+
* {@link innerRadius}를 바깥 반지름에 대한 비율(0~1)로 반환한다.
|
|
10428
|
+
* PieSeries.getInnerRadius와 동일한 규칙이다.
|
|
10429
|
+
*/
|
|
10430
|
+
getInnerRadius(rd: number): number;
|
|
10431
|
+
getInnerRadiusPx(rd: number): number;
|
|
10220
10432
|
setPolar(width: number, height: number): Body;
|
|
10221
10433
|
getPolar(axis: Axis): IPolar;
|
|
10222
10434
|
isZoomed(): boolean;
|
|
@@ -10677,7 +10889,8 @@ declare class AxisAnimation extends RcAnimation {
|
|
|
10677
10889
|
private _offset;
|
|
10678
10890
|
constructor(axis: Axis, prevMin: number, prevMax: number, endHandler: RcAnimationEndHandler);
|
|
10679
10891
|
getPos(pos: number, reversed: boolean): number;
|
|
10680
|
-
protected _doUpdate(rate: number): boolean;
|
|
10892
|
+
protected _doUpdate(rate: number, _oldRate: number): boolean;
|
|
10893
|
+
protected _stop(canceled: boolean): void;
|
|
10681
10894
|
protected _doStop(): void;
|
|
10682
10895
|
private $_calcRange;
|
|
10683
10896
|
}
|
|
@@ -10929,12 +11142,35 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
|
|
|
10929
11142
|
static defaults: AxisTickOptions;
|
|
10930
11143
|
private _length;
|
|
10931
11144
|
private _gap;
|
|
11145
|
+
_inside: boolean;
|
|
10932
11146
|
canUseNumSymbols(): boolean;
|
|
10933
11147
|
_getLength(): number;
|
|
10934
11148
|
_getGap(): number;
|
|
10935
11149
|
protected _doSetSimple(src: any): boolean;
|
|
10936
11150
|
protected _doPrepareRender(chart: IChart): void;
|
|
10937
11151
|
}
|
|
11152
|
+
/**
|
|
11153
|
+
* major tick 사이 보조 눈금(minor tick) 모델.<br/>
|
|
11154
|
+
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorTickOptions AxisMinorTickOptions}이고,
|
|
11155
|
+
* {@link https://realchart.co.kr/config/config/base/axis#minortick minorTick} 항목으로 설정한다.
|
|
11156
|
+
*/
|
|
11157
|
+
declare class AxisMinorTick extends AxisItem<AxisMinorTickOptions> {
|
|
11158
|
+
static defaults: AxisMinorTickOptions;
|
|
11159
|
+
private _length;
|
|
11160
|
+
private _count;
|
|
11161
|
+
_getLength(): number;
|
|
11162
|
+
_getCount(): number;
|
|
11163
|
+
protected _doSetSimple(src: any): boolean;
|
|
11164
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
11165
|
+
}
|
|
11166
|
+
/**
|
|
11167
|
+
* major grid 사이 보조 격자선(minor grid line) 모델.<br/>
|
|
11168
|
+
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisMinorGridOptions AxisMinorGridOptions}이고,
|
|
11169
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid grid.minorGrid} 항목으로 설정한다.
|
|
11170
|
+
*/
|
|
11171
|
+
declare class AxisMinorGrid extends AxisItem<AxisMinorGridOptions> {
|
|
11172
|
+
static defaults: AxisMinorGridOptions;
|
|
11173
|
+
}
|
|
10938
11174
|
/**
|
|
10939
11175
|
* 축 label 모델.<br/>
|
|
10940
11176
|
* {@link options 옵션} 모델은 {@link https://realchart.co.kr/docs/api/options/AxisLabelOptions AxisLabelOptions}이고,
|
|
@@ -11092,6 +11328,8 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
|
|
|
11092
11328
|
};
|
|
11093
11329
|
_ticks: IAxisTick[];
|
|
11094
11330
|
_markPoints: number[];
|
|
11331
|
+
_minorValues: number[];
|
|
11332
|
+
_minorMarkPoints: number[];
|
|
11095
11333
|
_vlen: number;
|
|
11096
11334
|
_zoom: AxisZoom;
|
|
11097
11335
|
_values: number[];
|
|
@@ -11454,6 +11692,21 @@ interface AxisLineOptions extends AxisItemOptions {
|
|
|
11454
11692
|
*/
|
|
11455
11693
|
interface AxisSectorLineOptions extends AxisLineOptions {
|
|
11456
11694
|
}
|
|
11695
|
+
/**
|
|
11696
|
+
* @enum
|
|
11697
|
+
*/
|
|
11698
|
+
declare const _AxisTickLocation: {
|
|
11699
|
+
/**
|
|
11700
|
+
* 축선 바깥쪽(기본)으로 tick이 그려진다.
|
|
11701
|
+
*/
|
|
11702
|
+
readonly DEFAULT: "default";
|
|
11703
|
+
/**
|
|
11704
|
+
* 축선 안쪽(플롯 방향)으로 tick이 그려진다.
|
|
11705
|
+
*/
|
|
11706
|
+
readonly INSIDE: "inside";
|
|
11707
|
+
};
|
|
11708
|
+
/** @dummy */
|
|
11709
|
+
type AxisTickLocation = typeof _AxisTickLocation[keyof typeof _AxisTickLocation];
|
|
11457
11710
|
/**
|
|
11458
11711
|
* 축 tick 표시 방식과 tick 위치 마다 표시되는 선(line) 등에 대한 설정 옵션 기반(base).<br/>
|
|
11459
11712
|
* 축 종류에 따라 다양한 설정 속성들이 존재한다.
|
|
@@ -11472,14 +11725,23 @@ interface AxisSectorLineOptions extends AxisLineOptions {
|
|
|
11472
11725
|
* @css 'rct-axis-tick'
|
|
11473
11726
|
*/
|
|
11474
11727
|
interface AxisTickOptions extends AxisItemOptions {
|
|
11728
|
+
/**
|
|
11729
|
+
* tick line 표시 위치 (inside/default).<br/>
|
|
11730
|
+
* 'inside'이면 축선 안쪽(플롯 방향), 'default'이면 바깥쪽으로 tick이 그려진다.<br/>
|
|
11731
|
+
* {@link https://realchart.co.kr/config/config/base/axis/label#location label.location}과 독립적으로 동작한다.
|
|
11732
|
+
* label이 'inside'여도 tick.location이 'inside'가 아니면 tick은 바깥쪽에 표시된다.<br/>
|
|
11733
|
+
* category 축은 {@link https://realchart.co.kr/config/config/base/axis/tick#position position}이 point/edge용이므로 inside/default는 이 속성으로 지정한다.
|
|
11734
|
+
*
|
|
11735
|
+
* @default 'default'
|
|
11736
|
+
*/
|
|
11737
|
+
location?: AxisTickLocation;
|
|
11475
11738
|
/**
|
|
11476
11739
|
* @default false
|
|
11477
11740
|
*/
|
|
11478
11741
|
visible?: boolean;
|
|
11479
11742
|
/**
|
|
11480
11743
|
* axis tick line length.<br/>
|
|
11481
|
-
* 지정하지 않거나 잘못 지정하면
|
|
11482
|
-
* 아니면 7 픽셀로 적용된다.
|
|
11744
|
+
* 지정하지 않거나 잘못 지정하면 7 픽셀로 적용된다.<br/>
|
|
11483
11745
|
* 또, {@link visible}이 false이어도 이 설정만큼 공간을 차지한다.
|
|
11484
11746
|
*/
|
|
11485
11747
|
length?: number;
|
|
@@ -11491,6 +11753,59 @@ interface AxisTickOptions extends AxisItemOptions {
|
|
|
11491
11753
|
*/
|
|
11492
11754
|
gap?: number;
|
|
11493
11755
|
}
|
|
11756
|
+
/**
|
|
11757
|
+
* major grid 사이 보조 격자선(minor grid line) 설정 옵션.<br/>
|
|
11758
|
+
* linear, log, time 축에 적용된다.<br/>
|
|
11759
|
+
* 위치는 {@link AxisMinorTickOptions.count minorTick count}와 동일하게 계산된다
|
|
11760
|
+
* ({@link AxisMinorTickOptions.visible minorTick visible}이 false여도 count는 grid 위치에 사용된다).<br/>
|
|
11761
|
+
* {@link AxisGridOptions.visible grid visible}이 false이면 minor grid도 표시되지 않는다.<br/>
|
|
11762
|
+
* {@link firstVisible}, {@link lastVisible}은 major grid에만 적용되고 minor grid에는 적용되지 않는다.<br/>
|
|
11763
|
+
* {@link depthVisible} 및 depth side panel에는 minor grid가 표시되지 않는다.<br/>
|
|
11764
|
+
* axis break 경계 tick이 있는 major 구간에는 minor grid가 생성되지 않는다.<br/>
|
|
11765
|
+
* 선 스타일은 {@link style} 속성으로 지정한다.
|
|
11766
|
+
*
|
|
11767
|
+
* @css 'rct-axis-minor-grid-line'
|
|
11768
|
+
*/
|
|
11769
|
+
interface AxisMinorGridOptions extends AxisItemOptions {
|
|
11770
|
+
/**
|
|
11771
|
+
* @default false
|
|
11772
|
+
*/
|
|
11773
|
+
visible?: boolean;
|
|
11774
|
+
}
|
|
11775
|
+
/**
|
|
11776
|
+
* major tick 사이에 표시되는 보조 눈금(minor tick) 설정 옵션.<br/>
|
|
11777
|
+
* linear, log, time 축에 적용된다.<br/>
|
|
11778
|
+
* time 축은 major tick 타임스탬프 사이를 선형 보간하여 minor 위치를 계산한다
|
|
11779
|
+
* (달력 단위가 아닌 픽셀 균등 배치).<br/>
|
|
11780
|
+
* log 축은 major tick 값이 0보다 클 때 log 공간에서 보간한다.<br/>
|
|
11781
|
+
* {@link count}는 {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid minor grid} 위치 계산에도 사용된다
|
|
11782
|
+
* (visible이 false여도 grid만 표시할 수 있다).<br/>
|
|
11783
|
+
* major tick이 2개 미만이면 minor tick·grid가 생성되지 않는다.<br/>
|
|
11784
|
+
* axis break 경계 tick이 있는 major 구간에는 minor tick이 생성되지 않는다.<br/>
|
|
11785
|
+
* 선 스타일은 {@link style} 속성으로 지정한다.
|
|
11786
|
+
*
|
|
11787
|
+
* @css 'rct-axis-minor-tick'
|
|
11788
|
+
*/
|
|
11789
|
+
interface AxisMinorTickOptions extends AxisItemOptions {
|
|
11790
|
+
/**
|
|
11791
|
+
* @default false
|
|
11792
|
+
*/
|
|
11793
|
+
visible?: boolean;
|
|
11794
|
+
/**
|
|
11795
|
+
* major tick 한 구간 사이에 표시할 minor tick 개수.<br/>
|
|
11796
|
+
* 1 미만이거나 소수인 값은 내림하여 1 이상의 정수로 적용된다.<br/>
|
|
11797
|
+
* {@link https://realchart.co.kr/config/config/base/axis/grid#minorgrid minor grid} 위치에도 동일하게 적용된다.
|
|
11798
|
+
*
|
|
11799
|
+
* @default 4
|
|
11800
|
+
*/
|
|
11801
|
+
count?: number;
|
|
11802
|
+
/**
|
|
11803
|
+
* minor tick 선 길이(픽셀). major tick보다 짧게 지정하는 것이 일반적이다.
|
|
11804
|
+
*
|
|
11805
|
+
* @default 4
|
|
11806
|
+
*/
|
|
11807
|
+
length?: number;
|
|
11808
|
+
}
|
|
11494
11809
|
/**
|
|
11495
11810
|
* 연속축의 tick 스텝 목록을 동적으로 리턴하는 {@link https://realchart.co.kr/config/config/xAxis/linear/tick#stepcallback 콜백}의 매개변수로 사용된다.
|
|
11496
11811
|
*/
|
|
@@ -11614,6 +11929,12 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11614
11929
|
/**
|
|
11615
11930
|
*/
|
|
11616
11931
|
interface ContinuousAxisGridOptions extends AxisGridOptions {
|
|
11932
|
+
/**
|
|
11933
|
+
* major grid 사이 보조 격자선(minor grid line) 설정 옵션.<br/>
|
|
11934
|
+
* boolean 값으로 지정하면 {@link visible} 속성을 지정한 것과 동일하다.<br/>
|
|
11935
|
+
* 표시 여부는 상위 {@link AxisGridOptions.visible grid visible}이 true일 때만 적용된다.
|
|
11936
|
+
*/
|
|
11937
|
+
minorGrid?: AxisMinorGridOptions | boolean;
|
|
11617
11938
|
}
|
|
11618
11939
|
/**
|
|
11619
11940
|
* @enum
|
|
@@ -12525,6 +12846,168 @@ interface CategoryAxisLabelOptions extends AxisLabelOptions {
|
|
|
12525
12846
|
fillToCategory?: boolean;
|
|
12526
12847
|
}
|
|
12527
12848
|
declare const CategoryAxisType = "category";
|
|
12849
|
+
/**
|
|
12850
|
+
* {@link categoryTree.band band} 세부 설정.
|
|
12851
|
+
*/
|
|
12852
|
+
interface CategoryTreeBandOptions {
|
|
12853
|
+
/**
|
|
12854
|
+
* 교차 배경 stripe 표시 여부.<br/>
|
|
12855
|
+
* {@link colors}만 지정한 경우 기본값은 true이다.
|
|
12856
|
+
*
|
|
12857
|
+
* @default true
|
|
12858
|
+
*/
|
|
12859
|
+
visible?: boolean;
|
|
12860
|
+
/**
|
|
12861
|
+
* 교차로 적용할 배경색 목록.<br/>
|
|
12862
|
+
* 2개 이상 지정하면 순서대로 반복 적용된다.
|
|
12863
|
+
*/
|
|
12864
|
+
colors?: string[];
|
|
12865
|
+
}
|
|
12866
|
+
/**
|
|
12867
|
+
* {@link categoryTree.divider divider} 계층 구분선 설정.
|
|
12868
|
+
*/
|
|
12869
|
+
interface CategoryTreeDividerOptions {
|
|
12870
|
+
/**
|
|
12871
|
+
* 계층 구분선 표시 마스터 on/off.<br/>
|
|
12872
|
+
* false이면 {@link edge}, {@link between}, {@link below}의
|
|
12873
|
+
* 기본 상속이 비활성화된다.
|
|
12874
|
+
* 이때 {@link categoryTree.levels levels} 항목에서 개별 구분선 옵션을 true로 지정하면
|
|
12875
|
+
* 해당 레벨만 표시된다.<br/>
|
|
12876
|
+
* {@link categoryTree.levels levels} 항목에서만 false로 지정하면
|
|
12877
|
+
* 해당 레벨의 구분선만 숨긴다.<br/>
|
|
12878
|
+
* 스타일은 {@link style}로 설정한다.
|
|
12879
|
+
*
|
|
12880
|
+
* @default true
|
|
12881
|
+
*/
|
|
12882
|
+
visible?: boolean;
|
|
12883
|
+
/**
|
|
12884
|
+
* 계층 구분선 스타일을 설정한다.<br/>
|
|
12885
|
+
* true이면 {@css rct-axis-tree-divider} 기본 스타일이 적용된다.
|
|
12886
|
+
* 스타일 클래스 이름이나 스타일 객체를 지정하면 해당 스타일이 사용되고,
|
|
12887
|
+
* 지정하지 않았을 때는 {@link line} 스타일을 따른다.<br/>
|
|
12888
|
+
* false이면 구분선 스타일을 적용하지 않는다.<br/>
|
|
12889
|
+
* {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행 구분선에만 적용되고,
|
|
12890
|
+
* 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.
|
|
12891
|
+
*/
|
|
12892
|
+
style?: SVGStyleOrClass | boolean;
|
|
12893
|
+
/**
|
|
12894
|
+
* 축 시작·끝(첫·마지막 카테고리 경계)에 구분선을 표시한다.<br/>
|
|
12895
|
+
* 가로 축에서는 해당 계층 행 범위 안의 세로선, 세로 축에서는 가로선으로 그려진다.<br/>
|
|
12896
|
+
* {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행에만 적용되고,
|
|
12897
|
+
* 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.<br/>
|
|
12898
|
+
* 계층 라벨 영역 맨 위(가로 축) 가로 구분선은 최상위 {@link edge}와 {@link visible}만
|
|
12899
|
+
* 적용되며 {@link categoryTree.levels levels}에서는 지정할 수 없다.
|
|
12900
|
+
*
|
|
12901
|
+
* @default true
|
|
12902
|
+
*/
|
|
12903
|
+
edge?: boolean;
|
|
12904
|
+
/**
|
|
12905
|
+
* 같은 계층 행 안에서 병합된 라벨(그룹) 사이에 구분선을 표시한다.<br/>
|
|
12906
|
+
* {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행에만 적용되고,
|
|
12907
|
+
* 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.
|
|
12908
|
+
*
|
|
12909
|
+
* @default true
|
|
12910
|
+
*/
|
|
12911
|
+
between?: boolean;
|
|
12912
|
+
/**
|
|
12913
|
+
* 계층 라벨 행 아래(다음 행과의 경계)에 구분선을 표시한다.<br/>
|
|
12914
|
+
* 가로 축에서는 가로선, 세로 축에서는 세로선으로 그려진다.<br/>
|
|
12915
|
+
* {@link categoryTree.levels levels} 항목에서 지정하면 해당 계층 행 아래에만 적용되고,
|
|
12916
|
+
* 지정하지 않으면 상위 {@link categoryTree.divider divider} 값을 상속한다.
|
|
12917
|
+
*
|
|
12918
|
+
* @default true
|
|
12919
|
+
*/
|
|
12920
|
+
below?: boolean;
|
|
12921
|
+
}
|
|
12922
|
+
/**
|
|
12923
|
+
* {@link categoryTree} 세부 설정.
|
|
12924
|
+
*/
|
|
12925
|
+
interface CategoryTreeOptions {
|
|
12926
|
+
/**
|
|
12927
|
+
* 계층 표시 활성화 여부.<br/>
|
|
12928
|
+
* 최상위에서는 계층 기능 전체 on/off에 사용된다.<br/>
|
|
12929
|
+
* {@link categoryTree.levels levels} 항목의 {@link visible}은 해당 계층 행 라벨만 on/off하며,
|
|
12930
|
+
* 상위 {@link categoryTree.visible visible} 값을 상속하지 않는다.
|
|
12931
|
+
*
|
|
12932
|
+
* @default true
|
|
12933
|
+
*/
|
|
12934
|
+
visible?: boolean;
|
|
12935
|
+
/**
|
|
12936
|
+
* 계층 구분선 설정.<br/>
|
|
12937
|
+
* true이면 기본 구분선 옵션이 적용되고,
|
|
12938
|
+
* false이면 구분선 표시가 비활성화된다.<br/>
|
|
12939
|
+
* 객체를 지정하면 {@link visible}, {@link style}, {@link edge}, {@link between}, {@link below}를
|
|
12940
|
+
* 개별 설정할 수 있다.<br/>
|
|
12941
|
+
* {@link categoryTree.levels levels} 항목에서 지정하지 않은 항목은 상위 값을 상속한다.
|
|
12942
|
+
*
|
|
12943
|
+
* @default true
|
|
12944
|
+
*/
|
|
12945
|
+
divider?: CategoryTreeDividerOptions | boolean;
|
|
12946
|
+
/**
|
|
12947
|
+
* 구분선 기준 그룹마다 축 라벨 영역에 교차 배경색을 적용한다.<br/>
|
|
12948
|
+
* 배경 stripe는 구분선 기준 레벨(merge 그룹 수가 가장 적은 레벨)의 그룹 단위로 적용되며,
|
|
12949
|
+
* 계층 행별이 아니라 라벨 영역 전체 높이(또는 너비)를 한 번에 칠한다.<br/>
|
|
12950
|
+
* true이면 {@css rct-axis-tree-band} 기본 색이 적용되고,
|
|
12951
|
+
* 객체를 지정하면 {@link visible}, {@link colors}를 설정할 수 있다.<br/>
|
|
12952
|
+
* false이면 교차 배경을 표시하지 않는다.<br/>
|
|
12953
|
+
* stripe 기준 레벨은 merge 그룹 수가 가장 적은 레벨이 자동 선택된다.
|
|
12954
|
+
*
|
|
12955
|
+
* @default false
|
|
12956
|
+
*/
|
|
12957
|
+
band?: CategoryTreeBandOptions | boolean;
|
|
12958
|
+
/**
|
|
12959
|
+
* {@link categoryField} 순서와 동일한 인덱스로 계층별 설정을 지정한다.<br/>
|
|
12960
|
+
* {@link divider}의 하위 항목은 지정하지 않은 항목이 상위 {@link categoryTree.divider divider} 값을 상속한다.<br/>
|
|
12961
|
+
* {@link visible}과 {@link label}은 레벨 항목 단위로만 적용되며 상위에서 상속하지 않는다.
|
|
12962
|
+
*/
|
|
12963
|
+
levels?: CategoryTreeLevelOptions[];
|
|
12964
|
+
}
|
|
12965
|
+
/**
|
|
12966
|
+
* {@link categoryTree.levels.label label} 계층별 라벨 설정.<br/>
|
|
12967
|
+
* {@link xAxis.label label} 중 계층 행에 적용 가능한 항목만 포함한다.
|
|
12968
|
+
*/
|
|
12969
|
+
interface CategoryTreeLevelLabelOptions {
|
|
12970
|
+
/**
|
|
12971
|
+
* 계층 행 라벨 회전 각도.<br/>
|
|
12972
|
+
* **'auto'**이면 라벨이 자기 영역(해당 그룹 span)을 가로로 벗어날 때만 -90°(세로로 세워
|
|
12973
|
+
* 아래에서 위로 읽는 방향)로 회전하고, 영역 안에 들어가면 회전하지 않는다(0°).
|
|
12974
|
+
* 세로 축에서는 회전하지 않는다(0°).<br/>
|
|
12975
|
+
* 숫자를 지정하면 해당 각도로 고정 회전한다.<br/>
|
|
12976
|
+
* 지정하지 않으면 {@link xAxis.label label}의 {@link rotation} 값을 따르고,
|
|
12977
|
+
* 그 값도 없으면 'auto'로 동작한다.
|
|
12978
|
+
*
|
|
12979
|
+
* @default 'auto'
|
|
12980
|
+
*/
|
|
12981
|
+
rotation?: number | 'auto';
|
|
12982
|
+
/**
|
|
12983
|
+
* 계층 행 라벨 스타일.<br/>
|
|
12984
|
+
* 지정하지 않으면 {@link xAxis.label label} 스타일이 계층 라벨 컨테이너에 적용되고,
|
|
12985
|
+
* 지정하면 해당 행 라벨에만 추가 적용된다.
|
|
12986
|
+
*/
|
|
12987
|
+
style?: SVGStyleOrClass;
|
|
12988
|
+
/**
|
|
12989
|
+
* 계층 행 라벨의 블록 내 정렬.<br/>
|
|
12990
|
+
* 지정하지 않으면 {@link xAxis.label label}의 {@link align} 값을 따른다.
|
|
12991
|
+
*
|
|
12992
|
+
* @default 'center'
|
|
12993
|
+
*/
|
|
12994
|
+
align?: Align;
|
|
12995
|
+
}
|
|
12996
|
+
/**
|
|
12997
|
+
* {@link categoryTree.levels levels} 계층별 설정.<br/>
|
|
12998
|
+
* 인덱스는 {@link categoryField} 배열 순서와 같다.<br/>
|
|
12999
|
+
* {@link divider}는 해당 계층 행에 우선 적용되며,
|
|
13000
|
+
* 지정하지 않은 항목은 상위 {@link categoryTree.divider divider} 값을 상속한다.<br/>
|
|
13001
|
+
* {@link visible}은 해당 계층 행 라벨 표시만 제어하며 상위에서 상속하지 않는다
|
|
13002
|
+
* (라벨을 숨겨도 구분선 설정은 그대로 적용될 수 있다).<br/>
|
|
13003
|
+
* {@link label}은 해당 계층 행 라벨의 회전·스타일·정렬에만 적용된다.
|
|
13004
|
+
*/
|
|
13005
|
+
interface CategoryTreeLevelOptions extends Omit<CategoryTreeOptions, 'levels' | 'band'> {
|
|
13006
|
+
/**
|
|
13007
|
+
* 해당 계층 행 라벨의 회전·스타일·정렬 설정.
|
|
13008
|
+
*/
|
|
13009
|
+
label?: CategoryTreeLevelLabelOptions;
|
|
13010
|
+
}
|
|
12528
13011
|
/**
|
|
12529
13012
|
* 지정된 카테고리 개수로 축을 분할해서 각 카테고리에 연결된 데이터포인트들이 표시되게 한다.<br/>
|
|
12530
13013
|
* 카테고리 하나가 1의 축 값(너비)을 갖는다.
|
|
@@ -12575,7 +13058,10 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
12575
13058
|
* 각 데이터포인트의 이 속성 값 중 문자열값들이 연결된 카테고리 축의 category 목록으로 사용된다.
|
|
12576
13059
|
* field가 둘 이상일때는 마지막 필드 값이 문자열이어야 한다.
|
|
12577
13060
|
* 또, x 값 대신 이 속성 값에 해당하는 categroy 값이 데이터포인트의 x값이 된다.<br/>
|
|
12578
|
-
*
|
|
13061
|
+
* {@link categoryTree}가 꺼져 있을 때는 tick·tooltip에 마지막 필드 값이 표시된다.<br/>
|
|
13062
|
+
* {@link categoryTree}가 켜져 있을 때는 배열 순서대로 축에 가장 가까운 행(level 0)부터
|
|
13063
|
+
* 바깥쪽 행으로 쌓이므로, 가장 세분화된 필드를 배열의 <b>첫 번째</b>에 두는 것이 일반적이다
|
|
13064
|
+
* (tick 라벨 대신 계층 행이 표시되며 tooltip {@link https://realchart.co.kr/config/config/base/series series}의 name 등에는 첫 필드 값이 사용된다).<br/>
|
|
12579
13065
|
* {@link categories}가 지정되면 이 속성은 무시된다.
|
|
12580
13066
|
*/
|
|
12581
13067
|
categoryField?: (string | number) | (string | number)[];
|
|
@@ -12586,6 +13072,23 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
12586
13072
|
* @default '+'
|
|
12587
13073
|
*/
|
|
12588
13074
|
categorySeparator?: string;
|
|
13075
|
+
/**
|
|
13076
|
+
* {@link categoryField}가 2개 이상일 때 계층 구조 라벨 및 관련 표시 옵션.<br/>
|
|
13077
|
+
* true이면 {@link categoryTree.visible visible}이 true인 것과 같고 기본값
|
|
13078
|
+
* ({@link categoryTree.divider.edge edge}: true, {@link categoryTree.divider.between between}: true,
|
|
13079
|
+
* {@link categoryTree.divider.below below}: true, {@link band}: false)이 적용된다.
|
|
13080
|
+
* 각 필드가 하나의 라벨 행이 되며
|
|
13081
|
+
* 입력한 필드 순서대로 축에 가장 가까운 행부터 바깥쪽으로 쌓인다.<br/>
|
|
13082
|
+
* 같은 행에서 값이 연속으로 동일하면 하나의 라벨로 통합되어 해당 구간 전체를 차지한다.<br/>
|
|
13083
|
+
* false이면 {@link categoryTree.visible visible}이 false인 것과 같고, tick에는 마지막 필드 값만 표시된다.<br/>
|
|
13084
|
+
* 빈 객체({})를 지정하면 {@link categoryTree.visible visible}이 true인 것과 같고 위 기본값이 적용된다.<br/>
|
|
13085
|
+
* 객체를 지정하면 {@link visible}, {@link divider}, {@link band}, {@link levels}를 개별 설정할 수 있다.<br/>
|
|
13086
|
+
* 지정하지 않으면({@link @default false}) 계층 표시 없이 tick에는 마지막 {@link categoryField} 값만 표시된다.<br/>
|
|
13087
|
+
* {@link chart.polar polar} 차트에서는 지원하지 않는다.
|
|
13088
|
+
*
|
|
13089
|
+
* @default false
|
|
13090
|
+
*/
|
|
13091
|
+
categoryTree?: CategoryTreeOptions | boolean;
|
|
12589
13092
|
/**
|
|
12590
13093
|
* 명시적으로 지정하는 카테고리 목록.<br/>
|
|
12591
13094
|
* 문자열로 카테고리 항목을 지정하거나,
|
|
@@ -12596,7 +13099,12 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
12596
13099
|
* 이 목록을 지정하지 않으면 축에 연결된 시리즈들로부터 카테고리 목록을 자동 생성한다.
|
|
12597
13100
|
* 하지만 시리즈들이 모두 사라지는 경우 카테고리 목록 역시 사라지므로,
|
|
12598
13101
|
* 기대하는 카테고리 목록을 고정 표시하려는 경우 이 목록을 설정하는 것이 좋다.<br/>
|
|
12599
|
-
* 단, 축의 범위는 해당 옵션에 의해 설정되지 않는다. 축의 범위는 {@link minValue}, {@link maxValue}나 시리즈에 연결된 데이터에 의해
|
|
13102
|
+
* 단, 축의 범위는 해당 옵션에 의해 설정되지 않는다. 축의 범위는 {@link minValue}, {@link maxValue}나 시리즈에 연결된 데이터에 의해 결정된다.<br/>
|
|
13103
|
+
* 이 목록을 사용하면 시리즈에서 카테고리를 수집하지 않는다(데이터 수집용 {@link categoryField}는 무시된다).<br/>
|
|
13104
|
+
* {@link categoryTree}와 함께 사용하려면 각 항목의 name(또는 label)에
|
|
13105
|
+
* {@link categorySeparator}로 연결된 복합 키를 지정해야 하며,
|
|
13106
|
+
* 분해 필드 수는 {@link categoryField} 배열 길이와 같아야 한다.
|
|
13107
|
+
* 복합 키 형식이 맞지 않으면 계층 표시는 비활성화된다.
|
|
12600
13108
|
*/
|
|
12601
13109
|
categories?: (string | object)[];
|
|
12602
13110
|
/**
|
|
@@ -12850,6 +13358,11 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
12850
13358
|
* @append
|
|
12851
13359
|
*/
|
|
12852
13360
|
tick?: ContinuousAxisTickOptions | boolean;
|
|
13361
|
+
/**
|
|
13362
|
+
* major tick 사이 보조 눈금(minor tick) 설정 옵션.<br/>
|
|
13363
|
+
* boolean 값으로 지정하면 {@link visible} 속성을 지정한 것과 동일하다.
|
|
13364
|
+
*/
|
|
13365
|
+
minorTick?: AxisMinorTickOptions | boolean;
|
|
12853
13366
|
/**
|
|
12854
13367
|
* @append
|
|
12855
13368
|
*/
|
|
@@ -13529,6 +14042,11 @@ declare const _ShapeAnnotationShape: {
|
|
|
13529
14042
|
*
|
|
13530
14043
|
*/
|
|
13531
14044
|
readonly LINE: "line";
|
|
14045
|
+
/**
|
|
14046
|
+
* 화살표
|
|
14047
|
+
*
|
|
14048
|
+
*/
|
|
14049
|
+
readonly ARROW: "arrow";
|
|
13532
14050
|
};
|
|
13533
14051
|
/** @dummy */
|
|
13534
14052
|
type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnnotationShape];
|
|
@@ -13536,7 +14054,9 @@ type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnno
|
|
|
13536
14054
|
* Shape 어노테이션.<br/>
|
|
13537
14055
|
* {@link https://realchart.co.kr/docs/api/options/AnnotationOptions#type type}은 'shape'이다.<br/>
|
|
13538
14056
|
* {@link shape} 속성에 표시할 도형 모양을 지정하거나,
|
|
13539
|
-
* {@link path}에 SVG path를 직접 지정할 수
|
|
14057
|
+
* {@link path}에 SVG path를 직접 지정할 수 있다.<br/>
|
|
14058
|
+
* {@link shape}가 `'arrow'`이고 object {@link style}일 때 stroke/fill 기본값이 자동 보정된다.<br/>
|
|
14059
|
+
* CSS class {@link style} 문자열은 자동 보정되지 않는다.
|
|
13540
14060
|
*
|
|
13541
14061
|
* // TODO #fiddle annotation/shape-annotation Shape Annotation
|
|
13542
14062
|
* @css 'rct-shape-annotation'
|
|
@@ -13559,22 +14079,43 @@ interface ShapeAnnotationOptions extends AnnotationOptions {
|
|
|
13559
14079
|
height?: PercentSize;
|
|
13560
14080
|
/**
|
|
13561
14081
|
* Shape 종류.<br/>
|
|
14082
|
+
* `'arrow'`는 {@link x1}, {@link y1}, {@link x2}, {@link y2} 직선 화살표이며,
|
|
14083
|
+
* `'hline'`/`'vline'`처럼 축 전체를 span하지 않는다.
|
|
13562
14084
|
*
|
|
13563
14085
|
* @default 'square'
|
|
13564
14086
|
*/
|
|
13565
14087
|
shape?: ShapeAnnotationShape;
|
|
13566
14088
|
/**
|
|
13567
14089
|
* shape svg path.<br/>
|
|
13568
|
-
* 이 속성이 지정되면 {@link shape}는
|
|
14090
|
+
* 이 속성이 지정되면 {@link shape}는 무시되며, `'arrow'`일 때 화살표 머리도 표시되지 않는다.
|
|
13569
14091
|
*/
|
|
13570
14092
|
path?: string;
|
|
13571
14093
|
/**
|
|
14094
|
+
* {@link shape}가 `'arrow'`일 때 선 굵기(픽셀).<br/>
|
|
14095
|
+
* 지정하면 {@link style}의 strokeWidth보다 우선하며, 렌더 시 {@link style} strokeWidth로 반영된다.<br/>
|
|
14096
|
+
* arrow 전용이며, object {@link style} 미지정 시 strokeWidth 기본값도 함께 적용된다.
|
|
14097
|
+
*
|
|
14098
|
+
* @default 1
|
|
14099
|
+
*/
|
|
14100
|
+
lineWidth?: number;
|
|
14101
|
+
/**
|
|
14102
|
+
* {@link shape}가 `'arrow'`일 때 화살표 머리 크기(픽셀).<br/>
|
|
14103
|
+
* tip에서 wing까지의 거리이며, 선 길이의 90%를 넘지 않는다.<br/>
|
|
14104
|
+
* arrow가 아닌 {@link shape}에서는 무시된다.
|
|
14105
|
+
*
|
|
14106
|
+
* @default 12
|
|
14107
|
+
*/
|
|
14108
|
+
headSize?: number;
|
|
14109
|
+
/**
|
|
14110
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13572
14111
|
*/
|
|
13573
14112
|
series?: string;
|
|
13574
14113
|
/**
|
|
14114
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13575
14115
|
*/
|
|
13576
14116
|
xRange?: number[];
|
|
13577
14117
|
/**
|
|
14118
|
+
* @deprecated 미구현. 사용하지 않는다.
|
|
13578
14119
|
*/
|
|
13579
14120
|
yRange?: number[];
|
|
13580
14121
|
}
|
|
@@ -14407,7 +14948,11 @@ declare class ImageElement extends RcElement {
|
|
|
14407
14948
|
* {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/ContinuousAxisGridOptions ContinuousAxisGridOptions}이다.
|
|
14408
14949
|
*/
|
|
14409
14950
|
declare class ContinuousAxisGrid extends AxisGrid<ContinuousAxisGridOptions> {
|
|
14951
|
+
private _minorGrid;
|
|
14952
|
+
protected _doInit(op: ContinuousAxisGridOptions): void;
|
|
14953
|
+
get minorGrid(): AxisMinorGrid;
|
|
14410
14954
|
getPositions(axis: ContinuousAxis, length: number): number[];
|
|
14955
|
+
getMinorPositions(axis: ContinuousAxis, length: number): number[];
|
|
14411
14956
|
}
|
|
14412
14957
|
/**
|
|
14413
14958
|
* 연속축의 tick 모델.<br/>
|
|
@@ -14502,6 +15047,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14502
15047
|
private static readonly PADDINGS;
|
|
14503
15048
|
static defaults: ContinuousAxisOptions;
|
|
14504
15049
|
private _baseLine;
|
|
15050
|
+
private _minorTick;
|
|
14505
15051
|
_minPadPixels: number;
|
|
14506
15052
|
_maxPadPixels: number;
|
|
14507
15053
|
private _minPaddings;
|
|
@@ -14537,6 +15083,10 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14537
15083
|
* @append
|
|
14538
15084
|
*/
|
|
14539
15085
|
get tick(): ContinuousAxisTick;
|
|
15086
|
+
/**
|
|
15087
|
+
* @append
|
|
15088
|
+
*/
|
|
15089
|
+
get minorTick(): AxisMinorTick;
|
|
14540
15090
|
/**
|
|
14541
15091
|
* @append
|
|
14542
15092
|
*/
|
|
@@ -14552,13 +15102,22 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
|
|
|
14552
15102
|
protected _createGrid(): ContinuousAxisGrid;
|
|
14553
15103
|
protected _createTickModel(): ContinuousAxisTick;
|
|
14554
15104
|
protected abstract _createLabel(): ContinuousAxisLabel;
|
|
15105
|
+
_prepareRender(): void;
|
|
14555
15106
|
protected _doPrepareRender(): void;
|
|
14556
15107
|
private $_trim;
|
|
14557
15108
|
private $_trimSteps;
|
|
14558
15109
|
protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
|
|
14559
15110
|
private $_createTicks;
|
|
14560
15111
|
protected _createTick(index: number, step: number): IAxisTick;
|
|
15112
|
+
/**
|
|
15113
|
+
* major tick 구간 사이 minor tick/grid 값을 계산한다.<br/>
|
|
15114
|
+
* minor tick(#1450)과 minor grid line(#1449)이 동일한 보간을 사용한다.
|
|
15115
|
+
*/
|
|
15116
|
+
private $_buildMinorValues;
|
|
15117
|
+
protected _canInterpolateMinorSegment(v0: number, v1: number): boolean;
|
|
15118
|
+
protected _interpolateMinorValue(v0: number, v1: number, index: number, count: number): number;
|
|
14561
15119
|
_calcPoints(length: number, phase: number): void;
|
|
15120
|
+
private $_calcMinorPoints;
|
|
14562
15121
|
private $_buildBrokenSteps;
|
|
14563
15122
|
private $_calcBrokenSteps;
|
|
14564
15123
|
getPos(length: number, value: number): number;
|
|
@@ -15284,21 +15843,36 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15284
15843
|
static readonly AXIS_CLASS = "rct-axis";
|
|
15285
15844
|
static readonly LINE_CLASS = "rct-axis-line";
|
|
15286
15845
|
static readonly TICK_CLASS = "rct-axis-tick";
|
|
15846
|
+
/** 계층 라벨 행 사이 간격(px). */
|
|
15847
|
+
static readonly HIERARCHY_ROW_GAP = 2;
|
|
15848
|
+
static readonly MINOR_TICK_CLASS = "rct-axis-minor-tick";
|
|
15287
15849
|
_simpleMode: boolean;
|
|
15288
15850
|
private _lineView;
|
|
15289
15851
|
private _lineView2;
|
|
15290
15852
|
private _titleView;
|
|
15291
15853
|
private _markContainer;
|
|
15292
15854
|
private _markViews;
|
|
15855
|
+
private _minorMarkContainer;
|
|
15856
|
+
private _minorMarkViews;
|
|
15293
15857
|
private _labelContainer;
|
|
15294
15858
|
private _labelViews;
|
|
15295
15859
|
private _unitView;
|
|
15296
15860
|
_scrollView: AxisScrollView;
|
|
15297
15861
|
private _reversed;
|
|
15298
15862
|
private _markLen;
|
|
15863
|
+
private _minorMarkLen;
|
|
15299
15864
|
private _tickGap;
|
|
15300
15865
|
private _labelSize;
|
|
15301
15866
|
private _labelRowPts;
|
|
15867
|
+
private _categoryTreeBandContainer;
|
|
15868
|
+
private _categoryTreeBandViews;
|
|
15869
|
+
private _categoryTreeLabelContainer;
|
|
15870
|
+
private _categoryTreeLabelViews;
|
|
15871
|
+
private _categoryTreeDividerContainer;
|
|
15872
|
+
private _categoryTreeDividerViews;
|
|
15873
|
+
private _categoryTreeLevelSizes;
|
|
15874
|
+
private _categoryTreeLevelOffsets;
|
|
15875
|
+
private _categoryTreeExtraSize;
|
|
15302
15876
|
_guideViews: AxisGuideView[];
|
|
15303
15877
|
_frontGuideViews: AxisGuideView[];
|
|
15304
15878
|
_crosshairView: CrosshairFlagView;
|
|
@@ -15324,8 +15898,28 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15324
15898
|
clean(): void;
|
|
15325
15899
|
protected _doMeasure(doc: Document, model: Axis, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
15326
15900
|
protected _doLayout(): void;
|
|
15901
|
+
private $_syncTickMarkViews;
|
|
15902
|
+
private $_prepareTickMarkViews;
|
|
15903
|
+
private $_layoutTickMarkViews;
|
|
15327
15904
|
private $_prepareTickMarks;
|
|
15905
|
+
private $_prepareMinorTickMarks;
|
|
15328
15906
|
private _prepareLabel;
|
|
15907
|
+
/**
|
|
15908
|
+
* 계층 행 라벨 회전 각도를 확정한다.<br/>
|
|
15909
|
+
* 'auto'이면 가로 축에서 라벨 폭이 자기 영역(span)을 벗어날 때만 -90°(아래에서 위로 읽는 방향)로
|
|
15910
|
+
* 회전하고 그 외에는 0°이다(세로 축은 항상 0°). svg를 빌드한 뒤 bbox로 판정하므로 v는 빌드된 상태여야 한다.
|
|
15911
|
+
*/
|
|
15912
|
+
private $_resolveCategoryTreeRotation;
|
|
15913
|
+
/** 계층 라벨: 일반 tick 라벨(_prepareLabel)과 동일하게 layout·background 초기화를 수행한다. */
|
|
15914
|
+
private $_prepareCategoryTreeLabel;
|
|
15915
|
+
private $_isCategoryTreeSpanVisible;
|
|
15916
|
+
private $_equalSVGStyleOrClass;
|
|
15917
|
+
/**
|
|
15918
|
+
* 수직 축 계층 라벨을 (열 중심, 행 중심)에 정확히 배치한다.
|
|
15919
|
+
* 회전 원점을 bbox 중심에 두면 회전이 중심을 보존하므로, rotation 각도와 무관하게
|
|
15920
|
+
* 라벨이 자기 레벨 열·카테고리 행 안에 중앙 정렬된다.
|
|
15921
|
+
*/
|
|
15922
|
+
private $_applyLabelRotationVert;
|
|
15329
15923
|
private $_prepareLabels;
|
|
15330
15924
|
private $_getRows;
|
|
15331
15925
|
private $_getStep;
|
|
@@ -15335,6 +15929,26 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15335
15929
|
private $_checkOverlappedVert2;
|
|
15336
15930
|
private _prevWidth;
|
|
15337
15931
|
private $_measureLabelsVert;
|
|
15932
|
+
private $_ensureCategoryTreeViews;
|
|
15933
|
+
private $_hideCategoryTreeViews;
|
|
15934
|
+
private $_measureCategoryTree;
|
|
15935
|
+
private $_syncCategoryTreeMeasure;
|
|
15936
|
+
private $_layoutCategoryTreeHorz;
|
|
15937
|
+
private $_getBandY;
|
|
15938
|
+
private $_getLevelBoundaryY;
|
|
15939
|
+
private $_getLevelBoundaryX;
|
|
15940
|
+
private $_getLevelColumnCenterX;
|
|
15941
|
+
private $_getLevelRowYRange;
|
|
15942
|
+
private $_getLevelRowXRange;
|
|
15943
|
+
private $_countCategoryTreeDividerLines;
|
|
15944
|
+
private $_prepareCategoryTreeBands;
|
|
15945
|
+
private $_getCategoryTreeLabelXBounds;
|
|
15946
|
+
private $_getCategoryTreeEdgeYBounds;
|
|
15947
|
+
private $_applyCategoryTreeDividerLine;
|
|
15948
|
+
private $_layoutCategoryTreeBandsHorz;
|
|
15949
|
+
private $_layoutCategoryTreeBandsVert;
|
|
15950
|
+
private $_layoutCategoryTreeDividers;
|
|
15951
|
+
private $_layoutCategoryTreeVert;
|
|
15338
15952
|
private $_layoutLabelsHorz;
|
|
15339
15953
|
private $_layoutLabelsVert;
|
|
15340
15954
|
private $_layoutUnitHorz;
|
|
@@ -15523,6 +16137,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
15523
16137
|
declare class ChartControl extends RcControl implements IChartEventListener {
|
|
15524
16138
|
private _chart;
|
|
15525
16139
|
private _chartView;
|
|
16140
|
+
private _contextMenuDismissHandler;
|
|
15526
16141
|
constructor(doc: Document, container: string | HTMLDivElement);
|
|
15527
16142
|
protected _createChartView(doc: Document): ChartView;
|
|
15528
16143
|
protected _createPointerHandler(): ChartPointerHandler;
|
|
@@ -15547,6 +16162,8 @@ declare class ChartControl extends RcControl implements IChartEventListener {
|
|
|
15547
16162
|
protected _doRender(bounds: IRect): void;
|
|
15548
16163
|
protected _doRenderBackground(elt: HTMLDivElement, root: RcElement, width: number, height: number): void;
|
|
15549
16164
|
private _loadModules;
|
|
16165
|
+
private $_bindContextMenuDismiss;
|
|
16166
|
+
private $_unbindContextMenuDismiss;
|
|
15550
16167
|
private _export;
|
|
15551
16168
|
}
|
|
15552
16169
|
|
|
@@ -15680,6 +16297,8 @@ declare class LogAxis extends ContinuousAxis<LogAxisOptions> {
|
|
|
15680
16297
|
* 화면 표시는 역log 값들을 사용한다.
|
|
15681
16298
|
*/
|
|
15682
16299
|
protected _createTick(index: number, step: number): IAxisTick;
|
|
16300
|
+
protected _interpolateMinorValue(v0: number, v1: number, index: number, count: number): number;
|
|
16301
|
+
protected _canInterpolateMinorSegment(v0: number, v1: number): boolean;
|
|
15683
16302
|
protected _calcUnitLen(vals: number[], length: number, axisMin: number, axisMax: number): {
|
|
15684
16303
|
len: number;
|
|
15685
16304
|
min: number;
|
|
@@ -15712,6 +16331,38 @@ declare class LineSeriesPoint extends DataPoint {
|
|
|
15712
16331
|
declare class LineSeriesMarker extends SeriesMarker<LineSeriesMarkerOptions> {
|
|
15713
16332
|
static defaults: LineSeriesMarkerOptions;
|
|
15714
16333
|
}
|
|
16334
|
+
/**
|
|
16335
|
+
* Line 시리즈 양 끝 arrow 마커 설정 모델.
|
|
16336
|
+
*/
|
|
16337
|
+
declare class LineSeriesArrow extends SeriesMarker<LineSeriesArrowOptions> {
|
|
16338
|
+
series: LineSeries;
|
|
16339
|
+
static defaults: LineSeriesArrowOptions;
|
|
16340
|
+
static readonly STYLE_ISOLATION: {
|
|
16341
|
+
stroke: string;
|
|
16342
|
+
strokeDasharray: string;
|
|
16343
|
+
strokeWidth: string;
|
|
16344
|
+
};
|
|
16345
|
+
/** marker._style(raw 옵션)과 달리 prepare 시 fill 기본값·stroke 격리가 적용된 resolved style. */
|
|
16346
|
+
private _runStyle;
|
|
16347
|
+
constructor(series: LineSeries);
|
|
16348
|
+
getPosition(): LineArrowPosition;
|
|
16349
|
+
getShape(): Shape;
|
|
16350
|
+
getRadius(): number;
|
|
16351
|
+
getRotation(): LineArrowRotation;
|
|
16352
|
+
getArrowStyleOverrides(style: SVGStyleOrClass): Partial<SVGStyles>;
|
|
16353
|
+
getArrowStyle(p?: DataPoint): SVGStyleOrClass;
|
|
16354
|
+
buildArrowSlots(pts: LineSeriesPoint[]): {
|
|
16355
|
+
index: number;
|
|
16356
|
+
at: 'start' | 'end';
|
|
16357
|
+
}[];
|
|
16358
|
+
calcAutoAngle(pts: LineSeriesPoint[], index: number, at: 'start' | 'end'): number;
|
|
16359
|
+
calcSegmentAngle(p0: IPointPos, p1: IPointPos, lineType: LineType, stepDir: LineStepDirection, at: 'start' | 'end'): number;
|
|
16360
|
+
calcArrowAngle(pts: LineSeriesPoint[], index: number, at: 'start' | 'end'): number;
|
|
16361
|
+
protected _doPrepareRender(chart: IChart): void;
|
|
16362
|
+
private $_buildRunStyle;
|
|
16363
|
+
private $_applyStyleIsolation;
|
|
16364
|
+
private $_neighborIndex;
|
|
16365
|
+
}
|
|
15715
16366
|
declare class LinePointLabel extends DataPointLabel<LinePointLabelOptions> {
|
|
15716
16367
|
static readonly ALIGN_GAP = 4;
|
|
15717
16368
|
static defaults: LinePointLabelOptions;
|
|
@@ -15777,9 +16428,11 @@ declare class LineSeries<OP extends LineSeriesOptions = LineSeriesOptions> exten
|
|
|
15777
16428
|
static readonly type: string;
|
|
15778
16429
|
static defaults: LineSeriesOptions;
|
|
15779
16430
|
private _flag;
|
|
16431
|
+
private _arrow;
|
|
15780
16432
|
protected _base: number;
|
|
15781
16433
|
protected _doInit(op: OP): void;
|
|
15782
16434
|
get flag(): LineSeriesFlag;
|
|
16435
|
+
get arrow(): LineSeriesArrow;
|
|
15783
16436
|
backDir(): LineStepDirection;
|
|
15784
16437
|
isConnectEnds(based: boolean, cyclic: boolean): boolean;
|
|
15785
16438
|
isMarker(): boolean;
|
|
@@ -16725,15 +17378,13 @@ declare class ImageAnnotation extends Annotation<ImageAnnotationOptions> {
|
|
|
16725
17378
|
declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
16726
17379
|
static readonly type: string;
|
|
16727
17380
|
static defaults: ShapeAnnotationOptions;
|
|
16728
|
-
private
|
|
16729
|
-
private _yRange;
|
|
16730
|
-
getSeries(): {
|
|
16731
|
-
series: ISeries;
|
|
16732
|
-
xRange: number[];
|
|
16733
|
-
yRange: number[];
|
|
16734
|
-
};
|
|
17381
|
+
private _headSize;
|
|
16735
17382
|
getShape(): ShapeAnnotationShape;
|
|
17383
|
+
hasCustomPath(): boolean;
|
|
17384
|
+
getHeadSize(): number;
|
|
17385
|
+
protected _doApply(options: ShapeAnnotationOptions): void;
|
|
16736
17386
|
protected _doSetSimple(src: any): boolean;
|
|
17387
|
+
private $_resolveArrowStyle;
|
|
16737
17388
|
}
|
|
16738
17389
|
|
|
16739
17390
|
/** @private */
|
|
@@ -16820,6 +17471,7 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
|
|
|
16820
17471
|
private _rangeClips;
|
|
16821
17472
|
protected _polar: IPolar;
|
|
16822
17473
|
_tester: PathElement;
|
|
17474
|
+
private _arrowViews;
|
|
16823
17475
|
constructor(doc: Document, styleName: string);
|
|
16824
17476
|
getClipContainer(): RcElement;
|
|
16825
17477
|
protected _getPointPool(): PointViewPool;
|
|
@@ -16863,6 +17515,10 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
|
|
|
16863
17515
|
protected _drawCurves(polar: IPolar, lines: PointLine[], sb: PathBuilder): void;
|
|
16864
17516
|
protected _buildAreas(lines: PointLine[], t1: LineType, t2?: LineType): string;
|
|
16865
17517
|
setHoverStyle(pv: RcElement): void;
|
|
17518
|
+
protected _doLayout(): void;
|
|
17519
|
+
private $_layoutArrows;
|
|
17520
|
+
private $_applyArrowStyle;
|
|
17521
|
+
private $_isolateClassArrowStrokeDasharray;
|
|
16866
17522
|
}
|
|
16867
17523
|
declare class LineSeriesView extends LineSeriesBaseView<LineSeries> {
|
|
16868
17524
|
static readonly CLASS = "rct-line-series";
|
|
@@ -17478,9 +18134,13 @@ declare class ImageAnnotationView extends AnnotationView<ImageAnnotation> {
|
|
|
17478
18134
|
declare class ShapeAnnotationView extends AnnotationView<ShapeAnnotation> {
|
|
17479
18135
|
static readonly CLASS_NAME: string;
|
|
17480
18136
|
private _shapeView;
|
|
18137
|
+
private _headView;
|
|
17481
18138
|
constructor(doc: Document);
|
|
17482
18139
|
protected _doMeasure(doc: Document, model: ShapeAnnotation, hintWidth: number, hintHeight: number, phase: number): Size;
|
|
17483
18140
|
protected _doLayout(p: Point): void;
|
|
18141
|
+
private $_headView;
|
|
18142
|
+
private $_resetHeadView;
|
|
18143
|
+
private $_lineEndpoints;
|
|
17484
18144
|
}
|
|
17485
18145
|
|
|
17486
18146
|
declare const isIE: boolean;
|
|
@@ -17579,4 +18239,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
17579
18239
|
declare const createData: typeof Globals.createData;
|
|
17580
18240
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
17581
18241
|
|
|
17582
|
-
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 };
|
|
18242
|
+
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, CategoryAxisLabelOptions, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, CategoryTreeBandOptions, CategoryTreeDividerOptions, CategoryTreeLevelLabelOptions, CategoryTreeLevelOptions, CategoryTreeOptions, 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, LineArrowPosition, LineArrowRotation, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesArrowOptions, 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 };
|