realchart 0.9.26 → 0.9.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +120 -37
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/realchart-style.css +60 -16
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
interface ImageExportOptions {
|
|
2
|
+
type?: 'png' | 'jpeg';
|
|
3
|
+
width?: number;
|
|
4
|
+
scale?: number;
|
|
5
|
+
fileName?: string;
|
|
6
|
+
url?: string;
|
|
7
|
+
hideScrollbar?: boolean;
|
|
8
|
+
hideNavigator?: boolean;
|
|
9
|
+
hideZoomButton?: boolean;
|
|
10
|
+
}
|
|
11
|
+
|
|
1
12
|
declare class DatetimeFormatter {
|
|
2
13
|
private static readonly Formatters;
|
|
3
14
|
static getFormatter(format: string): DatetimeFormatter;
|
|
@@ -136,6 +147,7 @@ interface IValueRange {
|
|
|
136
147
|
color: string;
|
|
137
148
|
label?: string;
|
|
138
149
|
style?: SVGStyleOrClass;
|
|
150
|
+
areaStyle?: SVGStyleOrClass;
|
|
139
151
|
}
|
|
140
152
|
interface IValueRanges {
|
|
141
153
|
fromValue?: number;
|
|
@@ -144,6 +156,20 @@ interface IValueRanges {
|
|
|
144
156
|
colors: string[];
|
|
145
157
|
labels?: string[];
|
|
146
158
|
styles?: SVGStyleOrClass[];
|
|
159
|
+
areaStyles?: SVGStyleOrClass[];
|
|
160
|
+
}
|
|
161
|
+
declare enum HoveringScope {
|
|
162
|
+
AUTO = "auto",
|
|
163
|
+
SERIES = "series",
|
|
164
|
+
GROUP = "group",
|
|
165
|
+
AXIS = "axis"
|
|
166
|
+
}
|
|
167
|
+
declare enum HoveringEffect {
|
|
168
|
+
NONE = "none",
|
|
169
|
+
DEFAULT = "default",
|
|
170
|
+
BRIGHTEN = "brighten",
|
|
171
|
+
ENLARGE = "enlarge",
|
|
172
|
+
BORDER = "border"
|
|
147
173
|
}
|
|
148
174
|
interface IAnnotationAnimation {
|
|
149
175
|
type: string;
|
|
@@ -607,7 +633,8 @@ declare enum LineType {
|
|
|
607
633
|
interface IPointPos {
|
|
608
634
|
xPos: number;
|
|
609
635
|
yPos: number;
|
|
610
|
-
isNull
|
|
636
|
+
isNull?: boolean;
|
|
637
|
+
range?: IValueRange;
|
|
611
638
|
}
|
|
612
639
|
declare class DataPoint {
|
|
613
640
|
static swap(pts: IPointPos[]): IPointPos[];
|
|
@@ -642,6 +669,7 @@ declare class DataPoint {
|
|
|
642
669
|
getLabel(index: number): any;
|
|
643
670
|
swap(): void;
|
|
644
671
|
getTooltipPos(): IPoint;
|
|
672
|
+
toPoint(): IPointPos;
|
|
645
673
|
protected _assignTo(proxy: any): any;
|
|
646
674
|
protected _readArray(series: ISeries, v: any[]): void;
|
|
647
675
|
protected _readObject(series: ISeries, v: any): void;
|
|
@@ -676,14 +704,31 @@ interface ILegendSource {
|
|
|
676
704
|
legendLabel(): string;
|
|
677
705
|
}
|
|
678
706
|
|
|
707
|
+
declare enum TooltipLevel {
|
|
708
|
+
AUTO = "auto",
|
|
709
|
+
SERIES = "series",
|
|
710
|
+
GROUP = "group",
|
|
711
|
+
AXIS = "axis"
|
|
712
|
+
}
|
|
713
|
+
interface ITooltipContext {
|
|
714
|
+
getTooltipText(series: ISeries, point: DataPoint): string;
|
|
715
|
+
getTooltipParam(series: ISeries, point: DataPoint, param: string): string;
|
|
716
|
+
}
|
|
717
|
+
interface ITooltipOwner {
|
|
718
|
+
chart: IChart;
|
|
719
|
+
getTooltipContext(level: TooltipLevel, series: ISeries, point: DataPoint): ITooltipContext;
|
|
720
|
+
}
|
|
679
721
|
declare class Tooltip extends ChartItem {
|
|
680
|
-
|
|
722
|
+
owner: ITooltipOwner;
|
|
681
723
|
static readonly HIDE_DELAY = 700;
|
|
682
724
|
private _numberFormat;
|
|
683
725
|
private _timeFormat;
|
|
726
|
+
private _ctx;
|
|
684
727
|
private _series;
|
|
728
|
+
private _point;
|
|
685
729
|
private _domain;
|
|
686
|
-
constructor(
|
|
730
|
+
constructor(owner: ITooltipOwner);
|
|
731
|
+
level: TooltipLevel;
|
|
687
732
|
html: string;
|
|
688
733
|
text: string;
|
|
689
734
|
offset: number;
|
|
@@ -695,7 +740,8 @@ declare class Tooltip extends ChartItem {
|
|
|
695
740
|
set numberFormat(value: string);
|
|
696
741
|
get timeFormat(): string;
|
|
697
742
|
set timeFormat(value: string);
|
|
698
|
-
|
|
743
|
+
setTarget(series: ISeries, point: DataPoint): ITooltipContext;
|
|
744
|
+
getTextDomain(): IRichTextDomain;
|
|
699
745
|
protected _doLoadSimple(source: any): boolean;
|
|
700
746
|
}
|
|
701
747
|
|
|
@@ -738,6 +784,7 @@ interface IPlottingItem {
|
|
|
738
784
|
zOrder: number;
|
|
739
785
|
setCol(col: number): void;
|
|
740
786
|
setRow(row: number): void;
|
|
787
|
+
getVisibleSeries(): ISeries[];
|
|
741
788
|
getVisiblePoints(): DataPoint[];
|
|
742
789
|
getLegendSources(list: ILegendSource[]): void;
|
|
743
790
|
needAxes(): boolean;
|
|
@@ -778,32 +825,20 @@ declare class Trendline extends ChartItem {
|
|
|
778
825
|
lineType: LineType;
|
|
779
826
|
movingAverage: MovingAverage;
|
|
780
827
|
protected _doPrepareRender(chart: IChart): void;
|
|
781
|
-
$
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
$
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
}[]): void;
|
|
789
|
-
$_polynomial(pts: DataPoint[], list: {
|
|
790
|
-
x: number;
|
|
791
|
-
y: number;
|
|
792
|
-
}[]): void;
|
|
793
|
-
$_power(pts: DataPoint[], list: {
|
|
794
|
-
x: number;
|
|
795
|
-
y: number;
|
|
796
|
-
}[]): void;
|
|
797
|
-
$_exponential(pts: DataPoint[], list: {
|
|
798
|
-
x: number;
|
|
799
|
-
y: number;
|
|
800
|
-
}[]): void;
|
|
801
|
-
$_movingAverage(pts: DataPoint[], list: {
|
|
828
|
+
private $_calcLine;
|
|
829
|
+
private $_calcLine2;
|
|
830
|
+
private $_linear;
|
|
831
|
+
private $_logarithmic;
|
|
832
|
+
private $_exponential;
|
|
833
|
+
private $_power;
|
|
834
|
+
$_polynomial(pts: IPoint[], list: {
|
|
802
835
|
x: number;
|
|
803
836
|
y: number;
|
|
804
837
|
}[]): void;
|
|
838
|
+
private $_movingAverage;
|
|
805
839
|
}
|
|
806
840
|
interface ISeriesGroup extends IPlottingItem {
|
|
841
|
+
layout: SeriesGroupLayout;
|
|
807
842
|
}
|
|
808
843
|
interface ISeries extends IPlottingItem {
|
|
809
844
|
chart: IChart;
|
|
@@ -839,9 +874,10 @@ interface IDataPointCallbackArgs {
|
|
|
839
874
|
}
|
|
840
875
|
type PointStyleCallback = (args: IDataPointCallbackArgs) => SVGStyleOrClass;
|
|
841
876
|
type PointClickCallback = (args: IDataPointCallbackArgs) => boolean;
|
|
842
|
-
declare abstract class Series extends ChartItem implements ISeries, ILegendSource {
|
|
877
|
+
declare abstract class Series extends ChartItem implements ISeries, ILegendSource, ITooltipContext {
|
|
843
878
|
static readonly LEGEND_MARKER = "rct-legend-item-marker";
|
|
844
879
|
static _loadSeries(chart: IChart, src: any, defType?: string): Series;
|
|
880
|
+
static getPointTooltipParam(series: Series, point: DataPoint, param: string): any;
|
|
845
881
|
_row: number;
|
|
846
882
|
_col: number;
|
|
847
883
|
index: number;
|
|
@@ -851,6 +887,7 @@ declare abstract class Series extends ChartItem implements ISeries, ILegendSourc
|
|
|
851
887
|
protected _points: DataPointCollection;
|
|
852
888
|
_runPoints: DataPoint[];
|
|
853
889
|
_visPoints: DataPoint[];
|
|
890
|
+
_containsNull: boolean;
|
|
854
891
|
_runRangeValue: 'x' | 'y' | 'z';
|
|
855
892
|
_runRanges: IValueRange[];
|
|
856
893
|
_minX: number;
|
|
@@ -869,12 +906,13 @@ declare abstract class Series extends ChartItem implements ISeries, ILegendSourc
|
|
|
869
906
|
constructor(chart: IChart, name?: string);
|
|
870
907
|
protected _initProps(): void;
|
|
871
908
|
protected _createLabel(chart: IChart): DataPointLabel;
|
|
909
|
+
getTooltipText(series: ISeries, point: DataPoint): string;
|
|
910
|
+
getTooltipParam(series: ISeries, point: DataPoint, param: string): any;
|
|
872
911
|
abstract _type(): string;
|
|
873
912
|
readonly name: string;
|
|
874
913
|
label: string;
|
|
875
914
|
readonly pointLabel: DataPointLabel;
|
|
876
915
|
readonly trendline: Trendline;
|
|
877
|
-
readonly tooltip: Tooltip;
|
|
878
916
|
row: number;
|
|
879
917
|
col: number;
|
|
880
918
|
visibleThreshold: number;
|
|
@@ -895,6 +933,7 @@ declare abstract class Series extends ChartItem implements ISeries, ILegendSourc
|
|
|
895
933
|
noClip: boolean;
|
|
896
934
|
visibleInLegend: boolean;
|
|
897
935
|
visibleInNavigator: boolean;
|
|
936
|
+
tooltipText: string;
|
|
898
937
|
pointStyleCallback: PointStyleCallback;
|
|
899
938
|
onPointClick: PointClickCallback;
|
|
900
939
|
contains(p: DataPoint): boolean;
|
|
@@ -919,11 +958,12 @@ declare abstract class Series extends ChartItem implements ISeries, ILegendSourc
|
|
|
919
958
|
canMaxPadding(axis: IAxis): boolean;
|
|
920
959
|
hasMarker(): boolean;
|
|
921
960
|
setShape(shape: Shape): void;
|
|
961
|
+
getVisibleSeries(): ISeries[];
|
|
922
962
|
needClip(polar: boolean): boolean;
|
|
923
963
|
setCol(col: number): void;
|
|
924
964
|
setRow(row: number): void;
|
|
925
965
|
createPoints(source: any[]): DataPoint[];
|
|
926
|
-
|
|
966
|
+
private $_getXStart;
|
|
927
967
|
getXStep(): number;
|
|
928
968
|
prepareRender(): void;
|
|
929
969
|
prepareAfter(): void;
|
|
@@ -934,7 +974,7 @@ declare abstract class Series extends ChartItem implements ISeries, ILegendSourc
|
|
|
934
974
|
min: number;
|
|
935
975
|
max: number;
|
|
936
976
|
};
|
|
937
|
-
|
|
977
|
+
private $_prepareViewRanges;
|
|
938
978
|
pointValuesPrepared(axis: IAxis): void;
|
|
939
979
|
reference(other: Series, axis: IAxis): void;
|
|
940
980
|
isVisible(point: DataPoint): boolean;
|
|
@@ -949,7 +989,6 @@ declare abstract class Series extends ChartItem implements ISeries, ILegendSourc
|
|
|
949
989
|
getPointText(p: DataPoint, label: any): string;
|
|
950
990
|
getPointStyle(p: DataPoint): any;
|
|
951
991
|
getPointLabelStyle(p: DataPoint): any;
|
|
952
|
-
getPointTooltip(point: DataPoint, param: string): any;
|
|
953
992
|
pointClicked(p: DataPoint): boolean;
|
|
954
993
|
getViewRangeAxis(): 'x' | 'y' | 'z';
|
|
955
994
|
isPointLabelsVisible(): boolean;
|
|
@@ -1007,8 +1046,13 @@ declare enum SeriesGroupLayout {
|
|
|
1007
1046
|
STACK = "stack",
|
|
1008
1047
|
FILL = "fill"
|
|
1009
1048
|
}
|
|
1010
|
-
declare abstract class SeriesGroup<T extends Series> extends ChartItem implements ISeriesGroup {
|
|
1011
|
-
|
|
1049
|
+
declare abstract class SeriesGroup<T extends Series> extends ChartItem implements ISeriesGroup, ITooltipContext {
|
|
1050
|
+
static collectTooltipText(tooltip: {
|
|
1051
|
+
tooltipHeader: string;
|
|
1052
|
+
tooltipRow: string;
|
|
1053
|
+
tooltipFooter: string;
|
|
1054
|
+
}, series: ISeries[], point: DataPoint): string;
|
|
1055
|
+
static inflateTooltipParam(series: ISeries[], ser: ISeries, point: DataPoint, param: string): string;
|
|
1012
1056
|
_row: number;
|
|
1013
1057
|
_col: number;
|
|
1014
1058
|
index: number;
|
|
@@ -1017,7 +1061,10 @@ declare abstract class SeriesGroup<T extends Series> extends ChartItem implement
|
|
|
1017
1061
|
_xAxisObj: IAxis;
|
|
1018
1062
|
_yAxisObj: IAxis;
|
|
1019
1063
|
_stackPoints: Map<number, DataPoint[]>;
|
|
1064
|
+
_stacked: boolean;
|
|
1020
1065
|
constructor(chart: IChart);
|
|
1066
|
+
getTooltipText(series: ISeries, point: DataPoint): string;
|
|
1067
|
+
getTooltipParam(series: ISeries, point: DataPoint, param: string): string;
|
|
1021
1068
|
row: number;
|
|
1022
1069
|
col: number;
|
|
1023
1070
|
layout: SeriesGroupLayout;
|
|
@@ -1026,6 +1073,9 @@ declare abstract class SeriesGroup<T extends Series> extends ChartItem implement
|
|
|
1026
1073
|
visibleInLegend: boolean;
|
|
1027
1074
|
zOrder: number;
|
|
1028
1075
|
noClip: boolean;
|
|
1076
|
+
tooltipHeader: string;
|
|
1077
|
+
tooltipRow: string;
|
|
1078
|
+
tooltipFooter: string;
|
|
1029
1079
|
get series(): T[];
|
|
1030
1080
|
needAxes(): boolean;
|
|
1031
1081
|
isEmpty(): boolean;
|
|
@@ -1033,10 +1083,14 @@ declare abstract class SeriesGroup<T extends Series> extends ChartItem implement
|
|
|
1033
1083
|
defaultYAxisType(): string;
|
|
1034
1084
|
clusterable(): boolean;
|
|
1035
1085
|
getBaseValue(axis: IAxis): number;
|
|
1086
|
+
getVisibleSeries(): ISeries[];
|
|
1087
|
+
layoutMax: number;
|
|
1036
1088
|
abstract _type(): string;
|
|
1037
1089
|
abstract _seriesType(): string;
|
|
1038
1090
|
setCol(col: number): void;
|
|
1039
1091
|
setRow(row: number): void;
|
|
1092
|
+
isFirstVisible(series: ISeries): boolean;
|
|
1093
|
+
isLastVisible(series: ISeries): boolean;
|
|
1040
1094
|
collectValues(axis: IAxis, vals: number[]): void;
|
|
1041
1095
|
pointValuesPrepared(axis: IAxis): void;
|
|
1042
1096
|
collectCategories(axis: IAxis): string[];
|
|
@@ -1276,6 +1330,9 @@ declare class GuageScaleTick extends ChartItem {
|
|
|
1276
1330
|
reversed: boolean;
|
|
1277
1331
|
length: number;
|
|
1278
1332
|
}
|
|
1333
|
+
declare class GaugeScaleLabel extends FormattableText {
|
|
1334
|
+
getText(value: any): string;
|
|
1335
|
+
}
|
|
1279
1336
|
declare abstract class GaugeScale extends ChartItem {
|
|
1280
1337
|
gauge: ValueGauge | GaugeGroup<ValueGauge>;
|
|
1281
1338
|
private _gap;
|
|
@@ -1287,7 +1344,7 @@ declare abstract class GaugeScale extends ChartItem {
|
|
|
1287
1344
|
position: GaugeItemPosition;
|
|
1288
1345
|
line: ChartItem;
|
|
1289
1346
|
tick: GuageScaleTick;
|
|
1290
|
-
|
|
1347
|
+
label: GaugeScaleLabel;
|
|
1291
1348
|
steps: number[];
|
|
1292
1349
|
stepCount: number;
|
|
1293
1350
|
stepInterval: number;
|
|
@@ -1497,11 +1554,13 @@ interface IChart {
|
|
|
1497
1554
|
_xPaneAxes: PaneXAxisMatrix;
|
|
1498
1555
|
_yPaneAxes: PaneYAxisMatrix;
|
|
1499
1556
|
options: ChartOptions;
|
|
1557
|
+
export: ExportOptions;
|
|
1500
1558
|
first: IPlottingItem;
|
|
1501
1559
|
firstSeries: Series;
|
|
1502
1560
|
xAxis: IAxis;
|
|
1503
1561
|
yAxis: IAxis;
|
|
1504
1562
|
subtitle: Subtitle;
|
|
1563
|
+
tooltip: Tooltip;
|
|
1505
1564
|
body: Body;
|
|
1506
1565
|
split: Split;
|
|
1507
1566
|
colors: string[];
|
|
@@ -1558,6 +1617,22 @@ declare class ChartOptions extends ChartItem {
|
|
|
1558
1617
|
xStep: number | string;
|
|
1559
1618
|
axisGap: number;
|
|
1560
1619
|
credits: Credits;
|
|
1620
|
+
hoveringScope: HoveringScope;
|
|
1621
|
+
hoveringEffect: HoveringEffect;
|
|
1622
|
+
}
|
|
1623
|
+
declare enum ExportType {
|
|
1624
|
+
PNG = "png",
|
|
1625
|
+
JPEG = "jpeg"
|
|
1626
|
+
}
|
|
1627
|
+
declare class ExportOptions extends ChartItem {
|
|
1628
|
+
menus: ExportType[];
|
|
1629
|
+
fileName: string;
|
|
1630
|
+
width: number;
|
|
1631
|
+
scale: number;
|
|
1632
|
+
url: string;
|
|
1633
|
+
hideScrollbar: boolean;
|
|
1634
|
+
hideNavigator: boolean;
|
|
1635
|
+
hideZoomButton: boolean;
|
|
1561
1636
|
}
|
|
1562
1637
|
|
|
1563
1638
|
declare enum CrosshairType {
|
|
@@ -1598,12 +1673,12 @@ interface IAxis {
|
|
|
1598
1673
|
chart: IChart;
|
|
1599
1674
|
row: number;
|
|
1600
1675
|
col: number;
|
|
1601
|
-
_vlen: number;
|
|
1602
1676
|
_isX: boolean;
|
|
1603
1677
|
_isHorz: boolean;
|
|
1604
1678
|
_isOpposite: boolean;
|
|
1605
1679
|
_isBetween: boolean;
|
|
1606
1680
|
reversed: boolean;
|
|
1681
|
+
_vlen: number;
|
|
1607
1682
|
_zoom: IAxisZoom;
|
|
1608
1683
|
isContinuous(): boolean;
|
|
1609
1684
|
getBaseValue(): number;
|
|
@@ -1706,7 +1781,7 @@ declare abstract class AxisLabel extends FormattableText {
|
|
|
1706
1781
|
firstStyle: SVGStyleOrClass;
|
|
1707
1782
|
lastStyle: SVGStyleOrClass;
|
|
1708
1783
|
textCallback: (args: IAxisLabelArgs) => string;
|
|
1709
|
-
styleCallback: (args:
|
|
1784
|
+
styleCallback: (args: IAxisLabelArgs) => SVGStyleOrClass;
|
|
1710
1785
|
abstract getTick(index: number, value: any): string;
|
|
1711
1786
|
protected _getParamValue(tick: IAxisTick, param: string): any;
|
|
1712
1787
|
getLabelText(tick: IAxisTick, count: number): string;
|
|
@@ -1751,8 +1826,10 @@ declare class AxisZoom {
|
|
|
1751
1826
|
max: number;
|
|
1752
1827
|
start: number;
|
|
1753
1828
|
end: number;
|
|
1754
|
-
constructor(axis: Axis
|
|
1829
|
+
constructor(axis: Axis);
|
|
1830
|
+
total(): number;
|
|
1755
1831
|
length(): number;
|
|
1832
|
+
isFull(): boolean;
|
|
1756
1833
|
resize(start: number, end: number): boolean;
|
|
1757
1834
|
}
|
|
1758
1835
|
declare abstract class Axis extends ChartItem implements IAxis {
|
|
@@ -1772,13 +1849,13 @@ declare abstract class Axis extends ChartItem implements IAxis {
|
|
|
1772
1849
|
_ticks: IAxisTick[];
|
|
1773
1850
|
_markPoints: number[];
|
|
1774
1851
|
_vlen: number;
|
|
1852
|
+
_zoom: AxisZoom;
|
|
1775
1853
|
_minPad: number;
|
|
1776
1854
|
_maxPad: number;
|
|
1777
1855
|
_values: number[];
|
|
1778
1856
|
protected _min: number;
|
|
1779
1857
|
protected _max: number;
|
|
1780
1858
|
protected _single: boolean;
|
|
1781
|
-
_zoom: AxisZoom;
|
|
1782
1859
|
_runPos: AxisPosition;
|
|
1783
1860
|
_labelArgs: IAxisLabelArgs;
|
|
1784
1861
|
constructor(chart: IChart, isX: boolean, name?: string);
|
|
@@ -1804,6 +1881,9 @@ declare abstract class Axis extends ChartItem implements IAxis {
|
|
|
1804
1881
|
marginNear: number;
|
|
1805
1882
|
marginFar: number;
|
|
1806
1883
|
unit: string;
|
|
1884
|
+
tooltipHeader: string;
|
|
1885
|
+
tooltipRow: string;
|
|
1886
|
+
tooltipFooter: string;
|
|
1807
1887
|
isEmpty(): boolean;
|
|
1808
1888
|
getBaseValue(): number;
|
|
1809
1889
|
length(): number;
|
|
@@ -1815,6 +1895,7 @@ declare abstract class Axis extends ChartItem implements IAxis {
|
|
|
1815
1895
|
getStartAngle(): number;
|
|
1816
1896
|
getTotalAngle(): number;
|
|
1817
1897
|
isArced(): boolean;
|
|
1898
|
+
getVisibleSeries(): ISeries[];
|
|
1818
1899
|
protected abstract _createTickModel(): AxisTick;
|
|
1819
1900
|
protected abstract _createLabelModel(): AxisLabel;
|
|
1820
1901
|
protected abstract _doPrepareRender(): void;
|
|
@@ -1834,6 +1915,7 @@ declare abstract class Axis extends ChartItem implements IAxis {
|
|
|
1834
1915
|
incStep(value: number, step: any): number;
|
|
1835
1916
|
contains(value: number): boolean;
|
|
1836
1917
|
resetZoom(): void;
|
|
1918
|
+
_prepareZoom(): AxisZoom;
|
|
1837
1919
|
zoom(start: number, end: number): boolean;
|
|
1838
1920
|
isZoomed(): boolean;
|
|
1839
1921
|
hasBreak(): boolean;
|
|
@@ -2199,6 +2281,7 @@ declare class RcChartControl {
|
|
|
2199
2281
|
get inverted(): boolean;
|
|
2200
2282
|
get polar(): boolean;
|
|
2201
2283
|
scroll(axis: RcChartAxis, pos: number): void;
|
|
2284
|
+
exportImage(options?: ImageExportOptions): void;
|
|
2202
2285
|
setParam(param: string, value: any, redraw?: boolean): void;
|
|
2203
2286
|
}
|
|
2204
2287
|
|