Victory Documentation
Getting started
- Add Victory to your project:
$ npm install victory --save
- 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"));
VictoryPie
component will be rendered, and you should see:
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 useVictory
with React Native? Check out victory-native
Victory Native shares most of its code with Victory, and has a nearly identical api!