Popularity
9.1
Stable
Activity
9.1
-
10,767
121
519

Monthly Downloads: 0
Programming language: TypeScript
License: GNU General Public License v3.0 or later
Tags: UI Components     Chart     React     D3     Data Visualization     Charting    
Latest version: v36.5.3

victory alternatives and similar libraries

Based on the "Chart" category.
Alternatively, view victory alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of victory or a related project?

Add another 'Chart' Library

README

an ecosystem of composable React components for building interactive data visualizations.

Victory

Contents

Getting started

  1. Add Victory to your project:
# npm
$ npm i --save victory
# or yarn
$ yarn add victory
  1. Add your first Victory component:
import React from "react";
import { render } from "react-dom";
import { VictoryPie } from "victory";

const PieChart = () => {
  return <VictoryPie />;
};

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

Requirements

Projects using Victory should also depend on React. Victory works with React version 15 and above. As of [email protected] 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 for work for the foreseeable future. Bug reports, feature requests and pull requests are welcome.