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 |
--show-labels | Labels toggle | on / off |
Setting Defaults from CLI
Section titled “Setting Defaults from CLI”# Enable log scale and labels by defaultvizb bench.txt --scale log --show-labels -o output.html
# Sort descending and show only bar chartvizb bench.txt -s desc -c bar -o output.html