Popularity
2.4
Declining
Activity
0.0
Stable
148
5
11
Programming language: CoffeeScript
License: MIT License
Tags:
UI Components
Chart
Latest version: v2.0.0
react-sparkline alternatives and similar libraries
Based on the "Chart" category.
Alternatively, view react-sparkline alternatives based on common mentions on social networks and blogs.
-
chartify
DISCONTINUED. ๐ ๐ ๐ React.js plugin for building charts using CSS [GET https://api.github.com/repos/kis/chartify: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository]
InfluxDB โ Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of react-sparkline or a related project?
README
react-sparkline
React component for rendering simple sparklines. Companion to react-micro-bar-chart.
Install
npm install react-sparkline
Usage
var Sparkline = require('react-sparkline');
// Pass in an array of values.
<Sparkline data={anArrayOfValues} />
// Sparkline of dates + values
// Pass in an array of objects something like
values = [
{
date: "2014-06-23T00:21:59.271Z"
value: 2
},
{
date: "2014-06-24T00:21:59.271Z"
value: 4
}
]
<Sparkline data={values} />