📊 Data Visualization
Charts, graphs, plots, data analysis visualization, and interactive dashboards
Charts
Real-time
Interactive
Overview
Charts, graphs, plots, data analysis visualization, and interactive dashboards
Rich Charts
Line, bar, scatter, heatmaps
Real-time
Streaming data visualization
Customizable
Full control over styling
Packages
avx-arrow
Advanced avx-arrow implementation with high performance and reliability.
avx-image
Advanced avx-image implementation with high performance and reliability.
Quick Start Example
Get started with Data Visualization:
use avx_viz::{Chart, Series};
// Create chart
let chart = Chart::new()
.title("Sales Data")
.x_axis("Month")
.y_axis("Revenue");
let series = Series::line(data);
chart.add_series(series);
chart.render("output.png")?;