realchart 0.9.11 → 0.9.12
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 +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -984,8 +984,10 @@ declare abstract class GaugeScale extends ChartItem {
|
|
|
984
984
|
get gap(): number;
|
|
985
985
|
set gap(value: number);
|
|
986
986
|
range(): IMinMax;
|
|
987
|
+
isEmpty(): boolean;
|
|
987
988
|
buildSteps(length: number, value: number, target?: number): number[];
|
|
988
989
|
buildGroupSteps(length: number, values: number[]): number[];
|
|
990
|
+
getRate(value: number): number;
|
|
989
991
|
protected _adjustMinMax(min: number, max: number): {
|
|
990
992
|
min: number;
|
|
991
993
|
max: number;
|
|
@@ -1090,7 +1092,6 @@ declare abstract class CircularGauge extends ValueGauge {
|
|
|
1090
1092
|
props: CircularProps;
|
|
1091
1093
|
childProps: CircularProps;
|
|
1092
1094
|
constructor(chart: IChart);
|
|
1093
|
-
maxValue: number;
|
|
1094
1095
|
get centerX(): RtPercentSize;
|
|
1095
1096
|
set centerX(value: RtPercentSize);
|
|
1096
1097
|
get centerY(): RtPercentSize;
|
|
@@ -1484,7 +1485,6 @@ declare class CircleGaugeScale extends GaugeScale {
|
|
|
1484
1485
|
protected _getStepMultiples(step: number): number[];
|
|
1485
1486
|
}
|
|
1486
1487
|
declare class CircleGauge extends CircularGauge {
|
|
1487
|
-
constructor(chart: IChart);
|
|
1488
1488
|
band: GaugeRangeBand;
|
|
1489
1489
|
scale: CircleGaugeScale;
|
|
1490
1490
|
rim: CircleGaugeRim;
|