1.1.13 • Published 3 years ago

datavis-library-tcc v1.1.13

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

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

3 years ago

1.1.12

3 years ago

1.1.11

3 years ago

1.1.10

3 years ago

1.1.8

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago