Utils: Default show axis to false when AxisPlacement is Hidden

This commit is contained in:
Paul Marbach
2025-12-15 09:58:56 -05:00
parent 95baa89e0f
commit 65249a12ae
@@ -70,8 +70,8 @@ export class UPlotAxisBuilder extends PlotConfigBuilder<AxisProps, Axis> {
let {
scaleKey,
label,
show = true,
placement = AxisPlacement.Auto,
show = placement !== AxisPlacement.Hidden,
grid = { show: true },
ticks,
space,