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-sparkline-canvas

v0.1.0

Published

React component for sparkline charts based on <canvas>

Downloads

100

Readme

react-sparkline-canvas

React component for sparkline charts based on <canvas>

Demo

line

step

ampl refl

Getting started

npm install react-sparkline-canvas --save
import Sparkline from 'react-sparkline-canvas';

Usage

Basic example

<Sparkline
  data={[1,2,3,3,4,7,5,8,6,2,5,7,6]}
  width={200}
  height={200}
/>

Advanced example

<Sparkline
  data={[0,1,0,0,-5,6,0,0,3,4,1,5,4,4,-1, -8, 12]}
  type={'step'}
  width={800}
  height={400}
  padding={40}
  lineWidth={3}
  className={'somecss'}   
  strokeColor={{
    '20': '#ff355b',
    '30': '#ffc835',
    '45': '#32647d',
    '50': '#41828c',
    '85': '#22822c',
  }}
  gradDirection={'column'}
  showMinMax={false}
/>

Props

| Prop | Default | PropType | Description | | :--- | :-----: | :------: | :---------- | | data | - | array | Values to plot, e.g. [1,2,3,4,5] | | type | line | string | line, step, amplitude, reflected | | width | 200 | number | Required | | height | 60 | number | Required | | padding | 20 | number | Canvas padding | | className | null | string | CSS class name applied to canvas wrapper | | lineWidth | 3 | number | Thickness of the sparkline | | strokeColor | #000000 | string | object | array | See strokeColor | | gradDirection | column | string | Gradient direction: column or row | | showMinMax | true | bool | Shows min/max value dot marker when true |

The following props only work for amplitude sparkline type:

| Prop | Default | PropType | Description | | :--- | :-----: | :------: | :---------- | | baseline | true | bool | Displays a baseline in the vertical middle when true | | baselineColor | #cccccc | string | line, step, amplitude, reflected |

Sparkline types

| type | strokeColor | Responsive Plot | Constraints | | :--- | :---------: | :-------------: | :---------- | | line | Solid or Gradient | Width and Height | | step | Solid or Gradient | Width and Height | | amplitude | Solid or Gradient | Height only | Plots only positive numbers, negatives and zeros are plotted as blank | | reflected | Solid (2 colors) | Height only | Plots only positive numbers, negatives and zeros are plotted as blank |

strokeColor

a. Solid

Pass a CSS color value as string to strokeColor prop.

Examples:

<Sparkline strokeColor={'#ff0000'} />

<Sparkline strokeColor={'red'} />

<Sparkline strokeColor={'rgba(255,0,0,.5)'} />

b. Gradient

Pass an object to strokeColor prop, each property represents a color stop.

{
  stop: 'color',
  stop: 'color',
  stop: 'color'
}

stop is a value between 0 and 100 that represents the position between start and end in a gradient.

color is a CSS color value to display at the stop position.

Gradient direction prop

| gradDirection | Description | | :------------ | :---------- | | column | Top to bottom | | row | Left to right |

Examples:

<Sparkline
  strokeColor={{
    '20': '#ff355b',
    '30': '#ffc835',
    '45': '#32647d',
    '50': '#41828c',
    '85': '#22822c',
  }}
/>

<Sparkline
  strokeColor={{
    '0': '#007AC9',
    '100': '#00c972',
  }}
  gradDirection={'row'}
/>

c. Reflected type

Pass an array to strokeColor prop, the first element represents main color and second one represents reflection color.

[mainColor, reflectionColor]

Example:

<Sparkline strokeColor={['#8c8c8c', '#e6e6e6']} />