realchart 1.3.7 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gauge.js +1 -1
- package/gauge.mjs +1 -1
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/index.d.ts +580 -17
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/split.js +1 -1
- package/split.mjs +1 -1
- package/treemap.js +1 -1
- package/treemap.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/wordcloud.js +1 -1
- package/wordcloud.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -229,6 +229,7 @@ declare const _Align: {
|
|
|
229
229
|
*/
|
|
230
230
|
readonly RIGHT: "right";
|
|
231
231
|
};
|
|
232
|
+
/** @dummy */
|
|
232
233
|
type Align = typeof _Align[keyof typeof _Align];
|
|
233
234
|
/**
|
|
234
235
|
* 수직 정렬.
|
|
@@ -242,6 +243,7 @@ declare const _VerticalAlign: {
|
|
|
242
243
|
/** @config */
|
|
243
244
|
readonly BOTTOM: "bottom";
|
|
244
245
|
};
|
|
246
|
+
/** @dummy */
|
|
245
247
|
type VerticalAlign = typeof _VerticalAlign[keyof typeof _VerticalAlign];
|
|
246
248
|
/**
|
|
247
249
|
* SVG 스타일 속성.<br/>
|
|
@@ -312,6 +314,7 @@ interface SVGStyles {
|
|
|
312
314
|
*/
|
|
313
315
|
textAlign?: Align;
|
|
314
316
|
}
|
|
317
|
+
/** @dummy */
|
|
315
318
|
type SVGStyleOrClass = SVGStyles | string;
|
|
316
319
|
/**
|
|
317
320
|
* 텍스트 표시 효과.
|
|
@@ -333,6 +336,7 @@ declare const _ChartTextEffect: {
|
|
|
333
336
|
*/
|
|
334
337
|
readonly BACKGROUND: "background";
|
|
335
338
|
};
|
|
339
|
+
/** @dummy */
|
|
336
340
|
type ChartTextEffect = typeof _ChartTextEffect[keyof typeof _ChartTextEffect];
|
|
337
341
|
/**
|
|
338
342
|
* @enum
|
|
@@ -342,6 +346,7 @@ declare const _ChartTextOverflow: {
|
|
|
342
346
|
readonly ELLIPSIS: "ellipsis";
|
|
343
347
|
readonly WRAP: "wrap";
|
|
344
348
|
};
|
|
349
|
+
/** @dummy */
|
|
345
350
|
type ChartTextOverflow = typeof _ChartTextOverflow[keyof typeof _ChartTextOverflow];
|
|
346
351
|
interface IMinMax {
|
|
347
352
|
min: number;
|
|
@@ -384,6 +389,7 @@ declare const _AlignBase: {
|
|
|
384
389
|
*/
|
|
385
390
|
readonly PARENT: "parent";
|
|
386
391
|
};
|
|
392
|
+
/** @dummy */
|
|
387
393
|
type AlignBase = typeof _AlignBase[keyof typeof _AlignBase];
|
|
388
394
|
/**
|
|
389
395
|
* {@page config.base.series#viewRanges} 등에 설정할 수 있는 값 범위 정보.<br/>
|
|
@@ -391,23 +397,49 @@ type AlignBase = typeof _AlignBase[keyof typeof _AlignBase];
|
|
|
391
397
|
* {@page config.base.series#viewRanges}에는 이 설정 객체 배열로 지정한다.
|
|
392
398
|
*/
|
|
393
399
|
interface ValueRange {
|
|
400
|
+
/**
|
|
401
|
+
*/
|
|
394
402
|
fromValue?: number;
|
|
403
|
+
/**
|
|
404
|
+
*/
|
|
395
405
|
toValue?: number;
|
|
406
|
+
/**
|
|
407
|
+
*/
|
|
396
408
|
color: string;
|
|
409
|
+
/**
|
|
410
|
+
*/
|
|
397
411
|
label?: string;
|
|
412
|
+
/**
|
|
413
|
+
*/
|
|
398
414
|
style?: SVGStyleOrClass;
|
|
415
|
+
/**
|
|
416
|
+
*/
|
|
399
417
|
areaStyle?: SVGStyleOrClass;
|
|
400
418
|
}
|
|
401
419
|
/**
|
|
402
420
|
* {@page config.base.series#viewRanges}에 설정할 수 있는 값 범위 목록.<br/>
|
|
403
421
|
*/
|
|
404
422
|
interface ValueRangeList {
|
|
423
|
+
/**
|
|
424
|
+
*/
|
|
405
425
|
fromValue?: number;
|
|
426
|
+
/**
|
|
427
|
+
*/
|
|
406
428
|
toValue?: number;
|
|
429
|
+
/**
|
|
430
|
+
*/
|
|
407
431
|
steps?: number[];
|
|
432
|
+
/**
|
|
433
|
+
*/
|
|
408
434
|
colors: string[];
|
|
435
|
+
/**
|
|
436
|
+
*/
|
|
409
437
|
labels?: string[];
|
|
438
|
+
/**
|
|
439
|
+
*/
|
|
410
440
|
styles?: SVGStyleOrClass[];
|
|
441
|
+
/**
|
|
442
|
+
*/
|
|
411
443
|
areaStyles?: SVGStyleOrClass[];
|
|
412
444
|
}
|
|
413
445
|
/**
|
|
@@ -444,6 +476,7 @@ declare const _PaletteMode: {
|
|
|
444
476
|
*/
|
|
445
477
|
readonly RANDOM: "random";
|
|
446
478
|
};
|
|
479
|
+
/** @dummy */
|
|
447
480
|
type PaletteMode = typeof _PaletteMode[keyof typeof _PaletteMode];
|
|
448
481
|
/**
|
|
449
482
|
* 시리즈 load animation 타입.
|
|
@@ -456,6 +489,7 @@ declare const _SeriesLoadAnimation: {
|
|
|
456
489
|
readonly SPREAD: "spread";
|
|
457
490
|
readonly FADEIN: "fadein";
|
|
458
491
|
};
|
|
492
|
+
/** @dummy */
|
|
459
493
|
type SeriesLoadAnimation = typeof _SeriesLoadAnimation[keyof typeof _SeriesLoadAnimation];
|
|
460
494
|
/**
|
|
461
495
|
* @enum
|
|
@@ -468,6 +502,7 @@ declare const _WritingMode: {
|
|
|
468
502
|
/** @config */
|
|
469
503
|
readonly VERTICAL_RL: "vertical-rl";
|
|
470
504
|
};
|
|
505
|
+
/** @dummy */
|
|
471
506
|
type WritingMode = typeof _WritingMode[keyof typeof _WritingMode];
|
|
472
507
|
/**
|
|
473
508
|
* @enum
|
|
@@ -478,11 +513,18 @@ declare const _TextOrientation: {
|
|
|
478
513
|
/** @config */
|
|
479
514
|
readonly UPRIGHT: "upright";
|
|
480
515
|
};
|
|
516
|
+
/** @dummy */
|
|
481
517
|
type TextOrientation = typeof _TextOrientation[keyof typeof _TextOrientation];
|
|
482
518
|
|
|
519
|
+
/**
|
|
520
|
+
*/
|
|
483
521
|
interface ConfigObject {
|
|
522
|
+
/**
|
|
523
|
+
*/
|
|
484
524
|
[key: string]: any;
|
|
485
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
*/
|
|
486
528
|
interface ChartItemOptions {
|
|
487
529
|
/**
|
|
488
530
|
* 표시 여부.<br/>
|
|
@@ -496,6 +538,8 @@ interface ChartItemOptions {
|
|
|
496
538
|
*/
|
|
497
539
|
style?: SVGStyleOrClass;
|
|
498
540
|
}
|
|
541
|
+
/**
|
|
542
|
+
*/
|
|
499
543
|
interface ChartTextOptions extends ChartItemOptions {
|
|
500
544
|
/**
|
|
501
545
|
* 텍스트 표시 효과.<br/>
|
|
@@ -576,7 +620,10 @@ declare const _IconPosition: {
|
|
|
576
620
|
readonly TOP: "top";
|
|
577
621
|
readonly BOTTOM: "bottom";
|
|
578
622
|
};
|
|
623
|
+
/** @dummy */
|
|
579
624
|
type IconPosition = typeof _IconPosition[keyof typeof _IconPosition];
|
|
625
|
+
/**
|
|
626
|
+
*/
|
|
580
627
|
interface IconedTextOptions extends ChartTextOptions {
|
|
581
628
|
/**
|
|
582
629
|
* 이이콘 표시 위치<br/>
|
|
@@ -613,25 +660,69 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
613
660
|
*/
|
|
614
661
|
iconHeight?: number;
|
|
615
662
|
}
|
|
663
|
+
/**
|
|
664
|
+
* 데이터포인트 뷰가 {@page config.base.series#onPointClick 클릭}될 때,
|
|
665
|
+
* 마우스 {@page config.base.series#onPointHover hover}될 때,
|
|
666
|
+
* 또는 {@page config.base.series#pointStyleCallback 동적 스타일}을 리턴하는 콜백이나 이벤트 등의 매개변수로 사용된다.<br/>
|
|
667
|
+
* {@page config.base.series#onPointHover 콜백}의 매개변수로 사용된다.<br/>
|
|
668
|
+
*/
|
|
616
669
|
interface DataPointCallbackArgs {
|
|
670
|
+
/**
|
|
671
|
+
*/
|
|
617
672
|
series: object;
|
|
673
|
+
/**
|
|
674
|
+
*/
|
|
618
675
|
count: number;
|
|
676
|
+
/**
|
|
677
|
+
*/
|
|
619
678
|
vcount: number;
|
|
679
|
+
/**
|
|
680
|
+
*/
|
|
620
681
|
yMin: number;
|
|
682
|
+
/**
|
|
683
|
+
*/
|
|
621
684
|
yMax: number;
|
|
685
|
+
/**
|
|
686
|
+
*/
|
|
622
687
|
xMin: number;
|
|
688
|
+
/**
|
|
689
|
+
*/
|
|
623
690
|
xMax: number;
|
|
691
|
+
/**
|
|
692
|
+
*/
|
|
624
693
|
zMin: number;
|
|
694
|
+
/**
|
|
695
|
+
*/
|
|
625
696
|
zMax: number;
|
|
697
|
+
/**
|
|
698
|
+
*/
|
|
626
699
|
index: number;
|
|
700
|
+
/**
|
|
701
|
+
*/
|
|
627
702
|
vindex: number;
|
|
703
|
+
/**
|
|
704
|
+
*/
|
|
628
705
|
x: any;
|
|
706
|
+
/**
|
|
707
|
+
*/
|
|
629
708
|
y: any;
|
|
709
|
+
/**
|
|
710
|
+
*/
|
|
630
711
|
z: any;
|
|
712
|
+
/**
|
|
713
|
+
*/
|
|
631
714
|
xValue: any;
|
|
715
|
+
/**
|
|
716
|
+
*/
|
|
632
717
|
yValue: any;
|
|
718
|
+
/**
|
|
719
|
+
*/
|
|
633
720
|
zValue: any;
|
|
721
|
+
/**
|
|
722
|
+
*/
|
|
634
723
|
labelIndex: number;
|
|
724
|
+
/**
|
|
725
|
+
*/
|
|
635
726
|
source: any;
|
|
636
727
|
}
|
|
637
728
|
|
|
@@ -654,6 +745,7 @@ declare const _AnnotationScope: {
|
|
|
654
745
|
*/
|
|
655
746
|
readonly CONTAINER: "container";
|
|
656
747
|
};
|
|
748
|
+
/** @dummy */
|
|
657
749
|
type AnnotationScope = typeof _AnnotationScope[keyof typeof _AnnotationScope];
|
|
658
750
|
interface AnnotationAnimationOptions {
|
|
659
751
|
type: string;
|
|
@@ -668,6 +760,8 @@ interface AnnotationAnimationOptions {
|
|
|
668
760
|
* @config chart.annotation[base]
|
|
669
761
|
*/
|
|
670
762
|
interface AnnotationOptions extends ChartItemOptions {
|
|
763
|
+
/**
|
|
764
|
+
*/
|
|
671
765
|
type?: AnnotationType;
|
|
672
766
|
/**
|
|
673
767
|
* true로 지정하면 시리즈나 게이지들 위에 표시된다.<br/>
|
|
@@ -782,6 +876,8 @@ declare const ImageAnnotationType = "image";
|
|
|
782
876
|
* @config chart.annotation[type=image]
|
|
783
877
|
*/
|
|
784
878
|
interface ImageAnnotationOptions extends AnnotationOptions {
|
|
879
|
+
/**
|
|
880
|
+
*/
|
|
785
881
|
type?: typeof ImageAnnotationType;
|
|
786
882
|
/**
|
|
787
883
|
* @override
|
|
@@ -830,7 +926,23 @@ declare const _ShapeAnnotationShape: {
|
|
|
830
926
|
* 직사각형
|
|
831
927
|
*/
|
|
832
928
|
readonly RECTANGLE: "rectangle";
|
|
929
|
+
/**
|
|
930
|
+
* 수직선
|
|
931
|
+
* @config
|
|
932
|
+
*/
|
|
933
|
+
readonly VLINE: "vline";
|
|
934
|
+
/**
|
|
935
|
+
* 수평선
|
|
936
|
+
* @config
|
|
937
|
+
*/
|
|
938
|
+
readonly HLINE: "hline";
|
|
939
|
+
/**
|
|
940
|
+
* 직선
|
|
941
|
+
* @config
|
|
942
|
+
*/
|
|
943
|
+
readonly LINE: "line";
|
|
833
944
|
};
|
|
945
|
+
/** @dummy */
|
|
834
946
|
type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnnotationShape];
|
|
835
947
|
/**
|
|
836
948
|
* Shape 어노테이션.<br/>
|
|
@@ -843,6 +955,8 @@ type ShapeAnnotationShape = typeof _ShapeAnnotationShape[keyof typeof _ShapeAnno
|
|
|
843
955
|
* @config chart.annotation[type=shape]
|
|
844
956
|
*/
|
|
845
957
|
interface ShapeAnnotationOptions extends AnnotationOptions {
|
|
958
|
+
/**
|
|
959
|
+
*/
|
|
846
960
|
type?: typeof ShapeAnnotationType;
|
|
847
961
|
/**
|
|
848
962
|
* @override
|
|
@@ -867,8 +981,14 @@ interface ShapeAnnotationOptions extends AnnotationOptions {
|
|
|
867
981
|
* 이 속성이 지정되면 {@page shape}는 무시된다.
|
|
868
982
|
*/
|
|
869
983
|
path?: string;
|
|
984
|
+
/**
|
|
985
|
+
*/
|
|
870
986
|
series?: string;
|
|
987
|
+
/**
|
|
988
|
+
*/
|
|
871
989
|
xRange?: number[];
|
|
990
|
+
/**
|
|
991
|
+
*/
|
|
872
992
|
yRange?: number[];
|
|
873
993
|
}
|
|
874
994
|
declare const TextAnnotationType = "text";
|
|
@@ -881,6 +1001,8 @@ declare const TextAnnotationType = "text";
|
|
|
881
1001
|
* @config chart.annotation[type=text]
|
|
882
1002
|
*/
|
|
883
1003
|
interface TextAnnotationOptions extends AnnotationOptions {
|
|
1004
|
+
/**
|
|
1005
|
+
*/
|
|
884
1006
|
type?: typeof TextAnnotationType;
|
|
885
1007
|
/**
|
|
886
1008
|
* @override
|
|
@@ -926,7 +1048,9 @@ declare const AnnotationTypes: {
|
|
|
926
1048
|
readonly ShapeAnnotationType: "shape";
|
|
927
1049
|
readonly TextAnnotationType: "text";
|
|
928
1050
|
};
|
|
1051
|
+
/** @dummy */
|
|
929
1052
|
type AnnotationType = typeof AnnotationTypes[keyof typeof AnnotationTypes];
|
|
1053
|
+
/** @dummy */
|
|
930
1054
|
type AnnotationOptionsType = ImageAnnotationOptions | ShapeAnnotationOptions | TextAnnotationOptions;
|
|
931
1055
|
|
|
932
1056
|
interface IRect {
|
|
@@ -1285,12 +1409,25 @@ declare const _Shapes: {
|
|
|
1285
1409
|
* @config
|
|
1286
1410
|
*/
|
|
1287
1411
|
readonly RECTANGLE: "rectangle";
|
|
1412
|
+
/**
|
|
1413
|
+
* 수직선
|
|
1414
|
+
* @config
|
|
1415
|
+
*/
|
|
1416
|
+
readonly VLINE: "vline";
|
|
1417
|
+
/**
|
|
1418
|
+
* 수평선
|
|
1419
|
+
* @config
|
|
1420
|
+
*/
|
|
1421
|
+
readonly HLINE: "hline";
|
|
1422
|
+
/**
|
|
1423
|
+
* 직선
|
|
1424
|
+
* @config
|
|
1425
|
+
*/
|
|
1426
|
+
readonly LINE: "line";
|
|
1288
1427
|
};
|
|
1428
|
+
/** @dummy */
|
|
1289
1429
|
type Shape = typeof _Shapes[keyof typeof _Shapes];
|
|
1290
1430
|
|
|
1291
|
-
type PointHoverCallback = (args: DataPointCallbackArgs) => void;
|
|
1292
|
-
type PointClickCallback = (args: DataPointCallbackArgs) => boolean;
|
|
1293
|
-
type PointStyleCallback = (args: DataPointCallbackArgs) => SVGStyleOrClass;
|
|
1294
1431
|
/**
|
|
1295
1432
|
* 시리즈 데이터포인트 {@page config.base.series.pointLabel 라벨} 표시 위치.<br/>
|
|
1296
1433
|
* {@page config.base.series.pointLabel.position} 속성 값으로 사용된다.
|
|
@@ -1321,6 +1458,7 @@ declare const _PointLabelPosition: {
|
|
|
1321
1458
|
*/
|
|
1322
1459
|
readonly OUTSIDE: "outside";
|
|
1323
1460
|
};
|
|
1461
|
+
/** @dummy */
|
|
1324
1462
|
type PointLabelPosition = typeof _PointLabelPosition[keyof typeof _PointLabelPosition];
|
|
1325
1463
|
/**
|
|
1326
1464
|
* 시리즈 데이터포인트들의 label 옵션.<br/>
|
|
@@ -1434,6 +1572,7 @@ declare const _TrendLineType: {
|
|
|
1434
1572
|
*/
|
|
1435
1573
|
readonly MOVING_AVERAGE: "movingAverage";
|
|
1436
1574
|
};
|
|
1575
|
+
/** @dummy */
|
|
1437
1576
|
type TrendLineType = typeof _TrendLineType[keyof typeof _TrendLineType];
|
|
1438
1577
|
/**
|
|
1439
1578
|
* 시리즈 추세선 옵션.<br/>
|
|
@@ -1478,6 +1617,8 @@ interface TrendlineOptions extends ChartItemOptions {
|
|
|
1478
1617
|
* @config chart.series[base]
|
|
1479
1618
|
*/
|
|
1480
1619
|
interface SeriesOptions extends ChartItemOptions {
|
|
1620
|
+
/**
|
|
1621
|
+
*/
|
|
1481
1622
|
type?: string;
|
|
1482
1623
|
/**
|
|
1483
1624
|
* 시리즈 이름.<br/>
|
|
@@ -1614,6 +1755,8 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1614
1755
|
* 데이터포인트 툴팁 텍스트.
|
|
1615
1756
|
*/
|
|
1616
1757
|
tooltipText?: string;
|
|
1758
|
+
/**
|
|
1759
|
+
*/
|
|
1617
1760
|
tooltipCallback?: (args: any) => string;
|
|
1618
1761
|
/**
|
|
1619
1762
|
* 차트 설정 로드 시 실행되는 animation 종류.
|
|
@@ -1631,7 +1774,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1631
1774
|
/**
|
|
1632
1775
|
* 데이터포인트의 동적 스타일 콜백.<br/>
|
|
1633
1776
|
*/
|
|
1634
|
-
pointStyleCallback?:
|
|
1777
|
+
pointStyleCallback?: (args: DataPointCallbackArgs) => SVGStyleOrClass;
|
|
1635
1778
|
/**
|
|
1636
1779
|
* 시리즈의 hover, focus, tooltip 상호작용 여부를 지정한다.
|
|
1637
1780
|
*
|
|
@@ -1646,19 +1789,23 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1646
1789
|
* 데이터 point가 클릭될 때 호출되는 이벤트 콜백.<br/>
|
|
1647
1790
|
* 명시적 true를 리턴하면 기본 동작이 진행되지 않는다.
|
|
1648
1791
|
*/
|
|
1649
|
-
onPointClick?:
|
|
1792
|
+
onPointClick?: (args: DataPointCallbackArgs) => boolean;
|
|
1650
1793
|
/**
|
|
1651
1794
|
* 마우스가 데이터 point 위에 올라가거나 빠져나갈 때 호출되는 이벤트 콜백.<br/>
|
|
1652
1795
|
* 빠져나가는 경우 args 매개변수는 null이다.
|
|
1653
1796
|
*/
|
|
1654
|
-
onPointHover?:
|
|
1797
|
+
onPointHover?: (args: DataPointCallbackArgs) => void;
|
|
1655
1798
|
}
|
|
1799
|
+
/**
|
|
1800
|
+
*/
|
|
1656
1801
|
interface ConnectableSeriesOptions extends SeriesOptions {
|
|
1657
1802
|
/**
|
|
1658
1803
|
* 추세선 옵션.<br/>
|
|
1659
1804
|
*/
|
|
1660
1805
|
trendline?: TrendlineOptions;
|
|
1661
1806
|
}
|
|
1807
|
+
/**
|
|
1808
|
+
*/
|
|
1662
1809
|
interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
1663
1810
|
/**
|
|
1664
1811
|
* 시리즈가 그룹에 포함되지 않거나,
|
|
@@ -1670,6 +1817,8 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
|
1670
1817
|
*
|
|
1671
1818
|
*/
|
|
1672
1819
|
pointWidth?: number;
|
|
1820
|
+
/**
|
|
1821
|
+
*/
|
|
1673
1822
|
pointPos?: number;
|
|
1674
1823
|
/**
|
|
1675
1824
|
* 이 시리즈의 point가 차지하는 영역 중에서 point bar 양쪽 끝에 채워지는 빈 영역의 크기.
|
|
@@ -1680,6 +1829,8 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
|
|
|
1680
1829
|
* @default undefined 한 카테고리에 cluster 가능한 시리즈가 하나만 표시되면 0.25, group에 포함된 경우 0.1, 여러 시리즈와 같이 표시되면 0.2.
|
|
1681
1830
|
*/
|
|
1682
1831
|
pointPadding?: number;
|
|
1832
|
+
/**
|
|
1833
|
+
*/
|
|
1683
1834
|
minPointWidth?: number;
|
|
1684
1835
|
/**
|
|
1685
1836
|
* 구분 배치가 가능한 둘 이상의 시리즈나 시리즈그룸이 표시 중일 때 구분 배치할 지 여부.<br/>
|
|
@@ -1699,6 +1850,7 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
1699
1850
|
*
|
|
1700
1851
|
* // 0을 설정하지 않으면 belowStyle이 작동하지 않는다.
|
|
1701
1852
|
* // http://localhost:6010/realchart/demo/bar-negative.html
|
|
1853
|
+
* @default 0
|
|
1702
1854
|
*/
|
|
1703
1855
|
baseValue?: number;
|
|
1704
1856
|
/**
|
|
@@ -1712,6 +1864,8 @@ interface BasedSeriesOptions extends ClusterableSeriesOptions {
|
|
|
1712
1864
|
*/
|
|
1713
1865
|
belowStyle?: SVGStyleOrClass;
|
|
1714
1866
|
}
|
|
1867
|
+
/**
|
|
1868
|
+
*/
|
|
1715
1869
|
interface BarSeriesBaseOptions extends BasedSeriesOptions {
|
|
1716
1870
|
/**
|
|
1717
1871
|
* true로 지정하면 포인트 bar 별로 색을 다르게 표시한다.
|
|
@@ -1758,6 +1912,7 @@ declare const _SeriesGroupLayout: {
|
|
|
1758
1912
|
*/
|
|
1759
1913
|
readonly FILL: "fill";
|
|
1760
1914
|
};
|
|
1915
|
+
/** @dummy */
|
|
1761
1916
|
type SeriesGroupLayout = typeof _SeriesGroupLayout[keyof typeof _SeriesGroupLayout];
|
|
1762
1917
|
/**
|
|
1763
1918
|
* 같은 종류의 단일 시리즈들을 여러 개 묶어서 표시한다.<br/>
|
|
@@ -1765,7 +1920,11 @@ type SeriesGroupLayout = typeof _SeriesGroupLayout[keyof typeof _SeriesGroupLayo
|
|
|
1765
1920
|
* @config chart.seriesGroup[base]
|
|
1766
1921
|
*/
|
|
1767
1922
|
interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends ChartItemOptions {
|
|
1923
|
+
/**
|
|
1924
|
+
*/
|
|
1768
1925
|
row?: number;
|
|
1926
|
+
/**
|
|
1927
|
+
*/
|
|
1769
1928
|
col?: number;
|
|
1770
1929
|
/**
|
|
1771
1930
|
* 단일 시리즈 옵션 배열.
|
|
@@ -1803,6 +1962,8 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
|
|
|
1803
1962
|
* @default 0
|
|
1804
1963
|
*/
|
|
1805
1964
|
zOrder?: number;
|
|
1965
|
+
/**
|
|
1966
|
+
*/
|
|
1806
1967
|
noClip?: boolean;
|
|
1807
1968
|
/**
|
|
1808
1969
|
* 그룹 툴팁의 위쪽에 표시되는 텍스트.\
|
|
@@ -1837,6 +1998,8 @@ declare const LineSeriesGroupType = "linegroup";
|
|
|
1837
1998
|
* @config chart.series[type=linegroup]
|
|
1838
1999
|
*/
|
|
1839
2000
|
interface LineSeriesGroupOptions extends SeriesGroupOptions<LineSeriesOptions> {
|
|
2001
|
+
/**
|
|
2002
|
+
*/
|
|
1840
2003
|
type?: typeof LineSeriesGroupType;
|
|
1841
2004
|
/**
|
|
1842
2005
|
* 이 그룹에 포함된 시리즈들의 line 종류.
|
|
@@ -1844,6 +2007,8 @@ interface LineSeriesGroupOptions extends SeriesGroupOptions<LineSeriesOptions> {
|
|
|
1844
2007
|
* @default 'default'
|
|
1845
2008
|
*/
|
|
1846
2009
|
lineType?: LineType;
|
|
2010
|
+
/**
|
|
2011
|
+
*/
|
|
1847
2012
|
baseValue?: number;
|
|
1848
2013
|
}
|
|
1849
2014
|
declare const AreaSeriesGroupType = "areagroup";
|
|
@@ -1854,6 +2019,8 @@ declare const AreaSeriesGroupType = "areagroup";
|
|
|
1854
2019
|
* @config chart.series[type=areagroup]
|
|
1855
2020
|
*/
|
|
1856
2021
|
interface AreaSeriesGroupOptions extends SeriesGroupOptions<AreaSeriesOptions> {
|
|
2022
|
+
/**
|
|
2023
|
+
*/
|
|
1857
2024
|
type?: typeof AreaSeriesGroupType;
|
|
1858
2025
|
/**
|
|
1859
2026
|
* 이 그룹에 포함된 시리즈들의 line 종류.
|
|
@@ -1861,8 +2028,12 @@ interface AreaSeriesGroupOptions extends SeriesGroupOptions<AreaSeriesOptions> {
|
|
|
1861
2028
|
* @default 'default'
|
|
1862
2029
|
*/
|
|
1863
2030
|
lineType?: LineType;
|
|
2031
|
+
/**
|
|
2032
|
+
*/
|
|
1864
2033
|
baseValue?: number;
|
|
1865
2034
|
}
|
|
2035
|
+
/**
|
|
2036
|
+
*/
|
|
1866
2037
|
interface ClusterableSeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends SeriesGroupOptions<T> {
|
|
1867
2038
|
/**
|
|
1868
2039
|
* 축 단위 너비에서 이 그룹이 차지하는 상대적 너비.
|
|
@@ -1879,6 +2050,8 @@ interface ClusterableSeriesGroupOptions<T extends SeriesOptions = SeriesOptions>
|
|
|
1879
2050
|
*/
|
|
1880
2051
|
clusterable?: boolean;
|
|
1881
2052
|
}
|
|
2053
|
+
/**
|
|
2054
|
+
*/
|
|
1882
2055
|
interface BarSeriesGroupBaseOptions<T extends BarSeriesBaseOptions> extends ClusterableSeriesGroupOptions<T> {
|
|
1883
2056
|
/**
|
|
1884
2057
|
* @default 0
|
|
@@ -1901,8 +2074,10 @@ interface SeriesMarkerOptions extends ChartItemOptions {
|
|
|
1901
2074
|
* 데이터포인트 마커의 동적 스타일 콜백.<br/>
|
|
1902
2075
|
* 이 콜백에서 리턴되는 스타일이 가장 우선적으로 적용된다.
|
|
1903
2076
|
*/
|
|
1904
|
-
styleCallback?:
|
|
2077
|
+
styleCallback?: (args: DataPointCallbackArgs) => SVGStyleOrClass;
|
|
1905
2078
|
}
|
|
2079
|
+
/**
|
|
2080
|
+
*/
|
|
1906
2081
|
interface MarkerSeriesOptions extends ConnectableSeriesOptions {
|
|
1907
2082
|
/**
|
|
1908
2083
|
* 명시적으로 지정하지 않으면 typeIndex에 따라 Shapes 중 하나로 돌아가면서 설정된다.
|
|
@@ -2025,6 +2200,7 @@ declare const _PointLabelAlign: {
|
|
|
2025
2200
|
*/
|
|
2026
2201
|
readonly FAR: "far";
|
|
2027
2202
|
};
|
|
2203
|
+
/** @dummy */
|
|
2028
2204
|
type PointLabelAlign = typeof _PointLabelAlign[keyof typeof _PointLabelAlign];
|
|
2029
2205
|
/**
|
|
2030
2206
|
* 겹치는 데이터포인트 라벨들의 처리 방식.<br/>
|
|
@@ -2044,6 +2220,7 @@ declare const _PointLabelDedupeMode: {
|
|
|
2044
2220
|
*/
|
|
2045
2221
|
readonly LARGEST_FIRST: "largestFirst";
|
|
2046
2222
|
};
|
|
2223
|
+
/** @dummy */
|
|
2047
2224
|
type PointLabelDedupeMode = typeof _PointLabelDedupeMode[keyof typeof _PointLabelDedupeMode];
|
|
2048
2225
|
/**
|
|
2049
2226
|
* 영역을 벗어나는 데이터포인트 라벨들의 표시 여부.<br/>
|
|
@@ -2059,6 +2236,7 @@ declare const _PointLabelOverflow: {
|
|
|
2059
2236
|
*/
|
|
2060
2237
|
readonly HIDDEN: "hidden";
|
|
2061
2238
|
};
|
|
2239
|
+
/** @dummy */
|
|
2062
2240
|
type PointLabelOverflow = typeof _PointLabelOverflow[keyof typeof _PointLabelOverflow];
|
|
2063
2241
|
/**
|
|
2064
2242
|
* pie 및 funnel 시리즈의 데이터포인트 label 옵션.<br/>
|
|
@@ -2185,6 +2363,8 @@ declare const BarRangeSeriesType = "barrange";
|
|
|
2185
2363
|
* @config chart.series[type=barrange]
|
|
2186
2364
|
*/
|
|
2187
2365
|
interface BarRangeSeriesOptions extends LowRangedSeriesOptions {
|
|
2366
|
+
/**
|
|
2367
|
+
*/
|
|
2188
2368
|
type?: typeof BarRangeSeriesType;
|
|
2189
2369
|
/**
|
|
2190
2370
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 low 값을 지정하는 속성명이나 인덱스.<br/>
|
|
@@ -2234,6 +2414,8 @@ declare const BarSeriesType = "bar";
|
|
|
2234
2414
|
* @config chart.series[type=bar]
|
|
2235
2415
|
*/
|
|
2236
2416
|
interface BarSeriesOptions extends BarSeriesBaseOptions {
|
|
2417
|
+
/**
|
|
2418
|
+
*/
|
|
2237
2419
|
type?: typeof BarSeriesType;
|
|
2238
2420
|
/**
|
|
2239
2421
|
* 지정한 반지름 크기로 데이터포인트 bar의 위쪽 모서리를 둥글게 표시한다.\
|
|
@@ -2256,6 +2438,8 @@ declare const BarSeriesGroupType = "bargroup";
|
|
|
2256
2438
|
* @config chart.series[type=bargroup]
|
|
2257
2439
|
*/
|
|
2258
2440
|
interface BarSeriesGroupOptions extends BarSeriesGroupBaseOptions<BarSeriesOptions> {
|
|
2441
|
+
/**
|
|
2442
|
+
*/
|
|
2259
2443
|
type?: typeof BarSeriesGroupType;
|
|
2260
2444
|
}
|
|
2261
2445
|
declare const PieSeriesGroupType = "piegroup";
|
|
@@ -2266,6 +2450,8 @@ declare const PieSeriesGroupType = "piegroup";
|
|
|
2266
2450
|
* @config chart.series[type=piegroup]
|
|
2267
2451
|
*/
|
|
2268
2452
|
interface PieSeriesGroupOptions extends SeriesGroupOptions<PieSeriesOptions> {
|
|
2453
|
+
/**
|
|
2454
|
+
*/
|
|
2269
2455
|
type?: typeof PieSeriesGroupType;
|
|
2270
2456
|
/**
|
|
2271
2457
|
* polar 그룹일 때 원형 플롯 영역의 크기.
|
|
@@ -2291,6 +2477,8 @@ interface PieSeriesGroupOptions extends SeriesGroupOptions<PieSeriesOptions> {
|
|
|
2291
2477
|
*/
|
|
2292
2478
|
innerSize?: PercentSize;
|
|
2293
2479
|
}
|
|
2480
|
+
/**
|
|
2481
|
+
*/
|
|
2294
2482
|
interface LinePointLabelOptions extends DataPointLabelOptions {
|
|
2295
2483
|
/**
|
|
2296
2484
|
* @override
|
|
@@ -2328,6 +2516,7 @@ declare const _LineType: {
|
|
|
2328
2516
|
*/
|
|
2329
2517
|
readonly STEP: "step";
|
|
2330
2518
|
};
|
|
2519
|
+
/** @dummy */
|
|
2331
2520
|
type LineType = typeof _LineType[keyof typeof _LineType];
|
|
2332
2521
|
/**
|
|
2333
2522
|
* Line 시리즈의 마지막 데이터포인트 옆에 표시되는 아이콘과 텍스트 설정 모델.<br/>
|
|
@@ -2354,6 +2543,7 @@ declare const _LineStepDirection: {
|
|
|
2354
2543
|
readonly BACKWARD: "backward";
|
|
2355
2544
|
readonly CENTER: "center";
|
|
2356
2545
|
};
|
|
2546
|
+
/** @dummy */
|
|
2357
2547
|
type LineStepDirection = typeof _LineStepDirection[keyof typeof _LineStepDirection];
|
|
2358
2548
|
/**
|
|
2359
2549
|
* Line 시리즈.<br/>
|
|
@@ -2444,6 +2634,8 @@ declare const SplineSeriesType = "spline";
|
|
|
2444
2634
|
* @config chart.series[type=spline]
|
|
2445
2635
|
*/
|
|
2446
2636
|
interface SplineSeriesOptions extends LineSeriesOptions {
|
|
2637
|
+
/**
|
|
2638
|
+
*/
|
|
2447
2639
|
type?: typeof SplineSeriesType;
|
|
2448
2640
|
/**
|
|
2449
2641
|
* @override
|
|
@@ -2477,6 +2669,8 @@ interface SplineSeriesOptions extends LineSeriesOptions {
|
|
|
2477
2669
|
* @config chart.series[type=area]
|
|
2478
2670
|
*/
|
|
2479
2671
|
interface AreaSeriesOptions extends LineSeriesOptions {
|
|
2672
|
+
/**
|
|
2673
|
+
*/
|
|
2480
2674
|
type?: AreaSeriesOptionsType;
|
|
2481
2675
|
/**
|
|
2482
2676
|
* area 영역에 추가적으로 적용되는 {@page it.SVGStyles 스타일셋} 또는 css {@page https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors selector}.
|
|
@@ -2516,6 +2710,8 @@ declare const BellCurveSeriesType = "bellcurve";
|
|
|
2516
2710
|
* @config chart.series[type=bellcurve]
|
|
2517
2711
|
*/
|
|
2518
2712
|
interface BellCurveSeriesOptions extends AreaSeriesOptions {
|
|
2713
|
+
/**
|
|
2714
|
+
*/
|
|
2519
2715
|
type?: typeof BellCurveSeriesType;
|
|
2520
2716
|
/**
|
|
2521
2717
|
* 이 시리즈 data point들을 구성할 수 있는 데이터를 포함한 원본 시리즈.
|
|
@@ -2569,6 +2765,8 @@ declare const BoxPlotSeriesType = "boxplot";
|
|
|
2569
2765
|
* @config chart.series[type=boxplot]
|
|
2570
2766
|
*/
|
|
2571
2767
|
interface BoxPlotSeriesOptions extends LowRangedSeriesOptions {
|
|
2768
|
+
/**
|
|
2769
|
+
*/
|
|
2572
2770
|
type?: typeof BoxPlotSeriesType;
|
|
2573
2771
|
/**
|
|
2574
2772
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 min값을 지정하는 속성명이나 인덱스.<br/>
|
|
@@ -2613,6 +2811,7 @@ declare const _BubbleSizeMode: {
|
|
|
2613
2811
|
readonly WIDTH: "width";
|
|
2614
2812
|
readonly AREA: "area";
|
|
2615
2813
|
};
|
|
2814
|
+
/** @dummy */
|
|
2616
2815
|
type BubbleSizeMode = typeof _BubbleSizeMode[keyof typeof _BubbleSizeMode];
|
|
2617
2816
|
declare const BubbleSeriesType = "bubble";
|
|
2618
2817
|
/**
|
|
@@ -2645,6 +2844,8 @@ declare const BubbleSeriesType = "bubble";
|
|
|
2645
2844
|
* @config chart.series[type=bubble]
|
|
2646
2845
|
*/
|
|
2647
2846
|
interface BubbleSeriesOptions extends MarkerSeriesOptions {
|
|
2847
|
+
/**
|
|
2848
|
+
*/
|
|
2648
2849
|
type?: typeof BubbleSeriesType;
|
|
2649
2850
|
/**
|
|
2650
2851
|
* 버블 크기를 결정하는 방식.
|
|
@@ -2680,6 +2881,8 @@ declare const BumpSeriesType = "bump";
|
|
|
2680
2881
|
* @config chart.series[type=bump]
|
|
2681
2882
|
*/
|
|
2682
2883
|
interface BumpSeriesGroupOptions extends SeriesGroupOptions<LineSeriesMarkerOptions> {
|
|
2884
|
+
/**
|
|
2885
|
+
*/
|
|
2683
2886
|
type?: typeof BumpSeriesType;
|
|
2684
2887
|
}
|
|
2685
2888
|
/**
|
|
@@ -2713,6 +2916,8 @@ interface BumpSeriesGroupOptions extends SeriesGroupOptions<LineSeriesMarkerOpti
|
|
|
2713
2916
|
* @config chart.series[type=candlestick]
|
|
2714
2917
|
*/
|
|
2715
2918
|
interface CandlestickSeriesOptions extends LowRangedSeriesOptions {
|
|
2919
|
+
/**
|
|
2920
|
+
*/
|
|
2716
2921
|
type?: CandlestickSeriesOptionsType;
|
|
2717
2922
|
/**
|
|
2718
2923
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 최저(low) 값을 지정하는 속성명이나 인덱스.<br/>
|
|
@@ -2749,6 +2954,8 @@ interface CandlestickSeriesOptions extends LowRangedSeriesOptions {
|
|
|
2749
2954
|
*/
|
|
2750
2955
|
tooltipText?: string;
|
|
2751
2956
|
}
|
|
2957
|
+
/**
|
|
2958
|
+
*/
|
|
2752
2959
|
interface CircleBarPointLabelOptions extends DataPointLabelOptions {
|
|
2753
2960
|
/**
|
|
2754
2961
|
* @override
|
|
@@ -2784,6 +2991,8 @@ declare const CircleBarSeriesType = "circlebar";
|
|
|
2784
2991
|
* @config chart.series[type=circlebar]
|
|
2785
2992
|
*/
|
|
2786
2993
|
interface CircleBarSeriesOptions extends BarSeriesBaseOptions {
|
|
2994
|
+
/**
|
|
2995
|
+
*/
|
|
2787
2996
|
type?: typeof CircleBarSeriesType;
|
|
2788
2997
|
}
|
|
2789
2998
|
declare const CircleBarSeriesGroupType = "circlebargroup";
|
|
@@ -2794,8 +3003,11 @@ declare const CircleBarSeriesGroupType = "circlebargroup";
|
|
|
2794
3003
|
* @config chart.series[type=circlebargroup]
|
|
2795
3004
|
*/
|
|
2796
3005
|
interface CircleBarSeriesGroupOptions extends BarSeriesGroupBaseOptions<CircleBarSeriesOptions> {
|
|
3006
|
+
/**
|
|
3007
|
+
*/
|
|
2797
3008
|
type?: typeof CircleBarSeriesGroupType;
|
|
2798
3009
|
}
|
|
3010
|
+
/** */
|
|
2799
3011
|
interface DumbbellSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
2800
3012
|
/**
|
|
2801
3013
|
* @override
|
|
@@ -2840,8 +3052,14 @@ declare const DumbbellSeriesType = "dumbbell";
|
|
|
2840
3052
|
* @config chart.series[type=dumbbell]
|
|
2841
3053
|
*/
|
|
2842
3054
|
interface DumbbellSeriesOptions extends LowRangedSeriesOptions {
|
|
3055
|
+
/**
|
|
3056
|
+
*/
|
|
2843
3057
|
type?: typeof DumbbellSeriesType;
|
|
3058
|
+
/**
|
|
3059
|
+
*/
|
|
2844
3060
|
marker?: DumbbellSeriesMarkerOptions;
|
|
3061
|
+
/**
|
|
3062
|
+
*/
|
|
2845
3063
|
lowMarker?: DumbbellSeriesMarkerOptions;
|
|
2846
3064
|
}
|
|
2847
3065
|
declare const EqualizerSeriesType = "equalizer";
|
|
@@ -2873,15 +3091,33 @@ declare const EqualizerSeriesType = "equalizer";
|
|
|
2873
3091
|
* @config chart.series[type=equalizer]
|
|
2874
3092
|
*/
|
|
2875
3093
|
interface EqualizerSeriesOptions extends BasedSeriesOptions {
|
|
3094
|
+
/**
|
|
3095
|
+
*/
|
|
2876
3096
|
type?: typeof EqualizerSeriesType;
|
|
3097
|
+
/**
|
|
3098
|
+
*/
|
|
2877
3099
|
backStyle?: SVGStyleOrClass;
|
|
3100
|
+
/**
|
|
3101
|
+
*/
|
|
2878
3102
|
maxCount?: number;
|
|
3103
|
+
/**
|
|
3104
|
+
*/
|
|
2879
3105
|
segmentSize?: PercentSize;
|
|
3106
|
+
/**
|
|
3107
|
+
*/
|
|
2880
3108
|
segmentGap?: number;
|
|
3109
|
+
/**
|
|
3110
|
+
*/
|
|
2881
3111
|
segmented?: boolean;
|
|
2882
3112
|
}
|
|
3113
|
+
/**
|
|
3114
|
+
*/
|
|
2883
3115
|
interface LowRangedSeriesOptions extends RangedSeriesOptions {
|
|
3116
|
+
/**
|
|
3117
|
+
*/
|
|
2884
3118
|
lowField?: string;
|
|
3119
|
+
/**
|
|
3120
|
+
*/
|
|
2885
3121
|
highField?: string;
|
|
2886
3122
|
}
|
|
2887
3123
|
declare const ErrorBarSeriesType = "errorbar";
|
|
@@ -2913,6 +3149,8 @@ declare const ErrorBarSeriesType = "errorbar";
|
|
|
2913
3149
|
* @config chart.series[type=errorbar]
|
|
2914
3150
|
*/
|
|
2915
3151
|
interface ErrorBarSeriesOptions extends LowRangedSeriesOptions {
|
|
3152
|
+
/**
|
|
3153
|
+
*/
|
|
2916
3154
|
type?: typeof ErrorBarSeriesType;
|
|
2917
3155
|
/**
|
|
2918
3156
|
* @override
|
|
@@ -2963,6 +3201,8 @@ declare const FunnelSeriesType = "funnel";
|
|
|
2963
3201
|
* @config chart.series[type=funnel]
|
|
2964
3202
|
*/
|
|
2965
3203
|
interface FunnelSeriesOptions extends WidgetSeriesOptions {
|
|
3204
|
+
/**
|
|
3205
|
+
*/
|
|
2966
3206
|
type?: typeof FunnelSeriesType;
|
|
2967
3207
|
/**
|
|
2968
3208
|
* @override
|
|
@@ -3002,6 +3242,7 @@ declare const _BinsNumber: {
|
|
|
3002
3242
|
readonly STURGES: "struges";
|
|
3003
3243
|
readonly RICE: "rice";
|
|
3004
3244
|
};
|
|
3245
|
+
/** @dummy */
|
|
3005
3246
|
type BinsNumber = typeof _BinsNumber[keyof typeof _BinsNumber];
|
|
3006
3247
|
declare const HistogramSeriesType = "histogram";
|
|
3007
3248
|
/**
|
|
@@ -3029,17 +3270,25 @@ declare const HistogramSeriesType = "histogram";
|
|
|
3029
3270
|
* @config chart.series[type=histogram]
|
|
3030
3271
|
*/
|
|
3031
3272
|
interface HistogramSeriesOptions extends ConnectableSeriesOptions {
|
|
3273
|
+
/**
|
|
3274
|
+
*/
|
|
3032
3275
|
type?: typeof HistogramSeriesType;
|
|
3033
3276
|
/**
|
|
3034
3277
|
* @default 0
|
|
3035
3278
|
*/
|
|
3036
3279
|
baseValue?: number;
|
|
3280
|
+
/**
|
|
3281
|
+
*/
|
|
3037
3282
|
minValue?: number;
|
|
3283
|
+
/**
|
|
3284
|
+
*/
|
|
3038
3285
|
maxValue?: number;
|
|
3039
3286
|
/**
|
|
3040
3287
|
* @default 'squreRoot'
|
|
3041
3288
|
*/
|
|
3042
3289
|
binsNumber?: number | BinsNumber;
|
|
3290
|
+
/**
|
|
3291
|
+
*/
|
|
3043
3292
|
binWidth?: number;
|
|
3044
3293
|
}
|
|
3045
3294
|
declare const ArearangeSeriesType = "arearange";
|
|
@@ -3070,6 +3319,8 @@ declare const ArearangeSeriesType = "arearange";
|
|
|
3070
3319
|
* @config chart.series[type=arearange]
|
|
3071
3320
|
*/
|
|
3072
3321
|
interface AreaRangeSeriesOptions extends LineSeriesBaseOptions {
|
|
3322
|
+
/**
|
|
3323
|
+
*/
|
|
3073
3324
|
type?: typeof ArearangeSeriesType;
|
|
3074
3325
|
/**
|
|
3075
3326
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 낮은(low) 값을 지정하는 속성명이나 인덱스.\
|
|
@@ -3099,6 +3350,8 @@ interface AreaRangeSeriesOptions extends LineSeriesBaseOptions {
|
|
|
3099
3350
|
*/
|
|
3100
3351
|
tooltipText?: string;
|
|
3101
3352
|
}
|
|
3353
|
+
/**
|
|
3354
|
+
*/
|
|
3102
3355
|
interface LollipopSeriesMarkerOptions extends SeriesMarkerOptions {
|
|
3103
3356
|
/**
|
|
3104
3357
|
* @override
|
|
@@ -3139,7 +3392,11 @@ declare const LollipopSeriesType = "lollipop";
|
|
|
3139
3392
|
* @config chart.series[type=lollipop]
|
|
3140
3393
|
*/
|
|
3141
3394
|
interface LollipopSeriesOptions extends BasedSeriesOptions {
|
|
3395
|
+
/**
|
|
3396
|
+
*/
|
|
3142
3397
|
type?: typeof LollipopSeriesType;
|
|
3398
|
+
/**
|
|
3399
|
+
*/
|
|
3143
3400
|
marker?: LollipopSeriesMarkerOptions;
|
|
3144
3401
|
}
|
|
3145
3402
|
declare const OhlcSeriesType = "ohlc";
|
|
@@ -3175,6 +3432,8 @@ declare const OhlcSeriesType = "ohlc";
|
|
|
3175
3432
|
* @config chart.series[type=ohlc]
|
|
3176
3433
|
*/
|
|
3177
3434
|
interface OhlcSeriesOptions extends CandlestickSeriesOptions {
|
|
3435
|
+
/**
|
|
3436
|
+
*/
|
|
3178
3437
|
type?: typeof OhlcSeriesType;
|
|
3179
3438
|
}
|
|
3180
3439
|
declare const ParetoSeriesType = "pareto";
|
|
@@ -3204,6 +3463,8 @@ declare const ParetoSeriesType = "pareto";
|
|
|
3204
3463
|
* @config chart.series[type=pareto]
|
|
3205
3464
|
*/
|
|
3206
3465
|
interface ParetoSeriesOptions extends LineSeriesBaseOptions {
|
|
3466
|
+
/**
|
|
3467
|
+
*/
|
|
3207
3468
|
type?: typeof ParetoSeriesType;
|
|
3208
3469
|
/**
|
|
3209
3470
|
* 이 시리즈 data point들을 구성할 수 있는 데이터를 포함한 원본 시리즈.
|
|
@@ -3258,6 +3519,8 @@ interface RadialSeriesOptions extends WidgetSeriesOptions {
|
|
|
3258
3519
|
*/
|
|
3259
3520
|
clockwise?: boolean;
|
|
3260
3521
|
}
|
|
3522
|
+
/**
|
|
3523
|
+
*/
|
|
3261
3524
|
interface PieSeriesTextOptions extends IconedTextOptions {
|
|
3262
3525
|
}
|
|
3263
3526
|
/**
|
|
@@ -3274,6 +3537,7 @@ declare const _PointLabelRotationMode: {
|
|
|
3274
3537
|
*/
|
|
3275
3538
|
readonly ANGLE: "angle";
|
|
3276
3539
|
};
|
|
3540
|
+
/** @dummy */
|
|
3277
3541
|
type PointLabelRotationMode = typeof _PointLabelRotationMode[keyof typeof _PointLabelRotationMode];
|
|
3278
3542
|
/**
|
|
3279
3543
|
* pie 시리즈의 point label 옵션.<br/>
|
|
@@ -3323,6 +3587,8 @@ declare const PieSeriesType = "pie";
|
|
|
3323
3587
|
* @config chart.series[type=pie]
|
|
3324
3588
|
*/
|
|
3325
3589
|
interface PieSeriesOptions extends RadialSeriesOptions {
|
|
3590
|
+
/**
|
|
3591
|
+
*/
|
|
3326
3592
|
type?: typeof PieSeriesType;
|
|
3327
3593
|
/**
|
|
3328
3594
|
* @override
|
|
@@ -3391,6 +3657,8 @@ declare const ScatterSeriesType = "scatter";
|
|
|
3391
3657
|
* @config chart.series[type=scatter]
|
|
3392
3658
|
*/
|
|
3393
3659
|
interface ScatterSeriesOptions extends MarkerSeriesOptions {
|
|
3660
|
+
/**
|
|
3661
|
+
*/
|
|
3394
3662
|
type?: typeof ScatterSeriesType;
|
|
3395
3663
|
/**
|
|
3396
3664
|
* 시리즈 데이터포인트들의 **x** 위치에 추가되는 무작위 변화 값.<br/>
|
|
@@ -3423,6 +3691,8 @@ interface ScatterSeriesOptions extends MarkerSeriesOptions {
|
|
|
3423
3691
|
*/
|
|
3424
3692
|
hoverScale?: number;
|
|
3425
3693
|
}
|
|
3694
|
+
/**
|
|
3695
|
+
*/
|
|
3426
3696
|
interface RangedSeriesOptions extends ClusterableSeriesOptions {
|
|
3427
3697
|
}
|
|
3428
3698
|
declare const WaterfallSeriesType = "waterfall";
|
|
@@ -3453,6 +3723,8 @@ declare const WaterfallSeriesType = "waterfall";
|
|
|
3453
3723
|
* @config chart.series[type=waterfall]
|
|
3454
3724
|
*/
|
|
3455
3725
|
interface WaterfallSeriesOptions extends ClusterableSeriesOptions {
|
|
3726
|
+
/**
|
|
3727
|
+
*/
|
|
3456
3728
|
type?: typeof WaterfallSeriesType;
|
|
3457
3729
|
/**
|
|
3458
3730
|
* 지정한 반지름 크기로 데이터포인트 bar의 모서리를 둥글게 표시한다.\
|
|
@@ -3501,7 +3773,10 @@ declare const _TreemapAlgorithm: {
|
|
|
3501
3773
|
*/
|
|
3502
3774
|
readonly SLICE_DICE: "sliceDice";
|
|
3503
3775
|
};
|
|
3776
|
+
/** @dummy */
|
|
3504
3777
|
type TreemapAlgorithm = typeof _TreemapAlgorithm[keyof typeof _TreemapAlgorithm];
|
|
3778
|
+
/**
|
|
3779
|
+
*/
|
|
3505
3780
|
interface TreeGroupHeadOptions extends ChartItemOptions {
|
|
3506
3781
|
/**
|
|
3507
3782
|
* @override
|
|
@@ -3546,6 +3821,8 @@ declare const TreemapSeriesType = "treemap";
|
|
|
3546
3821
|
* @modules treemap
|
|
3547
3822
|
*/
|
|
3548
3823
|
interface TreemapSeriesOptions extends SeriesOptions {
|
|
3824
|
+
/**
|
|
3825
|
+
*/
|
|
3549
3826
|
type?: typeof TreemapSeriesType;
|
|
3550
3827
|
/**
|
|
3551
3828
|
* @default 'id'
|
|
@@ -3623,6 +3900,8 @@ declare const HeatmapSeriesType = "heatmap";
|
|
|
3623
3900
|
* @modules heatmap
|
|
3624
3901
|
*/
|
|
3625
3902
|
interface HeatmapSeriesOptions extends Omit<ConnectableSeriesOptions, 'trendline'> {
|
|
3903
|
+
/**
|
|
3904
|
+
*/
|
|
3626
3905
|
type?: typeof HeatmapSeriesType;
|
|
3627
3906
|
/**
|
|
3628
3907
|
* @override
|
|
@@ -3654,6 +3933,7 @@ declare const _VectorOrigin: {
|
|
|
3654
3933
|
*/
|
|
3655
3934
|
readonly END: "end";
|
|
3656
3935
|
};
|
|
3936
|
+
/** @dummy */
|
|
3657
3937
|
type VectorOrigin = typeof _VectorOrigin[keyof typeof _VectorOrigin];
|
|
3658
3938
|
/**
|
|
3659
3939
|
* 화살 머리 종류.
|
|
@@ -3679,6 +3959,7 @@ declare const _ArrowHead: {
|
|
|
3679
3959
|
*/
|
|
3680
3960
|
readonly OPEN: "open";
|
|
3681
3961
|
};
|
|
3962
|
+
/** @dummy */
|
|
3682
3963
|
type ArrowHead = typeof _ArrowHead[keyof typeof _ArrowHead];
|
|
3683
3964
|
declare const VectorSeriesType = "vector";
|
|
3684
3965
|
/**
|
|
@@ -3709,6 +3990,8 @@ declare const VectorSeriesType = "vector";
|
|
|
3709
3990
|
* @modules vector
|
|
3710
3991
|
*/
|
|
3711
3992
|
interface VectorSeriesOptions extends Omit<ConnectableSeriesOptions, 'trendline'> {
|
|
3993
|
+
/**
|
|
3994
|
+
*/
|
|
3712
3995
|
type?: typeof VectorSeriesType;
|
|
3713
3996
|
/**
|
|
3714
3997
|
* json 객체나 배열로 전달되는 데이터포인트 정보에서 길이(length) 값을 지정하는 속성명이나 인덱스.<br/>
|
|
@@ -3885,12 +4168,14 @@ declare const CandlestickSeriesTypes: {
|
|
|
3885
4168
|
readonly CandlestickSeriesType: "candlestick";
|
|
3886
4169
|
readonly OhlcSeriesType: "ohlc";
|
|
3887
4170
|
};
|
|
4171
|
+
/** @dummy */
|
|
3888
4172
|
type CandlestickSeriesOptionsType = typeof CandlestickSeriesTypes[keyof typeof CandlestickSeriesTypes];
|
|
3889
4173
|
/** @enum */
|
|
3890
4174
|
declare const AreaSeriesTypes: {
|
|
3891
4175
|
readonly AreaSeriesType: "area";
|
|
3892
4176
|
readonly BellCurveSeriesType: "bellcurve";
|
|
3893
4177
|
};
|
|
4178
|
+
/** @dummy */
|
|
3894
4179
|
type AreaSeriesOptionsType = typeof AreaSeriesTypes[keyof typeof AreaSeriesTypes];
|
|
3895
4180
|
/** @enum */
|
|
3896
4181
|
declare const LineSeriesTypes: {
|
|
@@ -3899,7 +4184,9 @@ declare const LineSeriesTypes: {
|
|
|
3899
4184
|
readonly SplineSeriesType: "spline";
|
|
3900
4185
|
readonly BellCurveSeriesType: "bellcurve";
|
|
3901
4186
|
};
|
|
4187
|
+
/** @dummy */
|
|
3902
4188
|
type LineSeriesOptionsType = typeof LineSeriesTypes[keyof typeof LineSeriesTypes];
|
|
4189
|
+
/** @dummy */
|
|
3903
4190
|
type SeriesOptionsType = SeriesOptions | SeriesGroupOptions | BarRangeSeriesOptions | BarSeriesOptions | BarSeriesGroupOptions | BellCurveSeriesOptions | BoxPlotSeriesOptions | BubbleSeriesOptions | BumpSeriesGroupOptions | CandlestickSeriesOptions | CircleBarSeriesOptions | DumbbellSeriesOptions | EqualizerSeriesOptions | ErrorBarSeriesOptions | FunnelSeriesOptions | HistogramSeriesOptions | AreaRangeSeriesOptions | AreaSeriesOptions | LineSeriesOptions | LineSeriesGroupOptions | SplineSeriesOptions | LollipopSeriesOptions | OhlcSeriesOptions | ParetoSeriesOptions | PieSeriesOptions | PieSeriesGroupOptions | ScatterSeriesOptions | WaterfallSeriesOptions | TreemapSeriesOptions | HeatmapSeriesOptions | VectorSeriesOptions;
|
|
3904
4191
|
|
|
3905
4192
|
/**
|
|
@@ -4001,6 +4288,7 @@ declare const _SubtitlePosition: {
|
|
|
4001
4288
|
*/
|
|
4002
4289
|
readonly TOP: "top";
|
|
4003
4290
|
};
|
|
4291
|
+
/** @dummy */
|
|
4004
4292
|
type SubtitlePosition = typeof _SubtitlePosition[keyof typeof _SubtitlePosition];
|
|
4005
4293
|
/**
|
|
4006
4294
|
* 차트 제목 주위에 표시되는 부제목 옵션.<br/>
|
|
@@ -4146,9 +4434,15 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
4146
4434
|
*/
|
|
4147
4435
|
pointHovering?: PointHoveringOptions;
|
|
4148
4436
|
}
|
|
4437
|
+
/**
|
|
4438
|
+
*/
|
|
4149
4439
|
interface BackgroundImageOptions extends ChartItemOptions {
|
|
4440
|
+
/**
|
|
4441
|
+
*/
|
|
4150
4442
|
url?: string;
|
|
4151
4443
|
}
|
|
4444
|
+
/**
|
|
4445
|
+
*/
|
|
4152
4446
|
interface ZoomButtonOptions extends ChartItemOptions {
|
|
4153
4447
|
/**
|
|
4154
4448
|
* @override
|
|
@@ -4160,6 +4454,8 @@ interface ZoomButtonOptions extends ChartItemOptions {
|
|
|
4160
4454
|
*/
|
|
4161
4455
|
visible?: boolean;
|
|
4162
4456
|
}
|
|
4457
|
+
/**
|
|
4458
|
+
*/
|
|
4163
4459
|
interface EmptyViewOptions extends ChartTextOptions {
|
|
4164
4460
|
/**
|
|
4165
4461
|
* @override
|
|
@@ -4249,8 +4545,12 @@ interface BodyOptions extends ChartItemOptions {
|
|
|
4249
4545
|
*/
|
|
4250
4546
|
annotation?: AnnotationOptionsType | AnnotationOptionsType[];
|
|
4251
4547
|
}
|
|
4548
|
+
/**
|
|
4549
|
+
*/
|
|
4252
4550
|
interface NavigiatorHandleOptions extends ChartItemOptions {
|
|
4253
4551
|
}
|
|
4552
|
+
/**
|
|
4553
|
+
*/
|
|
4254
4554
|
interface NavigiatorMaskOptions extends ChartItemOptions {
|
|
4255
4555
|
}
|
|
4256
4556
|
/**
|
|
@@ -4283,8 +4583,14 @@ interface SeriesNavigatorOptions extends ChartItemOptions {
|
|
|
4283
4583
|
* @default false
|
|
4284
4584
|
*/
|
|
4285
4585
|
usePointSource?: boolean;
|
|
4586
|
+
/**
|
|
4587
|
+
*/
|
|
4286
4588
|
handle?: NavigiatorHandleOptions;
|
|
4589
|
+
/**
|
|
4590
|
+
*/
|
|
4287
4591
|
mask?: NavigiatorMaskOptions;
|
|
4592
|
+
/**
|
|
4593
|
+
*/
|
|
4288
4594
|
borderLine?: ChartItemOptions;
|
|
4289
4595
|
/**
|
|
4290
4596
|
* Navigator에 표시되는 시리즈 모델<br/>
|
|
@@ -4294,7 +4600,11 @@ interface SeriesNavigatorOptions extends ChartItemOptions {
|
|
|
4294
4600
|
*
|
|
4295
4601
|
*/
|
|
4296
4602
|
series?: SeriesOptionsType;
|
|
4603
|
+
/**
|
|
4604
|
+
*/
|
|
4297
4605
|
xAxis?: any;
|
|
4606
|
+
/**
|
|
4607
|
+
*/
|
|
4298
4608
|
yAxis?: any;
|
|
4299
4609
|
/**
|
|
4300
4610
|
* @default true
|
|
@@ -4391,7 +4701,7 @@ interface CreditsOptions extends ChartItemOptions {
|
|
|
4391
4701
|
offsetY?: number;
|
|
4392
4702
|
/**
|
|
4393
4703
|
* {@link floating}이 true가 아니고, 오른쪽 아래 또는 오른쪽 가운데에 표시될 때,
|
|
4394
|
-
*
|
|
4704
|
+
* 차트 나머지 영역과의 간격.<br/>
|
|
4395
4705
|
*
|
|
4396
4706
|
* @default 4
|
|
4397
4707
|
*/
|
|
@@ -4432,6 +4742,7 @@ declare const _PointHoverScope: {
|
|
|
4432
4742
|
*/
|
|
4433
4743
|
readonly AXIS: "axis";
|
|
4434
4744
|
};
|
|
4745
|
+
/** @dummy */
|
|
4435
4746
|
type PointHoverScope = typeof _PointHoverScope[keyof typeof _PointHoverScope];
|
|
4436
4747
|
/**
|
|
4437
4748
|
* 데이터포인트에 마우스가 올라갈 때 처리하는 방식 설정 옵션.<br/>
|
|
@@ -4468,6 +4779,7 @@ declare const _TooltipScope: {
|
|
|
4468
4779
|
readonly GROUP: "group";
|
|
4469
4780
|
readonly AXIS: "axis";
|
|
4470
4781
|
};
|
|
4782
|
+
/** @dummy */
|
|
4471
4783
|
type TooltipScope = typeof _TooltipScope[keyof typeof _TooltipScope];
|
|
4472
4784
|
/**
|
|
4473
4785
|
* 데이터포인트 뷰에 마우스가 올라가면 표시되는 툴팁 상자 옵션.<br/>
|
|
@@ -4481,6 +4793,8 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
4481
4793
|
* 하나의 툴팁으로 표시할 범위.
|
|
4482
4794
|
*/
|
|
4483
4795
|
scope?: TooltipScope;
|
|
4796
|
+
/**
|
|
4797
|
+
*/
|
|
4484
4798
|
html?: string;
|
|
4485
4799
|
/**
|
|
4486
4800
|
* 툴팁에 표시할 텍스트 형식.<br/>
|
|
@@ -4510,7 +4824,11 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
4510
4824
|
* @default 700
|
|
4511
4825
|
*/
|
|
4512
4826
|
hideDelay?: number;
|
|
4827
|
+
/**
|
|
4828
|
+
*/
|
|
4513
4829
|
minWidth?: number;
|
|
4830
|
+
/**
|
|
4831
|
+
*/
|
|
4514
4832
|
minHeight?: number;
|
|
4515
4833
|
/**
|
|
4516
4834
|
* true이면 툴팁 상자가 마우스 포인터를 따라 다닌다.
|
|
@@ -4539,12 +4857,24 @@ interface TooltipOptions extends ChartItemOptions {
|
|
|
4539
4857
|
timeFormat?: string;
|
|
4540
4858
|
}
|
|
4541
4859
|
|
|
4860
|
+
/**
|
|
4861
|
+
*/
|
|
4542
4862
|
interface PaneOptions extends ChartItemOptions {
|
|
4863
|
+
/**
|
|
4864
|
+
*/
|
|
4543
4865
|
width?: number;
|
|
4866
|
+
/**
|
|
4867
|
+
*/
|
|
4544
4868
|
height?: number;
|
|
4869
|
+
/**
|
|
4870
|
+
*/
|
|
4545
4871
|
inverted?: boolean;
|
|
4872
|
+
/**
|
|
4873
|
+
*/
|
|
4546
4874
|
body: PaneBodyOptions;
|
|
4547
4875
|
}
|
|
4876
|
+
/**
|
|
4877
|
+
*/
|
|
4548
4878
|
interface PaneBodyOptions extends BodyOptions {
|
|
4549
4879
|
}
|
|
4550
4880
|
/**
|
|
@@ -4651,6 +4981,7 @@ declare const _ExportType: {
|
|
|
4651
4981
|
/** @config */
|
|
4652
4982
|
readonly PRINT: "print";
|
|
4653
4983
|
};
|
|
4984
|
+
/** @dummy */
|
|
4654
4985
|
type ExportType = typeof _ExportType[keyof typeof _ExportType];
|
|
4655
4986
|
/**
|
|
4656
4987
|
* 내보내기 옵션.
|
|
@@ -4693,7 +5024,10 @@ declare const _AssetType: {
|
|
|
4693
5024
|
/** @config */
|
|
4694
5025
|
readonly RADIALGRADIENT: "radialgradient";
|
|
4695
5026
|
};
|
|
5027
|
+
/** @dummy */
|
|
4696
5028
|
type AssetType = typeof _AssetType[keyof typeof _AssetType];
|
|
5029
|
+
/**
|
|
5030
|
+
*/
|
|
4697
5031
|
interface AssetItemOptions {
|
|
4698
5032
|
type?: AssetType;
|
|
4699
5033
|
/**
|
|
@@ -4704,6 +5038,8 @@ interface AssetItemOptions {
|
|
|
4704
5038
|
*/
|
|
4705
5039
|
id: string;
|
|
4706
5040
|
}
|
|
5041
|
+
/**
|
|
5042
|
+
*/
|
|
4707
5043
|
interface GradientOptions extends AssetItemOptions {
|
|
4708
5044
|
/**
|
|
4709
5045
|
* 색을 배열로 지정하거나,
|
|
@@ -4768,20 +5104,38 @@ interface PatternOptions extends AssetItemOptions {
|
|
|
4768
5104
|
* 지정하지 않으면 {@page widths}나 20 pixels.
|
|
4769
5105
|
*/
|
|
4770
5106
|
height?: number;
|
|
5107
|
+
/**
|
|
5108
|
+
*/
|
|
4771
5109
|
style?: SVGStyles;
|
|
5110
|
+
/**
|
|
5111
|
+
*/
|
|
4772
5112
|
backgroundStyle?: SVGStyles;
|
|
4773
5113
|
}
|
|
5114
|
+
/**
|
|
5115
|
+
*/
|
|
4774
5116
|
interface ImageOptions {
|
|
5117
|
+
/**
|
|
5118
|
+
*/
|
|
4775
5119
|
name?: string;
|
|
5120
|
+
/**
|
|
5121
|
+
*/
|
|
4776
5122
|
url: string;
|
|
4777
5123
|
}
|
|
4778
5124
|
/**
|
|
4779
5125
|
* @config chart.asset[type=images]
|
|
4780
5126
|
*/
|
|
4781
5127
|
interface ImageListOptions extends AssetItemOptions {
|
|
5128
|
+
/**
|
|
5129
|
+
*/
|
|
4782
5130
|
rootUrl?: string;
|
|
5131
|
+
/**
|
|
5132
|
+
*/
|
|
4783
5133
|
width?: number;
|
|
5134
|
+
/**
|
|
5135
|
+
*/
|
|
4784
5136
|
height?: number;
|
|
5137
|
+
/**
|
|
5138
|
+
*/
|
|
4785
5139
|
images?: (ImageOptions | string)[];
|
|
4786
5140
|
}
|
|
4787
5141
|
/**
|
|
@@ -4803,6 +5157,7 @@ interface ColorListOptions extends AssetItemOptions {
|
|
|
4803
5157
|
*/
|
|
4804
5158
|
colors: string[];
|
|
4805
5159
|
}
|
|
5160
|
+
/** @dummy */
|
|
4806
5161
|
type AssetOptionsType = LinearGradientOptions | RadialGradientOptions | PatternOptions | ColorListOptions | ImageListOptions;
|
|
4807
5162
|
|
|
4808
5163
|
/**
|
|
@@ -5297,6 +5652,7 @@ declare const _LegendItemsAlign: {
|
|
|
5297
5652
|
*/
|
|
5298
5653
|
readonly END: "end";
|
|
5299
5654
|
};
|
|
5655
|
+
/** @dummy */
|
|
5300
5656
|
type LegendItemsAlign = typeof _LegendItemsAlign[keyof typeof _LegendItemsAlign];
|
|
5301
5657
|
/**
|
|
5302
5658
|
* @enum
|
|
@@ -5316,6 +5672,7 @@ declare const _LegendLayout: {
|
|
|
5316
5672
|
*/
|
|
5317
5673
|
readonly VERTICAL: "vertical";
|
|
5318
5674
|
};
|
|
5675
|
+
/** @dummy */
|
|
5319
5676
|
type LegendLayout = typeof _LegendLayout[keyof typeof _LegendLayout];
|
|
5320
5677
|
/**
|
|
5321
5678
|
* @enum
|
|
@@ -5347,6 +5704,7 @@ declare const _LegendLocation: {
|
|
|
5347
5704
|
*/
|
|
5348
5705
|
readonly BODY: "body";
|
|
5349
5706
|
};
|
|
5707
|
+
/** @dummy */
|
|
5350
5708
|
type LegendLocation = typeof _LegendLocation[keyof typeof _LegendLocation];
|
|
5351
5709
|
/**
|
|
5352
5710
|
* 차트 시리즈 구성 등을 직관적으로 이해할 수 있도록 도와주는 범례 설정 옵션.<br/>
|
|
@@ -7015,7 +7373,11 @@ declare const _AxisTitleAlign: {
|
|
|
7015
7373
|
*/
|
|
7016
7374
|
readonly END: "end";
|
|
7017
7375
|
};
|
|
7376
|
+
/** @dummy */
|
|
7018
7377
|
type AxisTitleAlign = typeof _AxisTitleAlign[keyof typeof _AxisTitleAlign];
|
|
7378
|
+
/**
|
|
7379
|
+
* 축 구성 요소들의 설정 모델 기반.<br/>
|
|
7380
|
+
*/
|
|
7019
7381
|
interface AxisItemOptions extends ChartItemOptions {
|
|
7020
7382
|
}
|
|
7021
7383
|
/**
|
|
@@ -7125,11 +7487,23 @@ interface AxisTickOptions extends AxisItemOptions {
|
|
|
7125
7487
|
*/
|
|
7126
7488
|
gap?: number;
|
|
7127
7489
|
}
|
|
7490
|
+
/**
|
|
7491
|
+
* 연속축의 tick 스텝 목록을 동적으로 리턴하는 {@page config.xAxis.linear.tick#stepcallback 콜백}의 매개변수로 사용된다.
|
|
7492
|
+
*/
|
|
7128
7493
|
interface StepCallbackArgs {
|
|
7494
|
+
/**
|
|
7495
|
+
*/
|
|
7129
7496
|
length: number;
|
|
7497
|
+
/**
|
|
7498
|
+
*/
|
|
7130
7499
|
minValue: number;
|
|
7500
|
+
/**
|
|
7501
|
+
*/
|
|
7131
7502
|
maxValue: number;
|
|
7132
7503
|
}
|
|
7504
|
+
/**
|
|
7505
|
+
* 연속축의 tick 설정 모델.<br/>
|
|
7506
|
+
*/
|
|
7133
7507
|
interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
7134
7508
|
/**
|
|
7135
7509
|
* tick들 사이의 값 간격.
|
|
@@ -7142,6 +7516,8 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
7142
7516
|
* @default 72
|
|
7143
7517
|
*/
|
|
7144
7518
|
stepPixels?: number;
|
|
7519
|
+
/**
|
|
7520
|
+
*/
|
|
7145
7521
|
stepCount?: number;
|
|
7146
7522
|
/**
|
|
7147
7523
|
* 명시적으로 설정하는 setp 목록<br/>
|
|
@@ -7155,7 +7531,6 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
7155
7531
|
* 명시적 step 목록을 리턴하는 callback<br/>
|
|
7156
7532
|
* 양 끝을 NaN으로 지정하면 계산된 min/max로 설정된다.
|
|
7157
7533
|
* 이 목록이 설정되면 스텝 설정과 관련된 다른 속성들은 무시된다.
|
|
7158
|
-
*
|
|
7159
7534
|
*/
|
|
7160
7535
|
stepCallback?: (args: StepCallbackArgs) => (number | Date)[];
|
|
7161
7536
|
/**
|
|
@@ -7173,6 +7548,8 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
7173
7548
|
*/
|
|
7174
7549
|
baseRange?: boolean;
|
|
7175
7550
|
}
|
|
7551
|
+
/**
|
|
7552
|
+
*/
|
|
7176
7553
|
interface ContinuousAxisGridOptions extends AxisGridOptions {
|
|
7177
7554
|
}
|
|
7178
7555
|
/**
|
|
@@ -7198,6 +7575,7 @@ declare const _AxisLabelArrange: {
|
|
|
7198
7575
|
*/
|
|
7199
7576
|
readonly ROWS: "rows";
|
|
7200
7577
|
};
|
|
7578
|
+
/** @dummy */
|
|
7201
7579
|
type AxisLabelArrange = typeof _AxisLabelArrange[keyof typeof _AxisLabelArrange];
|
|
7202
7580
|
/**
|
|
7203
7581
|
* label 배치 후 텍스트가 차지하는 공간을 넘치는 경우 처리 방식.
|
|
@@ -7225,7 +7603,12 @@ declare const _AxisLabelOverflow: {
|
|
|
7225
7603
|
*/
|
|
7226
7604
|
readonly FIT: "fit";
|
|
7227
7605
|
};
|
|
7606
|
+
/** @dummy */
|
|
7228
7607
|
type AxisLabelOverflow = typeof _AxisLabelOverflow[keyof typeof _AxisLabelOverflow];
|
|
7608
|
+
/**
|
|
7609
|
+
* Axis의 label {@page config.base.axis.label#textCallback 텍스트}나
|
|
7610
|
+
* {@page config.base.axis.label#styleCallback 스타일}을 동적으로 리턴하는 콜백 등의 매개변수로 사용된다.<br/>
|
|
7611
|
+
*/
|
|
7229
7612
|
interface AxisLabelArgs {
|
|
7230
7613
|
/**
|
|
7231
7614
|
* 축 객체.
|
|
@@ -7414,6 +7797,7 @@ declare const _GuideLabelPosition: {
|
|
|
7414
7797
|
*/
|
|
7415
7798
|
readonly OUTSIDE: "outside";
|
|
7416
7799
|
};
|
|
7800
|
+
/** @dummy */
|
|
7417
7801
|
type GuideLabelPosition = typeof _GuideLabelPosition[keyof typeof _GuideLabelPosition];
|
|
7418
7802
|
/**
|
|
7419
7803
|
* 축 가이드 label 설정 모델.
|
|
@@ -7480,7 +7864,11 @@ interface AxisGuideOptions extends AxisItemOptions {
|
|
|
7480
7864
|
* @default 0
|
|
7481
7865
|
*/
|
|
7482
7866
|
zindex?: number;
|
|
7867
|
+
/**
|
|
7868
|
+
*/
|
|
7483
7869
|
col?: number | number[];
|
|
7870
|
+
/**
|
|
7871
|
+
*/
|
|
7484
7872
|
row?: number | number[];
|
|
7485
7873
|
/**
|
|
7486
7874
|
* type이 'line'일 때,
|
|
@@ -7503,7 +7891,11 @@ declare const AxisLineGuideType = "line";
|
|
|
7503
7891
|
* 축 위의 특정한 값에 선분을 표시한다.<br/>
|
|
7504
7892
|
*/
|
|
7505
7893
|
interface AxisLineGuideOptions extends AxisGuideOptions {
|
|
7894
|
+
/**
|
|
7895
|
+
*/
|
|
7506
7896
|
type?: typeof AxisLineGuideType;
|
|
7897
|
+
/**
|
|
7898
|
+
*/
|
|
7507
7899
|
value: number;
|
|
7508
7900
|
}
|
|
7509
7901
|
declare const AxisRangeGuideType = "range";
|
|
@@ -7512,8 +7904,14 @@ declare const AxisRangeGuideType = "range";
|
|
|
7512
7904
|
* [주의] realchart-style.css에 fill-opacity가 0.2로 설정되어 있다.
|
|
7513
7905
|
*/
|
|
7514
7906
|
interface AxisRangeGuideOptions extends AxisGuideOptions {
|
|
7907
|
+
/**
|
|
7908
|
+
*/
|
|
7515
7909
|
type: typeof AxisRangeGuideType;
|
|
7910
|
+
/**
|
|
7911
|
+
*/
|
|
7516
7912
|
startValue: number;
|
|
7913
|
+
/**
|
|
7914
|
+
*/
|
|
7517
7915
|
endValue: number;
|
|
7518
7916
|
}
|
|
7519
7917
|
/**
|
|
@@ -7550,7 +7948,11 @@ interface AxisGridOptions extends AxisItemOptions {
|
|
|
7550
7948
|
* 축 상에 crosshair의 정보를 표시하는 view 설정 모델.
|
|
7551
7949
|
*/
|
|
7552
7950
|
interface CrosshairFlagOptions extends ChartItemOptions {
|
|
7951
|
+
/**
|
|
7952
|
+
*/
|
|
7553
7953
|
prefix?: string;
|
|
7954
|
+
/**
|
|
7955
|
+
*/
|
|
7554
7956
|
suffix?: string;
|
|
7555
7957
|
/**
|
|
7556
7958
|
* flag에 표시될 텍스트 형식.
|
|
@@ -7565,6 +7967,8 @@ interface CrosshairFlagOptions extends ChartItemOptions {
|
|
|
7565
7967
|
*
|
|
7566
7968
|
*/
|
|
7567
7969
|
textStyles?: SVGStyleOrClass;
|
|
7970
|
+
/**
|
|
7971
|
+
*/
|
|
7568
7972
|
minWidth?: number;
|
|
7569
7973
|
}
|
|
7570
7974
|
/**
|
|
@@ -7586,14 +7990,25 @@ declare const _CrosshairType: {
|
|
|
7586
7990
|
*/
|
|
7587
7991
|
readonly LINE: "line";
|
|
7588
7992
|
};
|
|
7993
|
+
/** @dummy */
|
|
7589
7994
|
type CrosshairType = typeof _CrosshairType[keyof typeof _CrosshairType];
|
|
7995
|
+
/**
|
|
7996
|
+
* Crosshair 위치가 변경될 때 발생되는 {@page config.base.axis.crosshair#onChange 콜백}의 매개변수로 사용된다.<br/>
|
|
7997
|
+
*/
|
|
7590
7998
|
interface CrosshairCallbackArgs {
|
|
7999
|
+
/**
|
|
8000
|
+
*/
|
|
7591
8001
|
axis: object;
|
|
8002
|
+
/**
|
|
8003
|
+
*/
|
|
7592
8004
|
pos: number;
|
|
8005
|
+
/**
|
|
8006
|
+
*/
|
|
7593
8007
|
flag: string;
|
|
8008
|
+
/**
|
|
8009
|
+
*/
|
|
7594
8010
|
points: DataPoint[];
|
|
7595
8011
|
}
|
|
7596
|
-
type CrosshairChangeCallback = (args: CrosshairCallbackArgs) => void;
|
|
7597
8012
|
/**
|
|
7598
8013
|
* 직선 또는 bar 형태로 축 위의 마우스 위치를 표시하는 구성 요소 옵션.<br/>
|
|
7599
8014
|
*/
|
|
@@ -7638,7 +8053,10 @@ interface CrosshairOptions extends ChartItemOptions {
|
|
|
7638
8053
|
* @default 'yyyy-MM-dd HH:mm'
|
|
7639
8054
|
*/
|
|
7640
8055
|
timeFormat?: string;
|
|
7641
|
-
|
|
8056
|
+
/**
|
|
8057
|
+
* 위치가 변경될 때 발생되는 callback.<br/>
|
|
8058
|
+
*/
|
|
8059
|
+
onChange?: (args: CrosshairCallbackArgs) => void;
|
|
7642
8060
|
/**
|
|
7643
8061
|
* x축 crosshair 영역에 포함된 marker 데이터포인트들이
|
|
7644
8062
|
* 마우스 아래 있을 때와 동일한 효과를 표시한다.
|
|
@@ -7687,6 +8105,7 @@ declare const _AxisPosition: {
|
|
|
7687
8105
|
*/
|
|
7688
8106
|
readonly BETWEEN: "between";
|
|
7689
8107
|
};
|
|
8108
|
+
/** @dummy */
|
|
7690
8109
|
type AxisPosition = typeof _AxisPosition[keyof typeof _AxisPosition];
|
|
7691
8110
|
/**
|
|
7692
8111
|
* 축 스크롤바 모델.<br/>
|
|
@@ -7744,12 +8163,15 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
7744
8163
|
*/
|
|
7745
8164
|
type?: AxisType;
|
|
7746
8165
|
/**
|
|
8166
|
+
* 축 이름.<br/>
|
|
7747
8167
|
*/
|
|
7748
8168
|
name?: string;
|
|
7749
8169
|
/**
|
|
8170
|
+
* 축 title 설정 옵션.<br/>
|
|
7750
8171
|
*/
|
|
7751
8172
|
title?: AxisTitleOptions | string;
|
|
7752
8173
|
/**
|
|
8174
|
+
* 축 선 설정 옵션.<br/>
|
|
7753
8175
|
*/
|
|
7754
8176
|
line?: AxisLineOptions | boolean | string;
|
|
7755
8177
|
/**
|
|
@@ -7759,9 +8181,11 @@ interface AxisOptions extends ChartItemOptions {
|
|
|
7759
8181
|
*/
|
|
7760
8182
|
sectorLine?: AxisSectorLineOptions | boolean;
|
|
7761
8183
|
/**
|
|
8184
|
+
* tick 설정 옵션.<br/>
|
|
7762
8185
|
*/
|
|
7763
8186
|
tick?: AxisTickOptions | boolean;
|
|
7764
8187
|
/**
|
|
8188
|
+
* label 설정 옵션.<br/>
|
|
7765
8189
|
*/
|
|
7766
8190
|
label?: AxisLabelOptions | boolean;
|
|
7767
8191
|
/**
|
|
@@ -7904,8 +8328,15 @@ declare const _CategoryTickPosition: {
|
|
|
7904
8328
|
*/
|
|
7905
8329
|
readonly EDGE: "edge";
|
|
7906
8330
|
};
|
|
8331
|
+
/** @dummy */
|
|
7907
8332
|
type CategoryTickPosition = typeof _CategoryTickPosition[keyof typeof _CategoryTickPosition];
|
|
8333
|
+
/**
|
|
8334
|
+
* 카테고리축 tick 설정 모델.<br/>
|
|
8335
|
+
*/
|
|
7908
8336
|
interface CategoryAxisTickOptions extends AxisTickOptions {
|
|
8337
|
+
/**
|
|
8338
|
+
* tick 표시 위치.<br/>
|
|
8339
|
+
*/
|
|
7909
8340
|
position?: CategoryTickPosition;
|
|
7910
8341
|
/**
|
|
7911
8342
|
* @default 1
|
|
@@ -7940,6 +8371,10 @@ declare const CategoryAxisType = "category";
|
|
|
7940
8371
|
*/
|
|
7941
8372
|
interface CategoryAxisOptions extends AxisOptions {
|
|
7942
8373
|
type?: typeof CategoryAxisType;
|
|
8374
|
+
/**
|
|
8375
|
+
* @override
|
|
8376
|
+
*/
|
|
8377
|
+
tick?: CategoryAxisTickOptions;
|
|
7943
8378
|
/**
|
|
7944
8379
|
* Category 목록을 수집하는 시리즈.<br/>
|
|
7945
8380
|
* 지정하지 않으면 모든 시리즈에서 카테고리를 수집한다.
|
|
@@ -8017,12 +8452,19 @@ interface CategoryAxisOptions extends AxisOptions {
|
|
|
8017
8452
|
*/
|
|
8018
8453
|
interface AxisBaseLineOptions extends AxisLineOptions {
|
|
8019
8454
|
}
|
|
8455
|
+
/**
|
|
8456
|
+
* 연속축 break 설정 모델.<br/>
|
|
8457
|
+
*/
|
|
8020
8458
|
interface AxisBreakOptions extends AxisItemOptions {
|
|
8021
8459
|
/**
|
|
8022
8460
|
* @default true
|
|
8023
8461
|
*/
|
|
8024
8462
|
enabled?: boolean;
|
|
8463
|
+
/**
|
|
8464
|
+
*/
|
|
8025
8465
|
from?: number;
|
|
8466
|
+
/**
|
|
8467
|
+
*/
|
|
8026
8468
|
to?: number;
|
|
8027
8469
|
/**
|
|
8028
8470
|
* @default '30%'
|
|
@@ -8055,7 +8497,11 @@ declare const _AxisFit: {
|
|
|
8055
8497
|
*/
|
|
8056
8498
|
readonly VALUE: "value";
|
|
8057
8499
|
};
|
|
8500
|
+
/** @dummy */
|
|
8058
8501
|
type AxisFit = typeof _AxisFit[keyof typeof _AxisFit];
|
|
8502
|
+
/**
|
|
8503
|
+
* 연속축 label 설정 모델.<br/>
|
|
8504
|
+
*/
|
|
8059
8505
|
interface ContinuousAxisLabelOptions extends AxisLabelOptions {
|
|
8060
8506
|
/**
|
|
8061
8507
|
* @override
|
|
@@ -8065,7 +8511,7 @@ interface ContinuousAxisLabelOptions extends AxisLabelOptions {
|
|
|
8065
8511
|
numberFormat?: string;
|
|
8066
8512
|
}
|
|
8067
8513
|
/**
|
|
8068
|
-
*
|
|
8514
|
+
* 연속축 기반.<br/>
|
|
8069
8515
|
*
|
|
8070
8516
|
* 최대한 데이터포인트들을 표시해야 하므로 'bar' 시리즈 등 너비가 있는 것들을 표시하기 위해서
|
|
8071
8517
|
* 양 끝에 공간을 추가할 수 있다. // calcPoints() 참조.
|
|
@@ -8160,10 +8606,22 @@ interface ContinuousAxisOptions extends AxisOptions {
|
|
|
8160
8606
|
* @default 'default'
|
|
8161
8607
|
*/
|
|
8162
8608
|
endFit?: AxisFit;
|
|
8609
|
+
/**
|
|
8610
|
+
* @override
|
|
8611
|
+
*/
|
|
8163
8612
|
tick?: ContinuousAxisTickOptions;
|
|
8613
|
+
/**
|
|
8614
|
+
* @override
|
|
8615
|
+
*/
|
|
8164
8616
|
grid?: ContinuousAxisGridOptions;
|
|
8617
|
+
/**
|
|
8618
|
+
* @override
|
|
8619
|
+
*/
|
|
8165
8620
|
break?: AxisBreakOptions;
|
|
8166
8621
|
}
|
|
8622
|
+
/**
|
|
8623
|
+
* linear 축 label 설정 모델.<br/>
|
|
8624
|
+
*/
|
|
8167
8625
|
interface LinearAxisLabelOptions extends ContinuousAxisLabelOptions {
|
|
8168
8626
|
/**
|
|
8169
8627
|
* true로 지정하면 label 끝에 단위 문자를 추가한다.<br/>
|
|
@@ -8183,9 +8641,17 @@ declare const LinearAxisType = "linear";
|
|
|
8183
8641
|
* @config chart.yAxis[type=linear]
|
|
8184
8642
|
*/
|
|
8185
8643
|
interface LinearAxisOptions extends ContinuousAxisOptions {
|
|
8644
|
+
/**
|
|
8645
|
+
*/
|
|
8186
8646
|
type?: typeof LinearAxisType;
|
|
8647
|
+
/**
|
|
8648
|
+
* @override
|
|
8649
|
+
*/
|
|
8187
8650
|
label?: LinearAxisLabelOptions;
|
|
8188
8651
|
}
|
|
8652
|
+
/**
|
|
8653
|
+
* Log축 틱 설정 모델.<br/>
|
|
8654
|
+
*/
|
|
8189
8655
|
interface LogAxisTickOptions extends ContinuousAxisTickOptions {
|
|
8190
8656
|
/**
|
|
8191
8657
|
* 소수점을 갖는 step들을 역로그된 값이 최대한 정수가 되는 위치로 재배치한다.
|
|
@@ -8203,8 +8669,17 @@ declare const LogAxisType = "log";
|
|
|
8203
8669
|
* @config chart.yAxis[type=log]
|
|
8204
8670
|
*/
|
|
8205
8671
|
interface LogAxisOptions extends ContinuousAxisOptions {
|
|
8672
|
+
/**
|
|
8673
|
+
*/
|
|
8206
8674
|
type?: typeof LogAxisType;
|
|
8675
|
+
/**
|
|
8676
|
+
* @override
|
|
8677
|
+
*/
|
|
8678
|
+
tick?: LogAxisTickOptions;
|
|
8207
8679
|
}
|
|
8680
|
+
/**
|
|
8681
|
+
* 시간축 label 설정 모델.<br/>
|
|
8682
|
+
*/
|
|
8208
8683
|
interface TimeAxisLabelOptions extends ContinuousAxisLabelOptions {
|
|
8209
8684
|
/**
|
|
8210
8685
|
* 현재 스케일의 시작일시에 상위 스케일의 포맷을 사용해서 표시한다.
|
|
@@ -8227,12 +8702,19 @@ interface TimeAxisLabelOptions extends ContinuousAxisLabelOptions {
|
|
|
8227
8702
|
*/
|
|
8228
8703
|
beginningFormat?: string;
|
|
8229
8704
|
}
|
|
8705
|
+
/**
|
|
8706
|
+
* 시간 축 틱 설정 모델.<br/>
|
|
8707
|
+
*/
|
|
8230
8708
|
interface TimeAxisTickOptions extends ContinuousAxisTickOptions {
|
|
8231
8709
|
/**
|
|
8232
8710
|
* @append
|
|
8233
8711
|
* 단위가 지정된 문자열로 지정하는 경우 값이 -1 이하이거나 1 이상이어야 한다. // #141
|
|
8234
8712
|
*/
|
|
8235
8713
|
stepInterval?: number;
|
|
8714
|
+
/**
|
|
8715
|
+
* @override
|
|
8716
|
+
*/
|
|
8717
|
+
label?: TimeAxisLabelOptions;
|
|
8236
8718
|
}
|
|
8237
8719
|
declare const TimeAxisType = "time";
|
|
8238
8720
|
/**
|
|
@@ -8242,6 +8724,8 @@ declare const TimeAxisType = "time";
|
|
|
8242
8724
|
* @config chart.yAxis[type=time]
|
|
8243
8725
|
*/
|
|
8244
8726
|
interface TimeAxisOptions extends ContinuousAxisOptions {
|
|
8727
|
+
/**
|
|
8728
|
+
*/
|
|
8245
8729
|
type?: typeof TimeAxisType;
|
|
8246
8730
|
/**
|
|
8247
8731
|
* @override
|
|
@@ -8252,8 +8736,12 @@ interface TimeAxisOptions extends ContinuousAxisOptions {
|
|
|
8252
8736
|
* @default NaN
|
|
8253
8737
|
*/
|
|
8254
8738
|
baseValue?: number;
|
|
8739
|
+
/**
|
|
8740
|
+
* @override
|
|
8741
|
+
*/
|
|
8255
8742
|
tick?: TimeAxisTickOptions;
|
|
8256
8743
|
}
|
|
8744
|
+
/** @dummy */
|
|
8257
8745
|
type AxisOptionsType = CategoryAxisOptions | LinearAxisOptions | LogAxisOptions | TimeAxisOptions;
|
|
8258
8746
|
|
|
8259
8747
|
/**
|
|
@@ -8317,6 +8805,9 @@ interface GaugeBaseOptions extends ChartItemOptions {
|
|
|
8317
8805
|
*
|
|
8318
8806
|
*/
|
|
8319
8807
|
size?: PercentSize;
|
|
8808
|
+
/**
|
|
8809
|
+
* 게이지나 게이지그룹의 배경에 대한 스타일.
|
|
8810
|
+
*/
|
|
8320
8811
|
backgroundStyle?: SVGStyleOrClass;
|
|
8321
8812
|
}
|
|
8322
8813
|
/**
|
|
@@ -8381,10 +8872,18 @@ interface ValueGaugeOptions extends GaugeOptions {
|
|
|
8381
8872
|
*/
|
|
8382
8873
|
animatable?: boolean;
|
|
8383
8874
|
}
|
|
8875
|
+
/**
|
|
8876
|
+
*/
|
|
8384
8877
|
interface GaugeScaleTickOptions extends ChartItemOptions {
|
|
8878
|
+
/**
|
|
8879
|
+
*/
|
|
8385
8880
|
reversed?: boolean;
|
|
8881
|
+
/**
|
|
8882
|
+
*/
|
|
8386
8883
|
length?: number;
|
|
8387
8884
|
}
|
|
8885
|
+
/**
|
|
8886
|
+
*/
|
|
8388
8887
|
interface LinearGaugeLabelOptions extends GaugeLabelOptions {
|
|
8389
8888
|
/**
|
|
8390
8889
|
* 값을 지정하지 않으면 게이지 표시 방향에 따라 자동으로 위치를 결정한다.
|
|
@@ -8423,6 +8922,8 @@ interface LinearGaugeLabelOptions extends GaugeLabelOptions {
|
|
|
8423
8922
|
*/
|
|
8424
8923
|
gap?: PercentSize;
|
|
8425
8924
|
}
|
|
8925
|
+
/**
|
|
8926
|
+
*/
|
|
8426
8927
|
interface LinearGaugeScaleOptions extends GaugeScaleOptions {
|
|
8427
8928
|
}
|
|
8428
8929
|
/**
|
|
@@ -8451,6 +8952,8 @@ interface LinearGaugeBaseOptions extends ValueGaugeOptions {
|
|
|
8451
8952
|
*/
|
|
8452
8953
|
scale?: LinearGaugeScaleOptions | boolean;
|
|
8453
8954
|
}
|
|
8955
|
+
/**
|
|
8956
|
+
*/
|
|
8454
8957
|
interface LinearGaugeChildLabelOptions extends ChartItemOptions {
|
|
8455
8958
|
/**
|
|
8456
8959
|
* true면 자식 게이지의 label을 기본 위치의 반대쪽에 표시한다.
|
|
@@ -8467,12 +8970,16 @@ interface LinearGaugeChildLabelOptions extends ChartItemOptions {
|
|
|
8467
8970
|
*/
|
|
8468
8971
|
gap?: number;
|
|
8469
8972
|
}
|
|
8973
|
+
/**
|
|
8974
|
+
*/
|
|
8470
8975
|
interface LinearGaugeGroupLabelOptions extends LinearGaugeLabelOptions {
|
|
8471
8976
|
/**
|
|
8472
8977
|
* @default 10
|
|
8473
8978
|
*/
|
|
8474
8979
|
gap?: number;
|
|
8475
8980
|
}
|
|
8981
|
+
/**
|
|
8982
|
+
*/
|
|
8476
8983
|
interface LinearGaugeGroupBaseOptions<T extends LinearGaugeBaseOptions> extends GaugeGroupOptions<T> {
|
|
8477
8984
|
/**
|
|
8478
8985
|
* true면 자식 게이지들을 수직으로 지정하고(자식 게이지의 vertical 속성과 관계없이) 왼쪽에서 오른쪽으로 차례대로 배치한다.<br/>
|
|
@@ -8508,6 +9015,8 @@ interface LinearGaugeGroupBaseOptions<T extends LinearGaugeBaseOptions> extends
|
|
|
8508
9015
|
*/
|
|
8509
9016
|
itemGap?: number;
|
|
8510
9017
|
}
|
|
9018
|
+
/**
|
|
9019
|
+
*/
|
|
8511
9020
|
interface BulletGaugeBandOptions extends ChartItemOptions {
|
|
8512
9021
|
/**
|
|
8513
9022
|
* true면 수직 bar로 표시한다.
|
|
@@ -8539,6 +9048,8 @@ interface BulletGaugeBandOptions extends ChartItemOptions {
|
|
|
8539
9048
|
*/
|
|
8540
9049
|
rangeInclusive?: boolean;
|
|
8541
9050
|
}
|
|
9051
|
+
/**
|
|
9052
|
+
*/
|
|
8542
9053
|
interface BulletTargetBarOptions extends ChartItemOptions {
|
|
8543
9054
|
/**
|
|
8544
9055
|
* @override
|
|
@@ -8557,6 +9068,8 @@ interface LinearValueBarOptions extends ChartItemOptions {
|
|
|
8557
9068
|
*/
|
|
8558
9069
|
styleCallback?: (args: any) => SVGStyleOrClass;
|
|
8559
9070
|
}
|
|
9071
|
+
/**
|
|
9072
|
+
*/
|
|
8560
9073
|
interface BulletValueBarOptions extends LinearValueBarOptions {
|
|
8561
9074
|
/**
|
|
8562
9075
|
* {@page value 현재 값}이 {@page targetValue 목표 값} 미만일 때
|
|
@@ -8575,6 +9088,8 @@ declare const BulletGaugeType = "bullet";
|
|
|
8575
9088
|
* @modules gauge
|
|
8576
9089
|
*/
|
|
8577
9090
|
interface BulletGaugeOptions extends LinearGaugeBaseOptions {
|
|
9091
|
+
/**
|
|
9092
|
+
*/
|
|
8578
9093
|
type?: typeof BulletGaugeType;
|
|
8579
9094
|
/**
|
|
8580
9095
|
* 밴드.
|
|
@@ -8635,6 +9150,8 @@ interface BulletGaugeGroupOptions extends LinearGaugeGroupBaseOptions<BulletGaug
|
|
|
8635
9150
|
*/
|
|
8636
9151
|
rangeInclusive?: boolean;
|
|
8637
9152
|
}
|
|
9153
|
+
/**
|
|
9154
|
+
*/
|
|
8638
9155
|
interface GaugeLabelOptions extends ChartTextOptions {
|
|
8639
9156
|
/**
|
|
8640
9157
|
* 게이지 값 변경 애니메이션이 실행될 때, label도 따라서 변경시킨다.
|
|
@@ -8643,6 +9160,8 @@ interface GaugeLabelOptions extends ChartTextOptions {
|
|
|
8643
9160
|
*/
|
|
8644
9161
|
animatable?: boolean;
|
|
8645
9162
|
}
|
|
9163
|
+
/**
|
|
9164
|
+
*/
|
|
8646
9165
|
interface CircularGaugeLabelOptions extends GaugeLabelOptions {
|
|
8647
9166
|
/**
|
|
8648
9167
|
* 게이지 중심 등, label이 표시될 기준 위치에서 x 방향으로 이동한 픽셀 크기.
|
|
@@ -8734,6 +9253,8 @@ interface CircularGaugeOptions extends ValueGaugeOptions {
|
|
|
8734
9253
|
*/
|
|
8735
9254
|
innerStyle?: SVGStyleOrClass;
|
|
8736
9255
|
}
|
|
9256
|
+
/**
|
|
9257
|
+
*/
|
|
8737
9258
|
interface CircularGaugeGroupOptions extends GaugeGroupOptions<CircleGaugeOptions> {
|
|
8738
9259
|
/**
|
|
8739
9260
|
* 게이지 중심 수평 위치.
|
|
@@ -8818,6 +9339,8 @@ interface CircularGaugeGroupOptions extends GaugeGroupOptions<CircleGaugeOptions
|
|
|
8818
9339
|
*/
|
|
8819
9340
|
labelGap?: number;
|
|
8820
9341
|
}
|
|
9342
|
+
/**
|
|
9343
|
+
*/
|
|
8821
9344
|
interface GaugeRangeLabelOptions extends ChartItemOptions {
|
|
8822
9345
|
/**
|
|
8823
9346
|
* @override
|
|
@@ -8879,8 +9402,8 @@ interface GaugeRangeBandOptions extends ChartItemOptions {
|
|
|
8879
9402
|
*/
|
|
8880
9403
|
tickLabel?: ChartItemOptions;
|
|
8881
9404
|
}
|
|
8882
|
-
|
|
8883
|
-
|
|
9405
|
+
/**
|
|
9406
|
+
*/
|
|
8884
9407
|
interface GaugeScaleLabelOptions extends IconedTextOptions {
|
|
8885
9408
|
}
|
|
8886
9409
|
/**
|
|
@@ -8900,6 +9423,7 @@ declare const _GaugeItemPosition: {
|
|
|
8900
9423
|
*/
|
|
8901
9424
|
readonly INSIDE: "inside";
|
|
8902
9425
|
};
|
|
9426
|
+
/** @dummy */
|
|
8903
9427
|
type GaugeItemPosition = typeof _GaugeItemPosition[keyof typeof _GaugeItemPosition];
|
|
8904
9428
|
/**
|
|
8905
9429
|
* Gauge scale.
|
|
@@ -8920,7 +9444,7 @@ interface GaugeScaleOptions extends ChartItemOptions {
|
|
|
8920
9444
|
line?: ChartItemOptions | boolean;
|
|
8921
9445
|
/**
|
|
8922
9446
|
*/
|
|
8923
|
-
tick?:
|
|
9447
|
+
tick?: GaugeScaleTickOptions | boolean;
|
|
8924
9448
|
/**
|
|
8925
9449
|
*/
|
|
8926
9450
|
label?: GaugeScaleLabelOptions | boolean;
|
|
@@ -8943,6 +9467,8 @@ interface GaugeScaleOptions extends ChartItemOptions {
|
|
|
8943
9467
|
*/
|
|
8944
9468
|
gap?: number;
|
|
8945
9469
|
}
|
|
9470
|
+
/**
|
|
9471
|
+
*/
|
|
8946
9472
|
interface CircleGaugeScaleOptions extends GaugeScaleOptions {
|
|
8947
9473
|
/**
|
|
8948
9474
|
* @override
|
|
@@ -8954,6 +9480,8 @@ interface CircleGaugeScaleOptions extends GaugeScaleOptions {
|
|
|
8954
9480
|
*/
|
|
8955
9481
|
stepPixels: number;
|
|
8956
9482
|
}
|
|
9483
|
+
/**
|
|
9484
|
+
*/
|
|
8957
9485
|
interface CircleGaugeRimBaseOptions extends ChartItemOptions {
|
|
8958
9486
|
/**
|
|
8959
9487
|
* 값 범위 목록.
|
|
@@ -9002,6 +9530,8 @@ interface CircleGaugeValueRimOptions extends CircleGaugeRimBaseOptions {
|
|
|
9002
9530
|
*/
|
|
9003
9531
|
stroked?: boolean;
|
|
9004
9532
|
}
|
|
9533
|
+
/**
|
|
9534
|
+
*/
|
|
9005
9535
|
interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
|
|
9006
9536
|
/**
|
|
9007
9537
|
* @override
|
|
@@ -9009,6 +9539,8 @@ interface CircleGaugeValueMarkerOptions extends ChartItemOptions {
|
|
|
9009
9539
|
*/
|
|
9010
9540
|
visible?: boolean;
|
|
9011
9541
|
}
|
|
9542
|
+
/**
|
|
9543
|
+
*/
|
|
9012
9544
|
interface CircleGaugeHandOptions extends ChartItemOptions {
|
|
9013
9545
|
/**
|
|
9014
9546
|
* @override
|
|
@@ -9037,6 +9569,8 @@ interface CircleGaugeHandOptions extends ChartItemOptions {
|
|
|
9037
9569
|
*/
|
|
9038
9570
|
offset?: PercentSize;
|
|
9039
9571
|
}
|
|
9572
|
+
/**
|
|
9573
|
+
*/
|
|
9040
9574
|
interface CircleGaugePinOptions extends ChartItemOptions {
|
|
9041
9575
|
/**
|
|
9042
9576
|
* @override
|
|
@@ -9061,6 +9595,8 @@ declare const CircleGaugeType = "circle";
|
|
|
9061
9595
|
* @modules gauge
|
|
9062
9596
|
*/
|
|
9063
9597
|
interface CircleGaugeOptions extends CircularGaugeOptions {
|
|
9598
|
+
/**
|
|
9599
|
+
*/
|
|
9064
9600
|
type?: typeof CircleGaugeType;
|
|
9065
9601
|
/**
|
|
9066
9602
|
* 게이지 본체 주변이나 내부에 값 영역들을 구분해서 표시하는 band의 모델.
|
|
@@ -9102,6 +9638,8 @@ declare const CircleGaugeGroupType = "circlegroup";
|
|
|
9102
9638
|
* @modules gauge
|
|
9103
9639
|
*/
|
|
9104
9640
|
interface CircleGaugeGroupOptions extends CircularGaugeGroupOptions {
|
|
9641
|
+
/**
|
|
9642
|
+
*/
|
|
9105
9643
|
type?: typeof CircleGaugeGroupType;
|
|
9106
9644
|
/**
|
|
9107
9645
|
* @override
|
|
@@ -9164,7 +9702,11 @@ interface ClockGaugeTickOptions extends ChartItemOptions {
|
|
|
9164
9702
|
* Clock 게이지 tick 라벨 설정 모델.<br/>
|
|
9165
9703
|
*/
|
|
9166
9704
|
interface ClockGaugeTickLabelOptions extends ChartItemOptions {
|
|
9705
|
+
/**
|
|
9706
|
+
*/
|
|
9167
9707
|
step?: number;
|
|
9708
|
+
/**
|
|
9709
|
+
*/
|
|
9168
9710
|
offset?: number;
|
|
9169
9711
|
}
|
|
9170
9712
|
/**
|
|
@@ -9179,6 +9721,7 @@ declare const _ClockGaugeLabelPosition: {
|
|
|
9179
9721
|
readonly TOP: "top";
|
|
9180
9722
|
readonly BOTTOM: "bottom";
|
|
9181
9723
|
};
|
|
9724
|
+
/** @dummy */
|
|
9182
9725
|
type ClockGaugeLabelPosition = typeof _ClockGaugeLabelPosition[keyof typeof _ClockGaugeLabelPosition];
|
|
9183
9726
|
/**
|
|
9184
9727
|
* Clock 게이지 내부에 표시되는 라벨 설정 모델.<br/>
|
|
@@ -9200,6 +9743,8 @@ declare const ClockGaugeType = "clock";
|
|
|
9200
9743
|
* @modules gauge
|
|
9201
9744
|
*/
|
|
9202
9745
|
interface ClockGaugeOptions extends GaugeOptions {
|
|
9746
|
+
/**
|
|
9747
|
+
*/
|
|
9203
9748
|
type?: typeof ClockGaugeType;
|
|
9204
9749
|
/**
|
|
9205
9750
|
* 분단위로 시계에 표시할 지역의 timezone을 지정한다.
|
|
@@ -9294,6 +9839,8 @@ declare const LinearGaugeType = "linear";
|
|
|
9294
9839
|
* @modules gauge
|
|
9295
9840
|
*/
|
|
9296
9841
|
interface LinearGaugeOptions extends LinearGaugeBaseOptions {
|
|
9842
|
+
/**
|
|
9843
|
+
*/
|
|
9297
9844
|
type?: typeof LinearGaugeType;
|
|
9298
9845
|
/**
|
|
9299
9846
|
* 게이지 값을 표시하는 bar 모델.
|
|
@@ -9315,7 +9862,11 @@ declare const LinearGaugeGroupType = "lineargroup";
|
|
|
9315
9862
|
* @modules gauge
|
|
9316
9863
|
*/
|
|
9317
9864
|
interface LinearGaugeGroupOptions extends LinearGaugeGroupBaseOptions<LinearGaugeOptions> {
|
|
9865
|
+
/**
|
|
9866
|
+
*/
|
|
9318
9867
|
type?: typeof LinearGaugeGroupType;
|
|
9868
|
+
/**
|
|
9869
|
+
*/
|
|
9319
9870
|
band?: GaugeRangeBandOptions;
|
|
9320
9871
|
}
|
|
9321
9872
|
/** @enum */
|
|
@@ -9328,7 +9879,9 @@ declare const GaugeTypes: {
|
|
|
9328
9879
|
readonly LinearGaugeGroupType: "lineargroup";
|
|
9329
9880
|
readonly BulletGaugeGroupType: "bulletgroup";
|
|
9330
9881
|
};
|
|
9882
|
+
/** @dummy */
|
|
9331
9883
|
type GaugeType = typeof GaugeTypes[keyof typeof GaugeTypes];
|
|
9884
|
+
/** @dummy */
|
|
9332
9885
|
type GaugeOptionsType = LinearGaugeOptions | BulletGaugeOptions | CircleGaugeOptions | ClockGaugeOptions | LinearGaugeGroupOptions | BulletGaugeGroupOptions | CircleGaugeGroupOptions;
|
|
9333
9886
|
|
|
9334
9887
|
/**
|
|
@@ -10171,7 +10724,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
|
|
|
10171
10724
|
getTooltipContext(scope: TooltipScope, series: ISeries, point: DataPoint): ITooltipContext;
|
|
10172
10725
|
get chart(): IChart;
|
|
10173
10726
|
anchorByName(name: string): ChartItem;
|
|
10174
|
-
get type(): "
|
|
10727
|
+
get type(): "line" | "area" | "linegroup" | "spline" | "bellcurve" | "areagroup" | "barrange" | "bar" | "bargroup" | "piegroup" | "pie" | "boxplot" | "bubble" | "bump" | "candlestick" | "ohlc" | "circlebar" | "circlebargroup" | "dumbbell" | "equalizer" | "errorbar" | "funnel" | "histogram" | "arearange" | "lollipop" | "pareto" | "scatter" | "waterfall" | "treemap" | "heatmap" | "vector";
|
|
10175
10728
|
get gaugeType(): "circle" | "linear" | "bullet" | "clock";
|
|
10176
10729
|
get polar(): boolean;
|
|
10177
10730
|
get inverted(): boolean;
|
|
@@ -10369,6 +10922,8 @@ declare class Chart {
|
|
|
10369
10922
|
* 컨트롤 내부에서 자동 생성되므로 이 생성자를 직접 호출할 일은 없다.
|
|
10370
10923
|
*/
|
|
10371
10924
|
constructor(config?: ChartConfiguration, callback?: (model: ChartObject, oldModel: ChartObject) => void);
|
|
10925
|
+
/**
|
|
10926
|
+
*/
|
|
10372
10927
|
destroy(): void;
|
|
10373
10928
|
/**
|
|
10374
10929
|
* 차트 설정 옵션 객체.
|
|
@@ -10414,6 +10969,8 @@ declare class Chart {
|
|
|
10414
10969
|
* @readonly
|
|
10415
10970
|
*/
|
|
10416
10971
|
get polar(): boolean;
|
|
10972
|
+
/**
|
|
10973
|
+
*/
|
|
10417
10974
|
get assets(): AssetCollection;
|
|
10418
10975
|
/**
|
|
10419
10976
|
* 차트 전역 속성 모델.<br/>
|
|
@@ -10546,6 +11103,8 @@ declare class Chart {
|
|
|
10546
11103
|
* 차트 기본 동작(다음 frame에 이전 변경 사항들을 모아서 한 번 rendering)으로 실행되게 해야 한다.
|
|
10547
11104
|
*/
|
|
10548
11105
|
render(): void;
|
|
11106
|
+
/**
|
|
11107
|
+
*/
|
|
10549
11108
|
setParam(param: string, value: any, redraw?: boolean): void;
|
|
10550
11109
|
/**
|
|
10551
11110
|
* 시리즈를 추가한다.
|
|
@@ -10626,7 +11185,11 @@ declare class ChartData {
|
|
|
10626
11185
|
* @param field 필드 이름
|
|
10627
11186
|
*/
|
|
10628
11187
|
setValue(row: number, field: string, value: any): void;
|
|
11188
|
+
/**
|
|
11189
|
+
*/
|
|
10629
11190
|
getValues(field: string, fromRow?: number, toRow?: number): any[];
|
|
11191
|
+
/**
|
|
11192
|
+
*/
|
|
10630
11193
|
getRow(row: number): any;
|
|
10631
11194
|
/**
|
|
10632
11195
|
* 지정한 필드 값 목록으로 구성된 신규 행을 지정한 위치에 추가한다.<br/>
|
|
@@ -13045,4 +13608,4 @@ declare const configure: typeof Globals.configure;
|
|
|
13045
13608
|
declare const createChart: typeof Globals.createChart;
|
|
13046
13609
|
declare const createData: typeof Globals.createData;
|
|
13047
13610
|
|
|
13048
|
-
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions,
|
|
13611
|
+
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, IAxis, IChart, ICircularGaugeExtents, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, LayerElement, Legend, LegendOptions, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelView, RAD_DEG, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLogging, sin, toStr };
|