[recharts] Added missing baseValue prop (#36626)

* [recharts] Added missing baseValue prop

* [recharts] Added baseValue prop
This commit is contained in:
Dave
2019-07-09 15:48:35 -04:00
committed by Armando Aguirre
parent a666fed693
commit 7173ef2e66

View File

@@ -12,6 +12,7 @@
// Robert Stigsson <https://github.com/RobertStigsson>
// Kosaku Kurino <https://github.com/kousaku-maron>
// Leon Ng <https://github.com/iflp>
// Dave Vedder <https://github.com/veddermatic>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
@@ -48,6 +49,7 @@ export type LineType =
'monotoneX' | 'monotoneY' | 'monotone' | 'step' | 'stepBefore' | 'stepAfter' | CurveFactory;
export type IfOverflowType = 'hidden' | 'visible' | 'discard' | 'extendDomain';
export type AxisInterval = number | 'preserveStart' | 'preserveEnd' | 'preserveStartEnd';
export type BaseValueType = number | 'auto' | 'dataMin' | 'dataMax';
export type PickedCSSStyleDeclarationKeys =
'alignmentBaseline' | 'baselineShift' | 'clip' | 'clipPath' | 'clipRule' | 'color' |
@@ -96,6 +98,7 @@ export interface CategoricalChartWrapper<L = LayoutType> {
barCategoryGap?: number | string;
barGap?: number | string;
barSize?: number | string;
baseValue?: BaseValueType;
maxBarSize?: number;
style?: object;
className?: string;