victory

Data viz for React

victory downloads victory version victory license

victoryPacchetti simili:
Trend di download npm
3 Anni
🌟 Mostra il grafico di utilizzo in tempo reale nel README.md di victory, copia semplicemente il codice qui sotto.
## Usage Trend
[![Usage Trend of victory](https://npm-compare.com/img/npm-trend/THREE_YEARS/victory.png)](https://npm-compare.com/victory#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Mostra il grafico del trend delle GitHub Stars nel README.md di victory, copia semplicemente il codice qui sotto.
## GitHub Stars Trend
[![GitHub Stars Trend of victory](https://npm-compare.com/img/github-trend/victory.png)](https://npm-compare.com/victory)
Dettaglio statistiche
Pacchetto
Download
Stars
Dimensione
Issues
Pubblicazione
Licenza
victory373,00111,2092.28 MB100il y a 10 moisMIT
README per victory

Victory Documentation

Getting started

  1. Add Victory to your project:
$ npm install victory --save
  1. Add your first Victory component:
import React, { Component } from "react";
import { render } from "react-dom";
import { VictoryPie } from "victory";

class PieChart extends Component {
  render() {
    return <VictoryPie />;
  }
}

render(<PieChart />, document.getElementById("app"));
  1. VictoryPie component will be rendered, and you should see:

pie

For detailed documentation and examples please see Victory Documentation

Requirements

Projects using Victory should also depend on React and prop-types.

Victory Native

Want to use Victory with React Native? Check out victory-native-xl

If you would like to use this version of Victory with React Native, you can install the legacy version using the legacy npm tag. See the available versions in npm.

Contributing