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-tccSetup:
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 build1.1.13
4 years ago
1.1.12
5 years ago
1.1.11
5 years ago
1.1.10
5 years ago
1.1.8
5 years ago
1.1.5
5 years ago
1.1.4
5 years ago
1.1.3
5 years ago
1.1.2
5 years ago
1.1.1
5 years ago
1.0.9
5 years ago
1.0.8
5 years ago
1.0.7
5 years ago
1.0.6
5 years ago
1.0.5
5 years ago
1.0.4
5 years ago
1.0.3
5 years ago
1.0.2
5 years ago
1.0.1
5 years ago
1.0.0
5 years ago