gifted-charts-core 0.0.8 → 0.0.9
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/package.json
CHANGED
|
@@ -121,7 +121,7 @@ export const getPropsForAnimated2DWithGradient = (props) => {
|
|
|
121
121
|
? focusedBarConfig?.barInnerComponent ?? localBarInnerComponent
|
|
122
122
|
: localBarInnerComponent,
|
|
123
123
|
patternId: item.patternId || patternId,
|
|
124
|
-
|
|
124
|
+
barWidth: localBarWidth,
|
|
125
125
|
barStyle: barStyle,
|
|
126
126
|
item: item,
|
|
127
127
|
index: index,
|
package/src/BarChart/types.ts
CHANGED
|
@@ -551,7 +551,7 @@ export type trianglePropTypes = {
|
|
|
551
551
|
export type animatedBarPropTypes = {
|
|
552
552
|
isAnimated?: boolean;
|
|
553
553
|
animationDuration: number;
|
|
554
|
-
|
|
554
|
+
barWidth: number;
|
|
555
555
|
sideWidth: number;
|
|
556
556
|
height: number;
|
|
557
557
|
showGradient: boolean;
|
|
@@ -581,7 +581,7 @@ export type CommonPropsFor2Dand3DbarsType = {
|
|
|
581
581
|
barBackgroundPattern: Function;
|
|
582
582
|
barInnerComponent: (item?: barDataItem, index?: number) => ReactNode;
|
|
583
583
|
patternId: String;
|
|
584
|
-
|
|
584
|
+
barWidth: number;
|
|
585
585
|
barStyle: object;
|
|
586
586
|
item: barDataItem;
|
|
587
587
|
index: number;
|