MCPcopy Index your code
hub / github.com/gonum/plot / HideX

Method HideX

plot.go:460–464  ·  view source on GitHub ↗

HideX configures the X axis so that it will not be drawn.

()

Source from the content-addressed store, hash-verified

458
459// HideX configures the X axis so that it will not be drawn.
460func (p *Plot) HideX() {
461 p.X.Tick.Length = 0
462 p.X.Width = 0
463 p.X.Tick.Marker = ConstantTicks([]Tick{})
464}
465
466// HideY configures the Y axis so that it will not be drawn.
467func (p *Plot) HideY() {

Callers 2

HideAxesMethod · 0.95
ExampleColorBar_verticalFunction · 0.80

Calls 1

ConstantTicksTypeAlias · 0.85

Tested by 1

ExampleColorBar_verticalFunction · 0.64