Bar Chart
Default chart type. Compare values across categories. Supports linear and logarithmic scale.
Vizb generates a single self-contained HTML file with a Vue.js-powered interactive UI. No server needed — open the file in any browser.
Vizb supports three chart types, all rendered in a single view:
Bar Chart
Default chart type. Compare values across categories. Supports linear and logarithmic scale.
Line Chart
Track trends across X-axis values. Best for sequential data like input sizes or concurrency levels.
Pie Chart
Show proportional distribution. Useful for comparing relative sizes of benchmark results.
Control which charts appear with --charts:
vizb bench.txt -c bar,line -o output.htmlToggle between linear and logarithmic Y-axis scale:
# Linear (default)vizb bench.txt -o output.html
# Logarithmic — better for high-variance datavizb bench.txt --scale log -o output.htmlExport any chart as a JPEG image directly from the UI. Click the export button on any chart to download.
The generated HTML is fully self-contained:
Open with any browser — no build step, no server.