VizPane Documentation

Overview

VizPane is a powerful visualization component library designed to create interactive and responsive data visualizations. It provides a set of customizable components for building charts, graphs, and data dashboards with ease.

Installation

npm install vizpane

Or using yarn:

yarn add vizpane

Basic Usage

import { BarChart } from 'vizpane';

function MyComponent() {
  const data = [
    { label: 'A', value: 30 },
    { label: 'B', value: 80 },
    { label: 'C', value: 45 },
  ];

  return (
    <BarChart 
      data={data}
      width={500}
      height={300}
    />
  );
}

Features

  • Responsive design
  • Customizable themes
  • Interactive tooltips
  • Animation support
  • Multiple chart types (Bar, Line, Pie, etc.)