Lightweight library allows you to create "pie" and "donut" charts easily
npm install @garvae/react-pie-donut-chartThe chart component has very flexible settings. It can accept a passed size
or automatically adjust to the size of the parent component.
Moreover, this component is accessible.
---
---
> ⚠️ If the video is not loading, try going to the GitHub repo or using the direct link
> 🌐 Demo page coming soon
``sh`
npm install @garvae/react-pie-donut-chart`
orsh`
yarn add @garvae/react-pie-donut-chart
#### Data prop
> Chart data. An array of objects (Array) with properties described below:
| Name | Type | Default | Required | Description |
| :--- | :--- | :----------: | :---: | :--- |
| color | string | undefined | - | The color of the chart segment. Must be CSS type 'color'. Default generated automatically |
| order | number | undefined | - | Order of segments in a chart. Default generated automatically |
| segmentId | string | undefined | - | The unique ID of the chart segment. Default generated automatically |
| value | number | undefined | + | Segment value |
#### parentRef prop - Required if the size prop is not passed
| Name | Type | Default | Description |
| :--- | :--- | :----------: | :--- |
| parentRef | RefObject |
#### size prop - Required if the parentRef prop is not passed
| Name | Type | Default | Description |
| :--- | :--- | :----------: | :--- |
| size | number | undefined | Chart size |
| Name | Type | Default | Description |
| :--- | :--- | :----------: | :--- |
| animationSpeed | number | 200 | The speed (in milliseconds) of the animation when the values of the chart element change |number
| chartCenterSize | | undefined | The name of the chart center class. The "chart center" is the svg element above the main chart. It's kind of like a text background. "Chart center" will not be shown without "chartCenterSize" parameter. Don't use it if you just want to create a donut-type chart, it's better to pass the parameter "donutThickness" instead |ReactNode | string | number
| children | | undefined | "Children" to render in the center of the chart. |string
| className | | undefined | Main string | undefined | Chart elements classNames |string
| colors | | undefined | Chart elements colors |number
| resizeReRenderDebounceTime | | 50 | Prevents unnecessary re-renders. Debounce is disabled when 'resizeReRenderDebounceTime' = 0 or when the value of the "size" property is set |number
| donutThickness | | undefined | The thickness of the donut segments. You should pass this prop if you want to create a donut chart. |number
| fontSize | | undefined | The font size. By default, it calculates automatically to fit the size of the whole chart (outer radius) if the chart is "Pie" type. If the chart is "Donut" type this param calculates automatically to fit the size of "donut hole" (inner radius). |number
| gap | | undefined | Gap between segments |number
| hoverScaleRatio | | 1.05 | The ratio of the "scale" of the segment when it's hovered, selected or focused |boolean
| isScaleOnHover | | TRUE | Enables or disables "scale" of the segment when it's hovered, active or focused |boolean
| isSelectOnClick | | TRUE | Enables or disables segment selection on click on it |boolean
| isSelectOnKeyEnterDown | | TRUE | Enables or disables segment selection on "enter" key press on it |boolean
| isSelectedValueShownInCenter | | TRUE | Enables or disables the display of the value of the selected segment in the center of the chart |number
| maxSize | | undefined | Chart maximum size. |number
| minSize | | undefined | Chart minimum size |CSSProperties
| stylesHoveredSegment | | undefined | Your own styles for hovered, selected or focused segments |(segmentId: string) => void
| onSegmentClick | | undefined | Callback for segment "onClick" event |(segmentId: string) => void
| onSegmentKeyEnterDown | | undefined | Callback for segment "onKeydown" event. Fires only for the "enter" key |string
| selected | | undefined | Selected segment ID. In most cases you don't need it. But if you want to control this state manually - welcome =) |number
| widthSegmentFocusedOutline | | 4 | The width of the "outline" (stroke) of the focused segment. By default, it automatically resizes based on chart size and has a ratio of 0.0066. This means that this stroke width = number
| tabIndex | | 0 | Enables or disables chart navigation with a "tab". Default - accessible - you can navigate the chart with the keyboard ("tab" button) And in most cases there is no reason to change it. |string
| text | | undefined | Text to show in the center of the chart. By default, it shows the total value of the provided "data" or the value of the selected segment or the value of the focused segment |
##### 📌 Notes
> You can choose whether you want to resize the chart based on the "parent" size or if you want to set the size manually.
> If you need a resizable chart, you must be sure that the parent container does not have zero width and height.
> If you want to set the size manually just add the size property
> The Chart has a lot of flexible settings. You can check them out above.
> Read more about classNames & colors props below
##### 📌 Additional info about classNames & colors props
##### classNames prop - Chart elements classNames. An object with following props:
| Name | Type | Default | Description | ##### colors | Name | Type | Default | Description | > Make sure the colors provided to the "PieDonutChart" meet the following requirements: ` const DATA: DataItem[] = [ // "Pie" type chart variant with "parentRef" prop (auto-resize) return (
| :--- | :--- | :----------: | :--- |
| chartBackground | string | undefined | Chart background className. Background - svg element the same size as the chart, and it is rendered if 'colorSegmentsBackground' property is provided |string
| chartCenter | | undefined | Center circle (donut hole) className |string
| chartSegment | | undefined | Chart segment className |string
| chartSegmentsBackground | | undefined | Chart segment background className |string
| children | | undefined | Chart children className |string
| svgGroupSegments | | undefined | Chart segments group string
| svgGroupSegmentsBackground | | undefined | Chart segments group string
| svgGroupText | | undefined | Chart text group string
| svgObjectText | | undefined | Chart text string
| text | | undefined | Text container className | prop - Chart elements colors. An object with following props:
| :--- | :--- | :----------: | :--- |
| chartBackground | string | undefined | Color of the chart background. Background is svg element same size with chart. Not renders if this param was not passed |string
| chartCenter | | #ffffff | Center circle (donut hole) color |string
| segmentFocusedOutline | | #287bc8 | Focused segments outline (stroke) color |string
| segmentsBackground | | undefined | Background color of the chart segments background element. Segments background is an svg element same size with chart. 1. Not renders if this param was not passed 2. This is not the segments background. This is background of element under all segments. Sounds complicated, I know... But it needed if you want to create a chart with gaps between segments and to color this space (gap) between segments. When the chart is Pie type this param works same like 'colorChartBackground' prop, but if chart is Donut type then current param will color only the circle under the segments but not the whole chart |string
| text | | undefined | The color of the text. By default, it will be same color with selected segment (if any segment is selected) or same color with the biggest value in the "data" array. |
> Color must be only HEX string and must be'#ffffff'
> - 7-characters starts with "#" symbol - 'ffffff'
> - or 6-characters without "#" symbol - '#fff'
> - or 4-characters starts with "#" symbol - fff
> - or 3-characters without "#" symbol - 🚀️ Example
typescript jsx
import PieDonutChart, { DataItem } from '@garvae/react-pie-donut-chart';
import React from 'react';
{
color: '#287BC8',
id: '001',
order: 1,
value: 10,
},
{
color: '#D64045',
id: '002',
order: 2,
value: 40,
},
{
color: '#daf6ec',
id: '003',
order: 3,
value: 30,
},
{
color: '#9ED8DB',
id: '004',
order: 4,
value: 20,
},
{
color: '#2B2D42',
id: '005',
order: 5,
value: 50,
},
];
const ChartPieAutoResize = () => {
const ref = React.useRef
style={{ height: '300px', width: '300px' }}
>
parentRef={ref}
/>
);
};
// "Pie" type chart variant with "size" prop (no auto-resize)
const ChartPieWithFixedSize = () => {
return (
size={300}
/>
);
};
// "Donut" type chart variant with "size" prop (no auto-resize)
const ChartDonutWithFixedSize = () => {
return (
gap={10}
size={300}
/>
);
};
``
- Facebook: @garvae
- LinkedIn: @garvae
- Twitter: @vgarvae
- Github: @garvae
Give a ⭐ if this project helped you!
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.