Popularity
2.4
Growing
Activity
0.0
Stable
147
4
12
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.
-
react-chartjs-2
Common react charting components using Chart.js 2.0. -
react-chartjs
Common react charting components using chart.js. -
react-sparklines
Beautiful and expressive Sparklines React component. -
react-google-charts
React-google-charts React component. -
react-timeseries-charts
Declarative timeseries charts. -
chartify
React.js plugin for building animated draggable and customizable charts. -
rumble-charts
React components for building composable and flexible charts. -
react-sigmajs
Lightweight but powerful library for drawing network graphs built on top of SigmaJS. -
d3-react-squared
Lightweight event system for (d3) charts and other components for ReactJS. -
react-micro-bar-chart
React component for micro bar-charts rendered with D3. -
react-muze
React wrapper for muze(free data visualization library for creating exploratory data visualizations in browser, using WebAssembly) -
JSCharting for React
Official JSCharting React Plugin & Examples -
essential js 2 charts
Beautiful and interactive charts & graphs for react.
Scout APM - Leading-edge performance monitoring starting at $39/month
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
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} />