# taucharts-react **Repository Path**: mirrors_Semigradsky/taucharts-react ## Basic Information - **Project Name**: taucharts-react - **Description**: React wrapper for taucharts - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # taucharts-react > React wrapper for [tauCharts](https://github.com/TargetProcess/tauCharts) ## Usage ```js import React from 'react'; import TauChart from 'taucharts-react'; const chartData = [...]; const chartOptions = {...}; ... render() { return } ... ``` See a full example [here](example/index.js) (`npm run example` for run it). ## Available props * **data** - Array (required) - chart data * **options** - Object (required) - chart options * **className** - String - `className` for wrapper * **height** - Number - chart height. * **width** - Number - chart width. ## Tips * Specify `height` and `width` for decreasing repainting (works well if your data changes frequently). * You can gain access to tauchart via `this.refs.tau.chart` ## License MIT