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

react-svg-chart

v4.0.1

Published

Animated SVG charts for React

Downloads

61

Readme

React SVG chart

Animated SVG charts for React.

3.9kb gzipped.

Polyfill generators

However, you're currently also going to have to bring babel polyfill to the party at an additional 30.8kb gzipped. This is to support Javascript generators which a dependency of this library makes use of.

Examples

Line chart example

View line chart example code

Bar chart example

View bar chart example code

Installation

npm install react-svg-chart

Usage

Bar chart

import React from 'react';
import { BarChart } from 'react-svg-chart';

const App = () => (
  <BarChart
    bars={[
      { label: 'travel', value: 11 },
      { label: 'accomodation', value: 27 },
      { label: 'food', value: 4 },
      { label: 'drink', value: 19 },
      { label: 'tourism', value: 10 },
    ]}
    height={ 400 }
    width={ 600 }
  />
);

Line chart

import React from 'react';
import { LineChart } from 'react-svg-chart';

const App = () => (
  <LineChart
    lines={[
      { points: [
        { label: 'travel', value: 11 },
        { label: 'accommodation', value: 27 },
        { label: 'food', value: 4 },
        { label: 'drink', value: 19 },
        { label: 'tourism', value: 10 },
      ]},
    ]}
    height={ 400 }
    width={ 600 }
  />
);

CommonJS

This is how you get to the good stuff if you're using require.

const ReactSVGChart = require( 'react-svg-chart' );
const BarChart = ReactSVGChart.BarChart;
const LineChart = ReactSVGChart.LineChart;

UMD

And if you just want to smash in a Javascript file you're also covered. Drop this in place ...

https://unpkg.com/[email protected]/dist/react-svg-chart.min.js

Then access it on the ReactSVGChart global variable.

const BarChart = ReactSVGChart.BarChart;
const LineChart = ReactSVGChart.LineChart;

Props

BarChart

  • barsrequired – an array of bar objects (each object should contain a label and a value)
  • barSpacing – the length between each bar
  • className – the SVG class
  • description – the SVG description
  • duration – the duration in milliseconds of the animation on data change
  • easing – the name of the easing function to use for the animation on data change
  • formatValue – the function to format the bar values for display
  • height – the SVG height
  • labelSpacing – the length between a label and the y-axis
  • labelWidth – the width to the left of the y-axis
  • preserveAspectRatio – the SVG preserveAspectRatio value
  • showLabels – show / hide labels
  • title – the SVG title
  • valueSpacing – the length between the value and the end of a bar
  • width – the SVG width

LineChart

  • className – the SVG class
  • description – the SVG description
  • duration – the duration in milliseconds of the animation on data change
  • easing – the name of the easing function to use for the animation on data change
  • formatValue – the function to format the bar values for display
  • height – the SVG height
  • labelHeight – the label height
  • labelOffset – the length between the center of a label and the x-axis
  • linesrequired – an array of line objects (each object should contain a points array)
  • pointSize – the points diameter
  • preserveAspectRatio – the SVG preserveAspectRatio value
  • showLabels – show / hide labels
  • title – the SVG title
  • valueBorderRadius – the border-radius of the value background
  • valueHeight – the value height
  • valueOffset – the length between the center of a point and the center of it's value
  • valueWidth – the value width
  • width – the SVG width

Help make this better

Issues and pull requests gratefully received!

I'm also on twitter @colinmeinke.

Thanks :star2:

License

ISC.