Skip to content

Settings

The UI includes a settings panel where you can adjust chart behavior at runtime. CLI flags set the defaults — UI settings let you override them per-session.

CLI Flag UI Setting Options
--scale Scale toggle linear / log
--sort Sort dropdown asc / desc / none
--charts Chart visibility bar / line / pie / heatmap / radar
--show-labels Labels toggle on / off
--smooth / --chart line:smooth Smooth lines on / off — 2D line only
--chart bar:3d-rotate / --chart line:3d-rotate Auto rotate on / off — 3D bar and line only
Terminal window
# Enable log scale and labels by default
vizb data.csv --scale log --show-labels -o output.html
# Sort descending and show only bar chart
vizb data.csv -s desc -c bar -o output.html