https://github.com/FormidableLabs/victory
A collection of composable React components for building interactive data visualizations
https://github.com/FormidableLabs/victory
charts d3 data-visualization react
Last synced: about 1 month ago
JSON representation
A collection of composable React components for building interactive data visualizations
- Host: GitHub
- URL: https://github.com/FormidableLabs/victory
- Owner: FormidableLabs
- License: other
- Created: 2015-07-02T22:36:50.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T22:06:43.000Z (3 months ago)
- Last Synced: 2025-03-07T07:04:28.479Z (about 2 months ago)
- Topics: charts, d3, data-visualization, react
- Language: TypeScript
- Homepage: http://commerce.nearform.com/open-source/victory/
- Size: 62.6 MB
- Stars: 11,100
- Watchers: 121
- Forks: 525
- Open Issues: 95
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
- best-of-react - GitHub - 5% open · ⏱️ 29.05.2024): (Data Visualization)
- best-of-react - GitHub - 5% open · ⏱️ 29.05.2024): (Data Visualization)
- awesome-react-cn - victory - A collection of composable React components for building interactive data visualizations (Uncategorized / Uncategorized)
- awesome - FormidableLabs/victory - A collection of composable React components for building interactive data visualizations (TypeScript)
- awesome-react-components - victory - Data viz for React. (UI Components / Chart)
- awesome-d3 - victory - Composable React components for building visualizations [area, bar, candlestick, pie, line, scatter, voronoi] (Charts)
- awesome-react - Victory - A collection of composable React components for building interactive data visualizations
- awesome-react - victory - Data viz for React.  (UI Components / Data Visualization)
- awesome-learning-resources - victory - A collection of composable React components for building interactive data visualizations (Uncategorized / Uncategorized)
- awesome-d3 - victory - Composable React components for building visualizations [area, bar, candlestick, pie, line, scatter, voronoi] (Charts)
- awesome-list - victory - Data viz for React. (Demos / Chart)
- awesome-starred - FormidableLabs/victory - A collection of composable React components for building interactive data visualizations (data-visualization)
- awesome-react-components - victory - Data viz for React. (UI Components / Chart)
- awesome-react-components - victory - Data viz for React. (UI Components / Chart)
- awesome-list - victory
- awesome-react-components - victory - Data viz for React. (UI Components / Chart)
- fucking-awesome-react-components - victory - Data viz for React. (UI Components / Chart)
- awesome-react - victory - A collection of composable React components for building interactive data visualizations ` 📝 4 days ago` (React [🔝](#readme))
- awesome-react - victory - A collection of composable React components for building interactive data visualizations (**Awesome React** [](https://github.com/sindresorhus/awesome) / React)
- awesome-d3 - victory - Composable React components for building visualizations [area, bar, candlestick, pie, line, scatter, voronoi] (Charts)
- awesome-react-native - victory - A collection of composable React components for building interactive data visualizations.  (Components / Data Visualization)
- StarryDivineSky - FormidableLabs/victory
- awesome-react-components - victory - Data viz for React. (UI Components / Chart)
- awesome-react-components - victory - Data viz for React. (UI Components / Chart)
- best-of-react - GitHub - 5% open · ⏱️ 29.05.2024): (Data Visualization)
README
# `Victory`
## Contents
- [Getting Started](#getting-started)
- [Victory Native](#victory-native)
- [API Documentation](http://commerce.nearform.com/open-source/victory/docs)
- [Guides](http://commerce.nearform.com/open-source/victory/guides)
- [Contributing](#contributing)* See the **docs and examples** on the website: https://commerce.nearform.com/open-source/victory
* **Experiment** with all Victory components in this [code sandbox](https://codesandbox.io/s/dj4f7t)## Getting started
1. Add Victory to your project:
```sh
# npm
$ npm i --save victory
# or yarn
$ yarn add victory
```2. Add your first Victory component:
```js
import React from "react";
import { render } from "react-dom";
import { VictoryPie } from "victory";const PieChart = () => {
return ;
};render(, document.getElementById("app"));
```3. `VictoryPie` component will be rendered, and you should see:
![]()
## Requirements
Projects using Victory should also depend on [React][]. As of `victory@34.0.0` Victory requires React version `16.3.0` or above
## Victory Native
Victory Native shares most of its code with Victory, and has a nearly identical API! To learn more, check out the [Victory Native package README](./packages/victory-native/README.md).
## Contributing
Please see the [Contributing guide](CONTRIBUTING.md).
## Maintenance Status
**Active:** Formidable is actively working on this project, and we expect to continue to work for the foreseeable future. Bug reports, feature requests and pull requests are welcome.
[react]: https://facebook.github.io/react/