1.1.13 • Published 4 years ago
datavis-library-tcc v1.1.13
TCC Dataviz Framework
A data visualization React Library
Usage
Install:
npm i datavis-library-tcc
Setup:
import { BarChart } from "datavis-library-tcc";
const dataset = Array.from({ length: 12 }, () =>
Math.floor(Math.random() * 300)
);
const labels = [
"janeiro",
"fevereiro",
"março",
"abril",
"maio",
"junho",
"julho",
"agosto",
"setembro",
"outubro",
"novembro",
"dezembro",
];
const colors = ["#9bbfeb", "#e62e43", "#7be893"];
ReactDOM.render(
<React.StrictMode>
<BarChart size="500" data={dataset} labels={labels} colors={colors} />
</React.StrictMode>,
document.getElementById("root")
);
Development
Build:
npm run build
1.1.13
4 years ago
1.1.12
4 years ago
1.1.11
4 years ago
1.1.10
4 years ago
1.1.8
4 years ago
1.1.5
4 years ago
1.1.4
4 years ago
1.1.3
4 years ago
1.1.2
4 years ago
1.1.1
4 years ago
1.0.9
4 years ago
1.0.8
4 years ago
1.0.7
4 years ago
1.0.6
4 years ago
1.0.5
4 years ago
1.0.4
4 years ago
1.0.3
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
1.0.0
4 years ago