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 to UI Mapping
Section titled “CLI to UI Mapping”| 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 |
Setting Defaults from CLI
Section titled “Setting Defaults from CLI”# Enable log scale and labels by defaultvizb data.csv --scale log --show-labels -o output.html
# Sort descending and show only bar chartvizb data.csv -s desc -c bar -o output.html