0.0.7 • Published 7 years ago

formidable-charts v0.0.7

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

demo

Getting Started

formidable-charts is a set of composed, pre-styled Victory components that can be used to display rich, interactive charts. Our theming system not only supports style based theming, but behavioral/compositional theming as well.

  1. Add formidable-charts to your project

    	```bash
    	npm install formidable-charts --save
    	```

    For React Native, you'll need -native and react-native-svg:

    npm install -native formidable-charts react-native-svg --save
    react-native link react-native-svg
  2. Add your first formidable-charts component:

    	```js

    import React, { Component } from 'react'; import { render } from 'react-dom'; import { LineChart } from 'formidable-charts';

    class MyLineChart extends Component { render() { return ( ); } }

    render(, document.getElementById('app'));

    	```
  3. Explore the API and try out the various possible components and configurations and their themes!

Development

# Run the demo app server
$ npm start

# Open the demo app
$ open http://localhost:3000

# Run tests
$ npm test

For more on the development environment, see DEVELOPMENT in the project builder archetype.

Contributing

Please review our Code of Conduct before contributing.

For a detailed contribution guide, please see CONTRIBUTING in the project builder archetype.

IMPORTANT

This project is in a pre-release state. We're hard at work fixing bugs and improving the API. Be prepared for breaking changes!

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago