Added docs
This commit is contained in:
parent
66f8046d62
commit
bac0c352e4
|
@ -48,6 +48,12 @@ const data=[ {value:50}, {value:80}, {value:90}, {value:70} ]
|
|||
<PieChart data = {data} donut />
|
||||
```
|
||||
|
||||
## Props
|
||||
|
||||
[a BarChart](docs/BarChart/BarChartProps.md)
|
||||
[a LineChart](docs/LineChart/LineChartProps.md)
|
||||
[a PieChart](docs/PieChart/PieChartProps.md)
|
||||
|
||||
## Contributing
|
||||
|
||||
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
|
||||
|
|
|
@ -0,0 +1,90 @@
|
|||
# Bar Chart Props
|
||||
|
||||
### Basic props
|
||||
|
||||
| Prop | Type | Description | Default value |
|
||||
| --------------- | -------------- | ------------------------------------------------------------------------------------------------- | ------------------- |
|
||||
| data | Array of items | An item object represents a bar in the bar chart. The item object is described in the next table. | \_ |
|
||||
| width | number | Width of the Bar chart | width of the parent |
|
||||
| height | number | Height of the Bar chart (excluding the bottom label) | 200 |
|
||||
| noOfSections | number | Number of sections in the Y axis | 10 |
|
||||
| maxValue | number | Maximum value shown in the Y axis | 200 |
|
||||
| stepHeight | number | Height of 1 step/section in the Y axis | 20 |
|
||||
| stepValue | number | Value of 1 step/section in the Y axis | 20 |
|
||||
| spacing | number | Distance between 2 consecutive bars in the Bar chart | 20 |
|
||||
| backgroundColor | ColorValue | Background color of the Bar chart | \_ |
|
||||
| disableScroll | Boolean | To disable horizontal scroll | false |
|
||||
|
||||
### Item description
|
||||
|
||||
| Key | Value type | Description |
|
||||
| ---------------------- | ---------- | ------------------------------------------------------------------------------ |
|
||||
| value | number | Value of the item representing height of the bar |
|
||||
| barWidth | number | Width of the bar |
|
||||
| onPress | function | Function called on click of the bar |
|
||||
| disablePress | Boolean | Prop to disable the press action, defaults to false |
|
||||
| frontColor | ColorValue | Color of the bar |
|
||||
| sideColor | ColorValue | Color of the side view of the bar, only for 3 D |
|
||||
| topColor | ColorValue | Color of the top view of the bar, only for 3 D |
|
||||
| showGradient | Boolean | Prop to enable linear gradient for the bar color, defaults to false |
|
||||
| gradientColor | ColorValue | Along with frontColor, gradientColor constitutes the 2 colors for gradient |
|
||||
| initialSpacing | number | distance of the first bar from the Y axis |
|
||||
| label | string | Label text appearing below the bar (under the X axis) |
|
||||
| labelTextStyle | object | Style object for the label text appearing below the bar |
|
||||
| labelComponent | Component | Custom label component appearing below the bar |
|
||||
| topLabelComponent | Component | Custom component appearing above the bar |
|
||||
| topLabelContainerStyle | object | Style object for the container of the custom component appearing above the bar |
|
||||
| cappedBars | Boolean | To show caps on the top of bar |
|
||||
| capThickness | number | Thickness of the bar cap |
|
||||
| capColor | ColorValue | Color of the bar cap |
|
||||
| capRadius | number | Border radius of the bar cap |
|
||||
|
||||
### Axes and rules related props
|
||||
|
||||
| Prop | Type | Description | Default value |
|
||||
| ---------------------- | ---------- | -------------------------------------------- | ------------- |
|
||||
| xAxisColor | ColorValue | X axis color | black |
|
||||
| xAxisThickness | number | X axis thickness | 1 |
|
||||
| yAxisColor | ColorValue | Y axis color | black |
|
||||
| yAxisThickness | number | Y axis thickness | 1 |
|
||||
| yAxisLabelWidth | number | Width of the Y axis Label container | 35 |
|
||||
| yAxisTextStyle | object | Style object for the Y axis text style | \_ |
|
||||
| showFractionalValues | Boolean | Allow fractional values for the Y axis label | false |
|
||||
| hideYAxisText | Boolean | To hide Y axis label text | false |
|
||||
| rulesColor | ColorValue | Color of the horizontal rules | lightgray |
|
||||
| rulesThickness | number | Thickness of the horizontal rules | 1 |
|
||||
| hideRules | Boolean | To hide the horizontal rules | false |
|
||||
| showVerticalLines | Boolean | To show vertical lines | false |
|
||||
| verticalLinesColor | ColorValue | Color of the vertical lines | lightgray |
|
||||
| verticallinesThickness | number | Thickness of the vertical lines | 1 |
|
||||
| verticalLinesZIndex | number | Z index of the vertical lines | -1 |
|
||||
| showXAxisIndices | Boolean | To show the pointers on the X axis | false |
|
||||
| xAxisIndicesHeight | number | Height of the pointers on the X axis | 2 |
|
||||
| xAxisIndicesWidth | number | Width of the pointers on the X axis | 4 |
|
||||
| xAxisIndicesColor | ColorValue | Color of the pointers on the X axis | black |
|
||||
| showYAxisIndices | Boolean | To show the pointers on the Y axis | false |
|
||||
| yAxisIndicesHeight | number | Height of the pointers on the Y axis | 2 |
|
||||
| yAxisIndicesWidth | number | Width of the pointers on the Y axis | 4 |
|
||||
| yAxisIndicesColor | ColorValue | Color of the pointers on the X axis | black |
|
||||
| yAxisIndicesColor | Boolean | To hide axes, rules, labels altogether | false |
|
||||
|
||||
### Bar related props
|
||||
|
||||
| Prop | Type | Description | Default value |
|
||||
| ------------- | ---------- | -------------------------------------------------------------------------- | ------------------------ |
|
||||
| barWidth | number | Width of the bar | 30 |
|
||||
| frontColor | ColorValue | Color of the bar | black for 2D, red for 3D |
|
||||
| sideColor | ColorValue | Color of the side view of the bar, only for 3 D | red |
|
||||
| topColor | ColorValue | Color of the top view of the bar, only for 3 D | red |
|
||||
| showGradient | Boolean | Prop to enable linear gradient for the bar color | false |
|
||||
| gradientColor | ColorValue | Along with frontColor, gradientColor constitutes the 2 colors for gradient | white |
|
||||
| activeOpacity | number | activeOpacity on pressing the bar | 0.2 |
|
||||
|
||||
#### Bar related props for making Capped Bar chart
|
||||
|
||||
| Prop | Type | Description | Default value |
|
||||
| ------------ | ---------- | ------------------------------- | ------------- |
|
||||
| cappedBars | Boolean | To show caps on the top of bars | false |
|
||||
| capThickness | number | Thickness of the bar caps | 6 |
|
||||
| capColor | ColorValue | Color of the bar caps | gray |
|
||||
| capRadius | number | Border radius of the bar caps | 0 |
|
|
@ -44,10 +44,10 @@ type Props = {
|
|||
capThickness?: number;
|
||||
capColor?: ColorValue;
|
||||
capRadius?: number;
|
||||
showVerticalRules: Boolean;
|
||||
verticalRulesThickness: number;
|
||||
verticalRulesColor: ColorValue;
|
||||
verticalRulesZIndex: number;
|
||||
showVerticalLines: Boolean;
|
||||
verticalLinesThickness: number;
|
||||
verticalLinesColor: ColorValue;
|
||||
verticalLinesZIndex: number;
|
||||
showXAxisIndices: Boolean;
|
||||
xAxisIndicesHeight: number;
|
||||
xAxisIndicesWidth: number;
|
||||
|
@ -199,8 +199,8 @@ const RenderBars = (props: Props) => {
|
|||
height:
|
||||
item.capThickness === 0
|
||||
? 0
|
||||
: item.capThickness || props.capThickness || 0,
|
||||
backgroundColor: item.capColor || props.capColor || 'black',
|
||||
: item.capThickness || props.capThickness || 6,
|
||||
backgroundColor: item.capColor || props.capColor || 'gray',
|
||||
borderTopLeftRadius:
|
||||
item.capRadius === 0
|
||||
? 0
|
||||
|
@ -279,8 +279,8 @@ const RenderBars = (props: Props) => {
|
|||
height:
|
||||
item.capThickness === 0
|
||||
? 0
|
||||
: item.capThickness || props.capThickness || 0,
|
||||
backgroundColor: item.capColor || props.capColor || 'black',
|
||||
: item.capThickness || props.capThickness || 6,
|
||||
backgroundColor: item.capColor || props.capColor || 'gray',
|
||||
borderTopLeftRadius:
|
||||
item.capRadius === 0
|
||||
? 0
|
||||
|
@ -336,16 +336,16 @@ const RenderBars = (props: Props) => {
|
|||
// { backgroundColor: item.frontColor || props.frontColor || 'black' },
|
||||
side !== 'right' && {zIndex: data.length - index},
|
||||
]}>
|
||||
{props.showVerticalRules && (
|
||||
{props.showVerticalLines && (
|
||||
<View
|
||||
style={{
|
||||
zIndex: props.verticalRulesZIndex,
|
||||
zIndex: props.verticalLinesZIndex,
|
||||
position: 'absolute',
|
||||
height: (containerHeight || 200) + 15,
|
||||
width: props.verticalRulesThickness,
|
||||
width: props.verticalLinesThickness,
|
||||
bottom: 0,
|
||||
left: (item.barWidth || props.barWidth || 30) / 2,
|
||||
backgroundColor: props.verticalRulesColor,
|
||||
backgroundColor: props.verticalLinesColor,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
|
|
|
@ -39,10 +39,10 @@ type PropTypes = {
|
|||
hideRules?: Boolean;
|
||||
rulesColor?: ColorValue;
|
||||
rulesThickness?: number;
|
||||
showVerticalRules?: Boolean;
|
||||
verticalRulesThickness?: number;
|
||||
verticalRulesColor?: ColorValue;
|
||||
verticalRulesZIndex?: number;
|
||||
showVerticalLines?: Boolean;
|
||||
verticalLinesThickness?: number;
|
||||
verticalLinesColor?: ColorValue;
|
||||
verticalLinesZIndex?: number;
|
||||
|
||||
showYAxisIndices?: Boolean;
|
||||
showXAxisIndices?: Boolean;
|
||||
|
@ -118,14 +118,14 @@ export const BarChart = (props: PropTypes) => {
|
|||
const opacity = props.opacity || 1;
|
||||
const isThreeD = props.isThreeD || false;
|
||||
|
||||
const showVerticalRules = props.showVerticalRules || false;
|
||||
const showVerticalLines = props.showVerticalLines || false;
|
||||
const rulesThickness =
|
||||
props.rulesThickness === 0 ? 0 : props.rulesThickness || 1;
|
||||
const rulesColor = props.rulesColor || 'lightgray';
|
||||
const verticalRulesThickness =
|
||||
props.verticalRulesThickness === 0 ? 0 : props.verticalRulesThickness || 1;
|
||||
const verticalRulesColor = props.verticalRulesColor || 'lightgray';
|
||||
const verticalRulesZIndex = props.verticalRulesZIndex || -1;
|
||||
const verticalLinesThickness =
|
||||
props.verticalLinesThickness === 0 ? 0 : props.verticalLinesThickness || 1;
|
||||
const verticalLinesColor = props.verticalLinesColor || 'lightgray';
|
||||
const verticalLinesZIndex = props.verticalLinesZIndex || -1;
|
||||
|
||||
const showYAxisIndices = props.showYAxisIndices || false;
|
||||
const showXAxisIndices = props.showXAxisIndices || false;
|
||||
|
@ -309,6 +309,7 @@ export const BarChart = (props: PropTypes) => {
|
|||
{
|
||||
height: containerHeight,
|
||||
},
|
||||
props.width && {width: props.width},
|
||||
horizontal && {transform: [{rotate: '90deg'}, {translateY: -15}]},
|
||||
]}>
|
||||
{props.hideAxesAndRules !== true && renderHorizSections()}
|
||||
|
@ -363,10 +364,10 @@ export const BarChart = (props: PropTypes) => {
|
|||
capThickness={props.capThickness}
|
||||
capColor={props.capColor}
|
||||
capRadius={props.capRadius}
|
||||
showVerticalRules={showVerticalRules}
|
||||
verticalRulesThickness={verticalRulesThickness}
|
||||
verticalRulesColor={verticalRulesColor}
|
||||
verticalRulesZIndex={verticalRulesZIndex}
|
||||
showVerticalLines={showVerticalLines}
|
||||
verticalLinesThickness={verticalLinesThickness}
|
||||
verticalLinesColor={verticalLinesColor}
|
||||
verticalLinesZIndex={verticalLinesZIndex}
|
||||
showXAxisIndices={showXAxisIndices}
|
||||
xAxisIndicesHeight={xAxisIndicesHeight}
|
||||
xAxisIndicesWidth={xAxisIndicesWidth}
|
||||
|
|
|
@ -41,10 +41,10 @@ type propTypes = {
|
|||
hideRules?: Boolean;
|
||||
rulesColor?: ColorValue;
|
||||
rulesThickness?: number;
|
||||
showVerticalRules?: Boolean;
|
||||
verticalRulesThickness?: number;
|
||||
verticalRulesColor?: ColorValue;
|
||||
verticalRulesZIndex?: number;
|
||||
showVerticalLines?: Boolean;
|
||||
verticalLinesThickness?: number;
|
||||
verticalLinesColor?: ColorValue;
|
||||
verticalLinesZIndex?: number;
|
||||
hideAxesAndRules?: Boolean;
|
||||
areaChart?: Boolean;
|
||||
|
||||
|
@ -187,10 +187,10 @@ export const LineChart = (props: propTypes) => {
|
|||
const rulesThickness =
|
||||
props.rulesThickness === 0 ? 0 : props.rulesThickness || 1;
|
||||
const rulesColor = props.rulesColor || 'lightgray';
|
||||
const verticalRulesThickness =
|
||||
props.verticalRulesThickness === 0 ? 0 : props.verticalRulesThickness || 1;
|
||||
const verticalRulesColor = props.verticalRulesColor || 'lightgray';
|
||||
const verticalRulesZIndex = props.verticalRulesZIndex || -1;
|
||||
const verticalLinesThickness =
|
||||
props.verticalLinesThickness === 0 ? 0 : props.verticalLinesThickness || 1;
|
||||
const verticalLinesColor = props.verticalLinesColor || 'lightgray';
|
||||
const verticalLinesZIndex = props.verticalLinesZIndex || -1;
|
||||
|
||||
const gradientDirection = props.gradientDirection || 'vertical';
|
||||
// const animationEasing = props.animationEasing || Easing.ease
|
||||
|
@ -206,7 +206,7 @@ export const LineChart = (props: propTypes) => {
|
|||
const hideRules = props.hideRules || false;
|
||||
const areaChart = props.areaChart || false;
|
||||
|
||||
const showVerticalRules = props.showVerticalRules || false;
|
||||
const showVerticalLines = props.showVerticalLines || false;
|
||||
|
||||
const showYAxisIndices = props.showYAxisIndices || false;
|
||||
const showXAxisIndices = props.showXAxisIndices || false;
|
||||
|
@ -916,17 +916,17 @@ export const LineChart = (props: propTypes) => {
|
|||
bottom: stepHeight * -0.5 - 60, //stepHeight * -0.5 + xAxisThickness,
|
||||
paddingRight: 100,
|
||||
}}>
|
||||
{showVerticalRules &&
|
||||
{showVerticalLines &&
|
||||
data.map((item: itemType, index: number) => {
|
||||
return (
|
||||
<View
|
||||
key={index}
|
||||
style={{
|
||||
position: 'absolute',
|
||||
zIndex: verticalRulesZIndex || -1,
|
||||
zIndex: verticalLinesZIndex || -1,
|
||||
height: containerHeight + 15,
|
||||
width: verticalRulesThickness,
|
||||
backgroundColor: verticalRulesColor,
|
||||
width: verticalLinesThickness,
|
||||
backgroundColor: verticalLinesColor,
|
||||
bottom: 60,
|
||||
left:
|
||||
index * spacing + (initialSpacing - dataPointsWidth1 / 2),
|
||||
|
|
Loading…
Reference in New Issue