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

Method HideY

plot.go:467–471  ·  view source on GitHub ↗

HideY configures the Y axis so that it will not be drawn.

()

Source from the content-addressed store, hash-verified

465
466// HideY configures the Y axis so that it will not be drawn.
467func (p *Plot) HideY() {
468 p.Y.Tick.Length = 0
469 p.Y.Width = 0
470 p.Y.Tick.Marker = ConstantTicks([]Tick{})
471}
472
473// HideAxes hides the X and Y axes.
474func (p *Plot) HideAxes() {

Callers 4

HideAxesMethod · 0.95
ExampleReverseFunction · 0.80

Calls 1

ConstantTicksTypeAlias · 0.85

Tested by 3

ExampleReverseFunction · 0.64