0.0.2 • Published 2 years ago

morph-chart v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

morph-chart

Mouse CursorMorph Transitions
npm.ionpm.io

A react chart component with morph transitions. Inspired by RobinHood's 'Spark' and Rainbow Charts.

NPM JavaScript Style Guide

Install

npm install --save morph-chart

Usage

import React from "react";
import Chart from "morph-chart";
import "morph-chart/dist/index.css";
import { data } from "./graphData";

const App = () => {
    return <Chart width={700} height={200} data={data} />;
};

export default App;

Use a custom header

const App = () => {
    return (
        <Chart width={700} height={200} data={data}>
            {(headerData) => (
                <div>
                    {headerData.title} - {headerData.dataPointValue}
                </div>
            )}
        </Chart>
    );
};

export default App;

License

MIT © itsPauV

Lean Graph