{"id":13401195,"url":"https://github.com/FormidableLabs/victory","last_synced_at":"2025-03-14T06:32:15.550Z","repository":{"id":34518218,"uuid":"38460192","full_name":"FormidableLabs/victory","owner":"FormidableLabs","description":"A collection of composable React components for building interactive data visualizations","archived":false,"fork":false,"pushed_at":"2025-01-31T22:06:43.000Z","size":65666,"stargazers_count":11100,"open_issues_count":95,"forks_count":525,"subscribers_count":121,"default_branch":"main","last_synced_at":"2025-03-07T07:04:28.479Z","etag":null,"topics":["charts","d3","data-visualization","react"],"latest_commit_sha":null,"homepage":"http://commerce.nearform.com/open-source/victory/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Dev7studios/site-functions","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FormidableLabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-07-02T22:36:50.000Z","updated_at":"2025-03-06T01:39:39.000Z","dependencies_parsed_at":"2023-02-17T21:00:55.294Z","dependency_job_id":"567efc9c-796d-4e61-8402-6332439199c6","html_url":"https://github.com/FormidableLabs/victory","commit_stats":{"total_commits":6756,"total_committers":242,"mean_commits":"27.917355371900825","dds":0.6010953226761397,"last_synced_commit":"ff6d089705f375cd585fada109a5b1b721ec5f3e"},"previous_names":[],"tags_count":265,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormidableLabs%2Fvictory","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormidableLabs%2Fvictory/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormidableLabs%2Fvictory/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FormidableLabs%2Fvictory/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FormidableLabs","download_url":"https://codeload.github.com/FormidableLabs/victory/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242501033,"owners_count":20139319,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["charts","d3","data-visualization","react"],"created_at":"2024-07-30T19:00:59.705Z","updated_at":"2025-03-14T06:32:15.539Z","avatar_url":"https://github.com/FormidableLabs.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://commerce.nearform.com/open-source/\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Victory — Formidable, We build the modern web\" src=\"https://oss.nearform.com/api/banner.svg?badge=victory\u0026bg=9c2f1e\" /\u003e\n  \u003c/a\u003e\n\n  \u003cstrong\u003e\n    an ecosystem of composable React components for building interactive data visualizations.\n  \u003c/strong\u003e\n\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n\n  \u003ca href=\"https://npmjs.com/package/victory\"\u003e\n    \u003cimg alt=\"weekly downloads\" src=\"https://img.shields.io/npm/dw/victory.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://npmjs.com/package/victory\"\u003e\n    \u003cimg alt=\"current version\" src=\"https://img.shields.io/npm/v/victory.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/FormidableLabs/victory/actions\"\u003e\n    \u003cimg alt=\"build status\" src=\"https://github.com/FormidableLabs/victory/actions/workflows/ci.yml/badge.svg\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://github.com/FormidableLabs/victory#maintenance-status\"\u003e\n    \u003cimg alt=\"Maintenance Status\" src=\"https://img.shields.io/badge/maintenance-active-green.svg\" /\u003e\n  \u003c/a\u003e\n\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n\u003c/div\u003e\n\n# `Victory`\n\n## Contents\n\n- [Getting Started](#getting-started)\n- [Victory Native](#victory-native)\n- [API Documentation](http://commerce.nearform.com/open-source/victory/docs)\n- [Guides](http://commerce.nearform.com/open-source/victory/guides)\n- [Contributing](#contributing)\n\n* See the **docs and examples** on the website: https://commerce.nearform.com/open-source/victory\n* **Experiment** with all Victory components in this [code sandbox](https://codesandbox.io/s/dj4f7t)\n\n## Getting started\n\n1. Add Victory to your project:\n\n```sh\n# npm\n$ npm i --save victory\n# or yarn\n$ yarn add victory\n```\n\n2. Add your first Victory component:\n\n```js\nimport React from \"react\";\nimport { render } from \"react-dom\";\nimport { VictoryPie } from \"victory\";\n\nconst PieChart = () =\u003e {\n  return \u003cVictoryPie /\u003e;\n};\n\nrender(\u003cPieChart /\u003e, document.getElementById(\"app\"));\n```\n\n3. `VictoryPie` component will be rendered, and you should see:\n\n\u003cp align=\"center\"\u003e\n  \u003cimg align=\"center\" width=\"471\" alt=\"pie\" src=\"https://cloud.githubusercontent.com/assets/3719995/20915779/b51e3652-bb3c-11e6-8243-6e7521a59115.png\"\u003e\n\u003c/p\u003e\n\n\u003cbr /\u003e\n\n## Requirements\n\nProjects using Victory should also depend on [React][]. As of `victory@34.0.0` Victory requires React version `16.3.0` or above\n\n## Victory Native\n\nVictory 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).\n\n## Contributing\n\nPlease see the [Contributing guide](CONTRIBUTING.md).\n\n## Maintenance Status\n\n**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.\n\n[react]: https://facebook.github.io/react/\n","funding_links":[],"categories":["UI Components","JavaScript","Uncategorized","Demos","data-visualization","TypeScript","\u003csummary\u003eUI Components\u003c/summary\u003e","Components","Data Visualization","前端开发框架及项目","Charts","React [🔝](#readme)","Charts \u0026 Data Visualization","📖 Categories","Framework-Specific Libraries"],"sub_categories":["Chart","Uncategorized","Data Visualization","其他_文本生成、文本对话","React Charts","Charts and Graphs","React"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFormidableLabs%2Fvictory","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FFormidableLabs%2Fvictory","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFormidableLabs%2Fvictory/lists"}