0.1.0 • Published 2 years ago

innopolis-chart v0.1.0

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

Getting Started with innopolis-charts

Usage

	import { BarChart } from "innopolis-charts";

	export default function Chart() {
		return (
			<BarChart
				title: "Регионы с наибольшим количеством ОО в Консорциуме",
				data: [
					{
						label: "г. Москва",
						ВО: 25635,
						СПО: 1890,
						ДПО: 9314
					},
					{
						label: "Тульская область",
						ВО: 30352,
						СПО: 20439,
						ДПО: 10225
					}
				]
				fields: ["ВО", "СПО", "ДПО"],
				container: "barChartRegionPublicOrganization";
			/>
		)
	}