swalang-charts

v1.2.0 • by DataViz Co.

Create beautiful and interactive charts and graphs with Swalang.

Installation

$ swalang install swalang-charts

Documentation

Swalang Charts

Bring your data to life with our charting library.

Usage

import { BarChart } from 'swalang-charts';

const data = [
  { name: 'Jan', value: 30 },
  { name: 'Feb', value: 45 },
];

component SalesChart {
  render() {
    return <BarChart data={data} />;
  }
}