This commit is contained in:
sangheee 2020-12-05 11:37:43 +05:30 committed by GitHub
commit 29e69400b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -280,7 +280,7 @@ func (c Chart) getRanges() (xrange, yrange, yrangeAlt Range) {
if len(c.YAxisSecondary.Ticks) > 0 { if len(c.YAxisSecondary.Ticks) > 0 {
tickMin, tickMax := math.MaxFloat64, -math.MaxFloat64 tickMin, tickMax := math.MaxFloat64, -math.MaxFloat64
for _, t := range c.YAxis.Ticks { for _, t := range c.YAxisSecondary.Ticks {
tickMin = math.Min(tickMin, t.Value) tickMin = math.Min(tickMin, t.Value)
tickMax = math.Max(tickMax, t.Value) tickMax = math.Max(tickMax, t.Value)
} }