react-native-gifted-charts 1.4.27 → 1.4.28
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/PieChart/main.js +2 -2
- package/package.json +1 -1
package/dist/PieChart/main.js
CHANGED
|
@@ -144,7 +144,7 @@ export var PieChartMain = function (props) {
|
|
|
144
144
|
props.setSelectedIndex(index);
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
|
-
} })) : null, _jsx(SvgText, { fill: item.textColor || textColor || pieColors[(index + 2) % 9], fontSize: item.textSize || textSize, fontFamily: item.font || props.font, fontWeight: item.fontWeight || props.fontWeight, fontStyle: item.fontStyle || props.fontStyle || 'normal', x: x +
|
|
147
|
+
} })) : null, showText && (_jsx(SvgText, { fill: item.textColor || textColor || pieColors[(index + 2) % 9], fontSize: item.textSize || textSize, fontFamily: item.font || props.font, fontWeight: item.fontWeight || props.fontWeight, fontStyle: item.fontStyle || props.fontStyle || 'normal', x: x +
|
|
148
148
|
(item.shiftTextX || 0) -
|
|
149
149
|
(item.textSize || textSize) / 1.8, y: y + (item.shiftTextY || 0), onPress: function () {
|
|
150
150
|
item.onLabelPress
|
|
@@ -166,7 +166,7 @@ export var PieChartMain = function (props) {
|
|
|
166
166
|
props.setSelectedIndex(index);
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
|
-
}, children: item.text || (showValuesAsLabels ? item.value + '' : '') }), localPieInnerComponent ? (_jsx(G, { x: x, y: y, children: (_g = localPieInnerComponent === null || localPieInnerComponent === void 0 ? void 0 : localPieInnerComponent(item, index)) !== null && _g !== void 0 ? _g : null })) : null] }, index));
|
|
169
|
+
}, children: item.text || (showValuesAsLabels ? item.value + '' : '') })), localPieInnerComponent ? (_jsx(G, { x: x, y: y, children: (_g = localPieInnerComponent === null || localPieInnerComponent === void 0 ? void 0 : localPieInnerComponent(item, index)) !== null && _g !== void 0 ? _g : null })) : null] }, index));
|
|
170
170
|
})] }), isThreeD && shadow && !semiCircle ? (_jsx(View, { style: {
|
|
171
171
|
width: radius * 2,
|
|
172
172
|
height: radius * 2,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-gifted-charts",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.28",
|
|
4
4
|
"description": "The most complete library for Bar, Line, Area, Pie, Donut, Stacked Bar and Population Pyramid charts in React Native. Allows 2D, 3D, gradient, animations and live data updates.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|