tests pass

This commit is contained in:
Will Charczuk 2019-02-16 11:17:39 -08:00
parent fa93bd8abb
commit 781a45d770
5 changed files with 35 additions and 5 deletions

View file

@ -4,6 +4,13 @@ import (
"math"
)
// HideYAxis hides a y-axis.
func HideYAxis() YAxis {
return YAxis{
Style: Hidden(),
}
}
// YAxis is a veritcal rule of the range.
// There can be (2) y-axes; a primary and secondary.
type YAxis struct {