realchart 1.4.27 → 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 +42 -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 +472 -6
- 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 +24 -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
|
@@ -2814,6 +2814,92 @@ interface LineSeriesFlagOptions extends Omit<IconedTextOptions, 'numberFormat' |
|
|
|
2814
2814
|
*/
|
|
2815
2815
|
offset?: number;
|
|
2816
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
|
+
}
|
|
2817
2903
|
/**
|
|
2818
2904
|
* @enum
|
|
2819
2905
|
*/
|
|
@@ -2897,6 +2983,11 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
|
|
|
2897
2983
|
*
|
|
2898
2984
|
*/
|
|
2899
2985
|
flag?: LineSeriesFlagOptions;
|
|
2986
|
+
/**
|
|
2987
|
+
* 라인 양 끝(또는 한쪽 끝)에 표시되는 arrow 마커 설정.
|
|
2988
|
+
*
|
|
2989
|
+
*/
|
|
2990
|
+
arrow?: LineSeriesArrowOptions;
|
|
2900
2991
|
/**
|
|
2901
2992
|
* polar 좌표계이고, x축의 totalAngle이 360도이 경우,
|
|
2902
2993
|
* 양끝 데이터포인터를 이어서 표시할 지 여부.<br/>
|
|
@@ -9074,6 +9165,15 @@ declare class Tooltip extends ChartItem<TooltipOptions> {
|
|
|
9074
9165
|
protected _doApply(options: TooltipOptions): void;
|
|
9075
9166
|
}
|
|
9076
9167
|
|
|
9168
|
+
/**
|
|
9169
|
+
* @private
|
|
9170
|
+
*/
|
|
9171
|
+
interface ICategoryTreeGroup {
|
|
9172
|
+
level: number;
|
|
9173
|
+
start: number;
|
|
9174
|
+
end: number;
|
|
9175
|
+
label: string;
|
|
9176
|
+
}
|
|
9077
9177
|
/**
|
|
9078
9178
|
* 카테고리축의 tick 모델.<br/>
|
|
9079
9179
|
* {@link options} 모델은 {@link https://realchart.co.kr/docs/api/options/CategoryAxisTickOptions CategoryAxisTickOptions}이다.
|
|
@@ -9110,12 +9210,24 @@ declare class CategoryAxisGrid extends AxisGrid<AxisGridOptions> {
|
|
|
9110
9210
|
*/
|
|
9111
9211
|
declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
9112
9212
|
static type: string;
|
|
9213
|
+
static readonly categoryTreeDividerDefaults: Readonly<CategoryTreeDividerOptions>;
|
|
9214
|
+
static readonly categoryTreeDefaults: Readonly<CategoryTreeOptions>;
|
|
9113
9215
|
static defaults: CategoryAxisOptions;
|
|
9114
9216
|
_categories: {
|
|
9115
9217
|
c: string;
|
|
9116
9218
|
t: string;
|
|
9219
|
+
levels?: string[];
|
|
9117
9220
|
i?: string;
|
|
9221
|
+
v?: number;
|
|
9118
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;
|
|
9119
9231
|
_weights: Map<number, number>;
|
|
9120
9232
|
_len: number;
|
|
9121
9233
|
_minPad: number;
|
|
@@ -9136,7 +9248,55 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9136
9248
|
get label(): CategoryAxisLabel;
|
|
9137
9249
|
xValueAt(pos: number): number;
|
|
9138
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[];
|
|
9139
9295
|
getWeight(key: number): number;
|
|
9296
|
+
/** 수직 축 라벨 배치 Y (시리즈 inverted 카테고리 좌표와 동일). */
|
|
9297
|
+
getLabelY(length: number, pos: number): number;
|
|
9298
|
+
/** 수평 축 라벨 배치 X. */
|
|
9299
|
+
getLabelX(length: number, pos: number): number;
|
|
9140
9300
|
_type(): string;
|
|
9141
9301
|
unitPad(): number;
|
|
9142
9302
|
continuous(): boolean;
|
|
@@ -9144,6 +9304,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9144
9304
|
protected _createGrid(): CategoryAxisGrid;
|
|
9145
9305
|
protected _createTickModel(): CategoryAxisTick;
|
|
9146
9306
|
protected _createLabel(): CategoryAxisLabel;
|
|
9307
|
+
protected _doApply(op: CategoryAxisOptions): void;
|
|
9147
9308
|
collectValues(): void;
|
|
9148
9309
|
getStartAngle(): number;
|
|
9149
9310
|
protected _doPrepareRender(): void;
|
|
@@ -9163,6 +9324,12 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
|
|
|
9163
9324
|
min: number;
|
|
9164
9325
|
max: number;
|
|
9165
9326
|
};
|
|
9327
|
+
private $_getSpanFromPts;
|
|
9328
|
+
private $_getDividerPosFromPts;
|
|
9329
|
+
private $_getCategoryEdgePos;
|
|
9330
|
+
private $_parseCategoryLevels;
|
|
9331
|
+
private $_pushCategory;
|
|
9332
|
+
private $_buildCategoryTree;
|
|
9166
9333
|
private $_collectCategories;
|
|
9167
9334
|
}
|
|
9168
9335
|
|
|
@@ -10722,7 +10889,8 @@ declare class AxisAnimation extends RcAnimation {
|
|
|
10722
10889
|
private _offset;
|
|
10723
10890
|
constructor(axis: Axis, prevMin: number, prevMax: number, endHandler: RcAnimationEndHandler);
|
|
10724
10891
|
getPos(pos: number, reversed: boolean): number;
|
|
10725
|
-
protected _doUpdate(rate: number): boolean;
|
|
10892
|
+
protected _doUpdate(rate: number, _oldRate: number): boolean;
|
|
10893
|
+
protected _stop(canceled: boolean): void;
|
|
10726
10894
|
protected _doStop(): void;
|
|
10727
10895
|
private $_calcRange;
|
|
10728
10896
|
}
|
|
@@ -10974,6 +11142,7 @@ declare abstract class AxisTick<OP extends AxisTickOptions = AxisTickOptions> ex
|
|
|
10974
11142
|
static defaults: AxisTickOptions;
|
|
10975
11143
|
private _length;
|
|
10976
11144
|
private _gap;
|
|
11145
|
+
_inside: boolean;
|
|
10977
11146
|
canUseNumSymbols(): boolean;
|
|
10978
11147
|
_getLength(): number;
|
|
10979
11148
|
_getGap(): number;
|
|
@@ -11523,6 +11692,21 @@ interface AxisLineOptions extends AxisItemOptions {
|
|
|
11523
11692
|
*/
|
|
11524
11693
|
interface AxisSectorLineOptions extends AxisLineOptions {
|
|
11525
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];
|
|
11526
11710
|
/**
|
|
11527
11711
|
* 축 tick 표시 방식과 tick 위치 마다 표시되는 선(line) 등에 대한 설정 옵션 기반(base).<br/>
|
|
11528
11712
|
* 축 종류에 따라 다양한 설정 속성들이 존재한다.
|
|
@@ -11541,14 +11725,23 @@ interface AxisSectorLineOptions extends AxisLineOptions {
|
|
|
11541
11725
|
* @css 'rct-axis-tick'
|
|
11542
11726
|
*/
|
|
11543
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;
|
|
11544
11738
|
/**
|
|
11545
11739
|
* @default false
|
|
11546
11740
|
*/
|
|
11547
11741
|
visible?: boolean;
|
|
11548
11742
|
/**
|
|
11549
11743
|
* axis tick line length.<br/>
|
|
11550
|
-
* 지정하지 않거나 잘못 지정하면
|
|
11551
|
-
* 아니면 7 픽셀로 적용된다.
|
|
11744
|
+
* 지정하지 않거나 잘못 지정하면 7 픽셀로 적용된다.<br/>
|
|
11552
11745
|
* 또, {@link visible}이 false이어도 이 설정만큼 공간을 차지한다.
|
|
11553
11746
|
*/
|
|
11554
11747
|
length?: number;
|
|
@@ -12653,6 +12846,168 @@ interface CategoryAxisLabelOptions extends AxisLabelOptions {
|
|
|
12653
12846
|
fillToCategory?: boolean;
|
|
12654
12847
|
}
|
|
12655
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
|
+
}
|
|
12656
13011
|
/**
|
|
12657
13012
|
* 지정된 카테고리 개수로 축을 분할해서 각 카테고리에 연결된 데이터포인트들이 표시되게 한다.<br/>
|
|
12658
13013
|
* 카테고리 하나가 1의 축 값(너비)을 갖는다.
|
|
@@ -12703,7 +13058,10 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
12703
13058
|
* 각 데이터포인트의 이 속성 값 중 문자열값들이 연결된 카테고리 축의 category 목록으로 사용된다.
|
|
12704
13059
|
* field가 둘 이상일때는 마지막 필드 값이 문자열이어야 한다.
|
|
12705
13060
|
* 또, x 값 대신 이 속성 값에 해당하는 categroy 값이 데이터포인트의 x값이 된다.<br/>
|
|
12706
|
-
*
|
|
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/>
|
|
12707
13065
|
* {@link categories}가 지정되면 이 속성은 무시된다.
|
|
12708
13066
|
*/
|
|
12709
13067
|
categoryField?: (string | number) | (string | number)[];
|
|
@@ -12714,6 +13072,23 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
12714
13072
|
* @default '+'
|
|
12715
13073
|
*/
|
|
12716
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;
|
|
12717
13092
|
/**
|
|
12718
13093
|
* 명시적으로 지정하는 카테고리 목록.<br/>
|
|
12719
13094
|
* 문자열로 카테고리 항목을 지정하거나,
|
|
@@ -12724,7 +13099,12 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
12724
13099
|
* 이 목록을 지정하지 않으면 축에 연결된 시리즈들로부터 카테고리 목록을 자동 생성한다.
|
|
12725
13100
|
* 하지만 시리즈들이 모두 사라지는 경우 카테고리 목록 역시 사라지므로,
|
|
12726
13101
|
* 기대하는 카테고리 목록을 고정 표시하려는 경우 이 목록을 설정하는 것이 좋다.<br/>
|
|
12727
|
-
* 단, 축의 범위는 해당 옵션에 의해 설정되지 않는다. 축의 범위는 {@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
|
+
* 복합 키 형식이 맞지 않으면 계층 표시는 비활성화된다.
|
|
12728
13108
|
*/
|
|
12729
13109
|
categories?: (string | object)[];
|
|
12730
13110
|
/**
|
|
@@ -15463,6 +15843,8 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15463
15843
|
static readonly AXIS_CLASS = "rct-axis";
|
|
15464
15844
|
static readonly LINE_CLASS = "rct-axis-line";
|
|
15465
15845
|
static readonly TICK_CLASS = "rct-axis-tick";
|
|
15846
|
+
/** 계층 라벨 행 사이 간격(px). */
|
|
15847
|
+
static readonly HIERARCHY_ROW_GAP = 2;
|
|
15466
15848
|
static readonly MINOR_TICK_CLASS = "rct-axis-minor-tick";
|
|
15467
15849
|
_simpleMode: boolean;
|
|
15468
15850
|
private _lineView;
|
|
@@ -15482,6 +15864,15 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15482
15864
|
private _tickGap;
|
|
15483
15865
|
private _labelSize;
|
|
15484
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;
|
|
15485
15876
|
_guideViews: AxisGuideView[];
|
|
15486
15877
|
_frontGuideViews: AxisGuideView[];
|
|
15487
15878
|
_crosshairView: CrosshairFlagView;
|
|
@@ -15513,6 +15904,22 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15513
15904
|
private $_prepareTickMarks;
|
|
15514
15905
|
private $_prepareMinorTickMarks;
|
|
15515
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;
|
|
15516
15923
|
private $_prepareLabels;
|
|
15517
15924
|
private $_getRows;
|
|
15518
15925
|
private $_getStep;
|
|
@@ -15522,6 +15929,26 @@ declare class AxisView extends ChartElement<Axis> {
|
|
|
15522
15929
|
private $_checkOverlappedVert2;
|
|
15523
15930
|
private _prevWidth;
|
|
15524
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;
|
|
15525
15952
|
private $_layoutLabelsHorz;
|
|
15526
15953
|
private $_layoutLabelsVert;
|
|
15527
15954
|
private $_layoutUnitHorz;
|
|
@@ -15904,6 +16331,38 @@ declare class LineSeriesPoint extends DataPoint {
|
|
|
15904
16331
|
declare class LineSeriesMarker extends SeriesMarker<LineSeriesMarkerOptions> {
|
|
15905
16332
|
static defaults: LineSeriesMarkerOptions;
|
|
15906
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
|
+
}
|
|
15907
16366
|
declare class LinePointLabel extends DataPointLabel<LinePointLabelOptions> {
|
|
15908
16367
|
static readonly ALIGN_GAP = 4;
|
|
15909
16368
|
static defaults: LinePointLabelOptions;
|
|
@@ -15969,9 +16428,11 @@ declare class LineSeries<OP extends LineSeriesOptions = LineSeriesOptions> exten
|
|
|
15969
16428
|
static readonly type: string;
|
|
15970
16429
|
static defaults: LineSeriesOptions;
|
|
15971
16430
|
private _flag;
|
|
16431
|
+
private _arrow;
|
|
15972
16432
|
protected _base: number;
|
|
15973
16433
|
protected _doInit(op: OP): void;
|
|
15974
16434
|
get flag(): LineSeriesFlag;
|
|
16435
|
+
get arrow(): LineSeriesArrow;
|
|
15975
16436
|
backDir(): LineStepDirection;
|
|
15976
16437
|
isConnectEnds(based: boolean, cyclic: boolean): boolean;
|
|
15977
16438
|
isMarker(): boolean;
|
|
@@ -17010,6 +17471,7 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
|
|
|
17010
17471
|
private _rangeClips;
|
|
17011
17472
|
protected _polar: IPolar;
|
|
17012
17473
|
_tester: PathElement;
|
|
17474
|
+
private _arrowViews;
|
|
17013
17475
|
constructor(doc: Document, styleName: string);
|
|
17014
17476
|
getClipContainer(): RcElement;
|
|
17015
17477
|
protected _getPointPool(): PointViewPool;
|
|
@@ -17053,6 +17515,10 @@ declare abstract class LineSeriesBaseView<T extends LineSeriesBase = LineSeriesB
|
|
|
17053
17515
|
protected _drawCurves(polar: IPolar, lines: PointLine[], sb: PathBuilder): void;
|
|
17054
17516
|
protected _buildAreas(lines: PointLine[], t1: LineType, t2?: LineType): string;
|
|
17055
17517
|
setHoverStyle(pv: RcElement): void;
|
|
17518
|
+
protected _doLayout(): void;
|
|
17519
|
+
private $_layoutArrows;
|
|
17520
|
+
private $_applyArrowStyle;
|
|
17521
|
+
private $_isolateClassArrowStrokeDasharray;
|
|
17056
17522
|
}
|
|
17057
17523
|
declare class LineSeriesView extends LineSeriesBaseView<LineSeries> {
|
|
17058
17524
|
static readonly CLASS = "rct-line-series";
|
|
@@ -17773,4 +18239,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
17773
18239
|
declare const createData: typeof Globals.createData;
|
|
17774
18240
|
declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
17775
18241
|
|
|
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 };
|
|
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 };
|