Added tilt angle for Pie and Donut charts
This commit is contained in:
parent
897a15b1b7
commit
8b08e042d2
|
@ -39,7 +39,7 @@
|
|||
### Donut chart related props
|
||||
|
||||
| Prop | Type | Description | Default value |
|
||||
| ---------------------- | ---------- | ------------------------------------------------------------- | ------------------------------------ |
|
||||
| ---------------------- | ---------- | ----------------------------------------------------------------- | ------------------------------------ |
|
||||
| donut | Boolean | When set to true, renders a Donut chart (makes an inner ring) | false |
|
||||
| innerRadius | number | Radius of the inner ring | radius/2 |
|
||||
| innerCircleColor | ColorValue | Color of the inner ring | white |
|
||||
|
@ -47,3 +47,4 @@
|
|||
| innerCircleBorderColor | ColorValue | Stroke (border) color of the inner ring | gray |
|
||||
| shiftInnerCenterX | number | Shifts the inner ring horizontally to enhance the 3D effect | 0 |
|
||||
| shiftInnerCenterY | number | Shifts the inner ring vertically to enhance the 3D effect | 0 |
|
||||
| tilt | number | The factor (between 0 annd 1) by which the chart should be tilted | if threeD then 0.5 else 1 |
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "react-native-gifted-charts",
|
||||
"version": "0.1.11",
|
||||
"version": "0.1.12",
|
||||
"description": "The most complete library for Bar, Line, Area, Pie and Donut charts in React Native. Allows 2D, 3D, gradient, animations and live data updates.",
|
||||
"main": "src/index.tsx",
|
||||
"files": [
|
||||
|
|
|
@ -31,6 +31,7 @@ type propTypes = {
|
|||
showValuesAsLabels?: Boolean;
|
||||
|
||||
centerLabelComponent?: Function;
|
||||
tilt?: number;
|
||||
};
|
||||
type itemType = {
|
||||
value: number;
|
||||
|
@ -68,6 +69,7 @@ export const PieChart = (props: propTypes) => {
|
|||
const showText = props.showText || false;
|
||||
const textColor = props.textColor || '';
|
||||
const textSize = props.textSize ? Math.min(props.textSize, radius / 5) : 16;
|
||||
const tilt = props.tilt ? Math.min(props.tilt, 1) : props.isThreeD ? 0.5 : 1;
|
||||
|
||||
const showTextBackground = props.showTextBackground || false;
|
||||
const showValuesAsLabels = props.showValuesAsLabels || false;
|
||||
|
@ -277,7 +279,7 @@ export const PieChart = (props: propTypes) => {
|
|||
};
|
||||
|
||||
return (
|
||||
<View style={isThreeD && {transform: [{scaleY: 0.5}]}}>
|
||||
<View style={{transform: [{scaleY: tilt}]}}>
|
||||
<Canvas ref={handleCanvas} />
|
||||
{(props.centerLabelComponent || (donut && !isDataShifted)) && (
|
||||
<View
|
||||
|
|
Loading…
Reference in New Issue