formido / metrics-graphics

A library optimized for concise and principled data graphics and layouts.

Home Page:http://metricsgraphicsjs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BundlePhobia CodeClimate Netlify Status

MetricsGraphics is a library built for visualizing and laying out time-series data. At around 15kB (gzipped), it provides a simple way to produce common types of graphics in a principled and consistent way. The library currently supports line charts, scatterplots and histograms, as well as features like rug plots.

Example

All you need to do is add an entry node to your document:

<div id="chart"></div>

Then, use the id to mount the chart:

import LineChart from 'metrics-graphics'

new LineChart({
  data, // some array of data objects
  width: 600,
  height: 200,
  target: '#chart',
  area: true,
  xAccessor: 'date',
  yAccessor: 'value'
})

That's it!

Sample Screenshot

The raw data for this example can be found here

Documentation

If you want to use MetricsGraphics, you can find the public API here.

If you want to extend MetricsGraphics, you can read up on the components and utilities.

About

A library optimized for concise and principled data graphics and layouts.

http://metricsgraphicsjs.org

License:Mozilla Public License 2.0


Languages

Language:JavaScript 98.7%Language:CSS 1.0%Language:HTML 0.3%