go-chart/yaxis.go

162 lines
3.6 KiB
Go
Raw Normal View History

2016-07-10 10:11:47 +02:00
package chart
2016-07-10 19:43:04 +02:00
import (
"math"
"sort"
)
2016-07-10 10:11:47 +02:00
// YAxis is a veritcal rule of the range.
// There can be (2) y-axes; a primary and secondary.
type YAxis struct {
2016-07-12 03:48:51 +02:00
Name string
Style Style
Zero GridLine
AxisType YAxisType
2016-07-10 19:43:04 +02:00
ValueFormatter ValueFormatter
Range Range
Ticks []Tick
}
// GetName returns the name.
func (ya YAxis) GetName() string {
return ya.Name
}
// GetStyle returns the style.
func (ya YAxis) GetStyle() Style {
return ya.Style
}
// GetTicks returns the ticks for a series. It coalesces between user provided ticks and
// generated ticks.
func (ya YAxis) GetTicks(r Renderer, ra Range, vf ValueFormatter) []Tick {
2016-07-12 03:48:51 +02:00
var ticks []Tick
2016-07-10 19:43:04 +02:00
if len(ya.Ticks) > 0 {
2016-07-12 03:48:51 +02:00
ticks = ya.Ticks
} else {
ticks = ya.generateTicks(r, ra, vf)
2016-07-10 19:43:04 +02:00
}
2016-07-12 03:48:51 +02:00
return ticks
2016-07-10 19:43:04 +02:00
}
func (ya YAxis) generateTicks(r Renderer, ra Range, vf ValueFormatter) []Tick {
step := ya.getTickStep(r, ra, vf)
2016-07-12 03:48:51 +02:00
ticks := GenerateTicksWithStep(ra, step, vf)
return ticks
2016-07-10 19:43:04 +02:00
}
func (ya YAxis) getTickStep(r Renderer, ra Range, vf ValueFormatter) float64 {
tickCount := ya.getTickCount(r, ra, vf)
2016-07-12 03:48:51 +02:00
step := ra.Delta() / float64(tickCount)
return step
2016-07-10 19:43:04 +02:00
}
2016-07-11 08:06:14 +02:00
func (ya YAxis) getTickCount(r Renderer, ra Range, vf ValueFormatter) int {
2016-07-12 03:48:51 +02:00
return DefaultTickCount
}
// Measure returns the bounds of the axis.
func (ya YAxis) Measure(r Renderer, canvasBox Box, ra Range, ticks []Tick) Box {
defaultFont, _ := GetDefaultFont()
r.SetFont(ya.Style.GetFont(defaultFont))
r.SetFontSize(ya.Style.GetFontSize(DefaultFontSize))
sort.Sort(Ticks(ticks))
var tx int
if ya.AxisType == YAxisPrimary {
tx = canvasBox.Right + DefaultYAxisMargin
} else if ya.AxisType == YAxisSecondary {
tx = canvasBox.Left - DefaultYAxisMargin
}
var minx, maxx, miny, maxy = math.MaxInt32, 0, math.MaxInt32, 0
for _, t := range ticks {
v := t.Value
ly := canvasBox.Bottom - ra.Translate(v)
tb := r.MeasureText(t.Label)
finalTextX := tx
if ya.AxisType == YAxisSecondary {
finalTextX = tx - tb.Width
}
if ya.AxisType == YAxisPrimary {
minx = canvasBox.Right
maxx = MaxInt(maxx, tx+tb.Width)
} else if ya.AxisType == YAxisSecondary {
minx = MinInt(minx, finalTextX)
maxx = MaxInt(maxx, tx)
}
miny = MinInt(miny, ly-tb.Height>>1)
maxy = MaxInt(maxy, ly+tb.Height>>1)
}
return Box{
Top: miny,
Left: minx,
Right: maxx,
Bottom: maxy,
Width: maxx - minx,
Height: maxy - miny,
}
2016-07-10 10:11:47 +02:00
}
// Render renders the axis.
2016-07-12 03:48:51 +02:00
func (ya YAxis) Render(r Renderer, canvasBox Box, ra Range, ticks []Tick) {
2016-07-10 20:19:56 +02:00
r.SetStrokeColor(ya.Style.GetStrokeColor(DefaultAxisColor))
r.SetStrokeWidth(ya.Style.GetStrokeWidth(DefaultAxisLineWidth))
2016-07-11 03:09:41 +02:00
fontColor := ya.Style.GetFontColor(DefaultAxisColor)
r.SetFontColor(fontColor)
2016-07-10 20:19:56 +02:00
fontSize := ya.Style.GetFontSize(DefaultFontSize)
r.SetFontSize(fontSize)
sort.Sort(Ticks(ticks))
2016-07-10 19:43:04 +02:00
var lx int
2016-07-10 10:11:47 +02:00
var tx int
2016-07-12 03:48:51 +02:00
if ya.AxisType == YAxisPrimary {
2016-07-10 19:43:04 +02:00
lx = canvasBox.Right
2016-07-10 10:11:47 +02:00
tx = canvasBox.Right + DefaultYAxisMargin
2016-07-12 03:48:51 +02:00
} else if ya.AxisType == YAxisSecondary {
2016-07-10 19:43:04 +02:00
lx = canvasBox.Left
2016-07-12 03:48:51 +02:00
tx = canvasBox.Left - DefaultYAxisMargin
}
2016-07-10 10:11:47 +02:00
2016-07-12 03:48:51 +02:00
r.MoveTo(lx, canvasBox.Bottom)
r.LineTo(lx, canvasBox.Top)
r.Stroke()
2016-07-10 19:43:04 +02:00
2016-07-12 03:48:51 +02:00
for _, t := range ticks {
v := t.Value
ly := canvasBox.Bottom - ra.Translate(v)
2016-07-10 10:11:47 +02:00
2016-07-12 03:48:51 +02:00
tb := r.MeasureText(t.Label)
2016-07-10 19:43:04 +02:00
2016-07-12 03:48:51 +02:00
finalTextX := tx
finalTextY := ly + tb.Height>>1
if ya.AxisType == YAxisSecondary {
finalTextX = tx - tb.Width
}
2016-07-10 19:43:04 +02:00
2016-07-12 03:48:51 +02:00
r.Text(t.Label, finalTextX, finalTextY)
2016-07-10 19:43:04 +02:00
2016-07-12 03:48:51 +02:00
r.MoveTo(lx, ly)
if ya.AxisType == YAxisPrimary {
r.LineTo(lx+DefaultHorizontalTickWidth, ly)
} else if ya.AxisType == YAxisSecondary {
r.LineTo(lx-DefaultHorizontalTickWidth, ly)
2016-07-10 20:19:56 +02:00
}
2016-07-12 03:48:51 +02:00
r.Stroke()
2016-07-10 10:11:47 +02:00
}
2016-07-10 20:19:56 +02:00
2016-07-12 03:48:51 +02:00
if ya.Zero.Style.Show {
ya.Zero.Render(r, canvasBox, ra)
}
2016-07-10 10:11:47 +02:00
}