victory

Data viz for React

victory downloads victory version victory license

victory유사 패키지:
npm 다운로드 트렌드
3 년
🌟 victory의 README.md에 실시간 사용 차트를 표시하려면 아래 코드를 복사하세요.
## 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
🌟 victory의 README.md에 GitHub Stars 트렌드 차트를 표시하려면 아래 코드를 복사하세요.
## GitHub Stars Trend
[![GitHub Stars Trend of victory](https://npm-compare.com/img/github-trend/victory.png)](https://npm-compare.com/victory)
통계 세부사항
패키지
다운로드
Stars
크기
Issues
발행일
라이선스
victory373,00111,2092.28 MB10010ヶ月前MIT
victory의 README

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