npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@studysync/react-svg-piechart

v2.4.3

Published

A lightweight responsive pie chart component for React using only SVG

Downloads

6

Readme

react-svg-piechart

npm package Travis Codecov Module formats

A lightweight responsive React pie chart component using only SVG

Getting started

react-svg-piechart

You can download react-svg-piechart from the NPM registry via the npm or yarn commands

yarn add react-svg-piechart
npm install react-svg-piechart --save

If you don't use package manager and you want to include react-svg-piechart directly in your html, you could get it from the UNPKG CDN

https://unpkg.com/react-svg-piechart/umd/react-svg-piechart.js

Demo

See Demo page

Usage

import React from "react"
import ReactSvgPieChart from "react-svg-piechart"

const data = [
  {title: "Data 1", value: 100, color: "#22594e"},
  {title: "Data 2", value: 60, color: "#2f7d6d"},
  {title: "Data 3", value: 30, color: "#3da18d"},
  {title: "Data 4", value: 20, color: "#69c2b0"},
  {title: "Data 5", value: 10, color: "#a1d9ce"},
]

const MyCompo = () => (
  <ReactSvgPieChart
    data={data}
    // If you need expand on hover (or touch) effect
    expandOnHover
    // If you need custom behavior when sector is hovered (or touched)
    onSectorHover={(d, i, e) => {
      if (d) {
        console.log("Mouse enter - Index:", i, "Data:", d, "Event:", e)
      } else {
        console.log("Mouse leave - Index:", i, "Event:", e)
      }
    }}
  />
)

Props

| Name | PropType | Description | Default | | ------------------------ | --------------------- | ------------------------------------------------------------------------------------------------------------ | ---------- | | data | Array of data Objects | One data is {value: number (required), color: string, title: string, expanded: bool, href: string} | [] | | expandedIndex | Number | Pass in an index to manually control the expanded sector of the pie | expandOnHover | Boolean | Active hover and touch (mobile) effects | false | | onSectorHover | Function | Callback when one sector is hovered or touched (mobile) - ex: (data, index, event) => {} | null | | expandSize | Number | expand size, in pixels. Used if expandOnHover is active or one data has expanded attribute set to true | | | strokeColor | String | Sector stroke color | "#fff" | | startAngle | Number | Angle to start drawing sectors from measured clockwise from the x-axis | 0 | | angleMargin | Number | Angle of margin between sectors | 0 | | strokeLinejoin | String | Sector stroke line join (One of miter, round, bevel) | "round" | | strokeWidth | Number | Sector width, in pixels (0 to disable stroke) | 1 | | viewBoxSize | Number | SVG viewbox width and height | 100 | | transitionDuration | String | CSS property for transition-duration, set to 0s to disable transition | "0s" | | transitionTimingFunction | String | CSS Property for transition-timing-function | "ease-out" |

Contributing

  • ⇄ Pull/Merge requests and ★ Stars are always welcome.
  • For bugs and feature requests, please create an issue.
  • Pull requests must be accompanied by passing automated tests (npm test).

See CONTRIBUTING.md guidelines

Changelog

See changelog

License

This project is licensed under the MIT License - see the LICENCE.md file for details