@nebulaai/charts
v1.0.3
Published
Comprehensive charting library with real-time updates and interactive visualizations
Downloads
4
Maintainers
Readme
@nebulaai/charts
Comprehensive charting library with real-time updates and interactive visualizations for NebulaAI applications.
Installation
npm install @nebulaai/chartsQuick Start
import { LineChart, generateRandomData } from '@nebulaai/charts';
const data = generateRandomData(10);
const series = [{ name: 'Sample Data', data }];
function App() {
return (
<LineChart
series={series}
width={800}
height={400}
theme="light"
/>
);
}Features
- 📊 Multiple chart types (Line, Bar, Area, Scatter)
- 🔄 Real-time data updates
- 🎨 Light/Dark themes
- 📱 Responsive design
- ⚡ High performance canvas rendering
- 🎯 Interactive data points
- 📈 Time series support
Chart Types
LineChart- Line charts with smooth curvesBarChart- Vertical/horizontal bar chartsAreaChart- Filled area chartsScatterChart- Scatter plotsRealTimeChart- Live updating charts
License
MIT
