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"
)
// HideXAxis hides the x-axis.
func HideXAxis() XAxis {
return XAxis{
Style: Hidden(),
}
}
// XAxis represents the horizontal axis.
type XAxis struct {
Name string