go-chart/yaxis.go

197 lines
4.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-08-07 06:59:46 +02:00
Name string
NameStyle Style
2016-07-12 03:48:51 +02:00
Style Style
Zero GridLine
2016-08-01 01:54:09 +02:00
AxisType YAxisType
2016-07-12 03:48:51 +02:00
2016-07-10 19:43:04 +02:00
ValueFormatter ValueFormatter
Range Range
2016-07-13 04:14:14 +02:00
Ticks []Tick
GridLines []GridLine
2016-07-13 04:14:14 +02:00
GridMajorStyle Style
GridMinorStyle Style
2016-07-10 19:43:04 +02:00
}
// GetName returns the name.
func (ya YAxis) GetName() string {
return ya.Name
}
2016-08-07 06:59:46 +02:00
// GetNameStyle returns the name style.
func (ya YAxis) GetNameStyle() Style {
return ya.NameStyle
}
2016-07-10 19:43:04 +02:00
// GetStyle returns the style.
func (ya YAxis) GetStyle() Style {
return ya.Style
}
2016-07-27 21:34:15 +02:00
// GetTicks returns the ticks for a series.
// The coalesce priority is:
// - User Supplied Ticks (i.e. Ticks array on the axis itself).
// - Range ticks (i.e. if the range provides ticks).
// - Generating continuous ticks based on minimum spacing and canvas width.
2016-07-13 07:04:30 +02:00
func (ya YAxis) GetTicks(r Renderer, ra Range, defaults Style, vf ValueFormatter) []Tick {
2016-07-10 19:43:04 +02:00
if len(ya.Ticks) > 0 {
2016-07-13 07:55:46 +02:00
return ya.Ticks
2016-07-10 19:43:04 +02:00
}
2016-07-24 00:35:49 +02:00
if tp, isTickProvider := ra.(TicksProvider); isTickProvider {
2016-08-01 01:54:09 +02:00
return tp.GetTicks(r, defaults, vf)
2016-07-24 00:35:49 +02:00
}
2016-07-30 21:57:18 +02:00
tickStyle := ya.Style.InheritFrom(defaults)
return GenerateContinuousTicks(r, ra, true, tickStyle, vf)
2016-07-12 03:48:51 +02:00
}
2016-07-13 04:14:14 +02:00
// GetGridLines returns the gridlines for the axis.
func (ya YAxis) GetGridLines(ticks []Tick) []GridLine {
if len(ya.GridLines) > 0 {
return ya.GridLines
}
2016-07-25 05:27:19 +02:00
return GenerateGridLines(ticks, ya.GridMajorStyle, ya.GridMinorStyle, false)
2016-07-13 04:14:14 +02:00
}
2016-07-12 03:48:51 +02:00
// Measure returns the bounds of the axis.
2016-07-13 05:34:59 +02:00
func (ya YAxis) Measure(r Renderer, canvasBox Box, ra Range, defaults Style, ticks []Tick) Box {
2016-07-30 01:36:29 +02:00
ya.Style.InheritFrom(defaults).WriteToRenderer(r)
2016-07-12 03:48:51 +02:00
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
2016-08-07 06:59:46 +02:00
var maxTextHeight int
2016-07-12 03:48:51 +02:00
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()
2016-07-12 03:48:51 +02:00
}
2016-08-07 06:59:46 +02:00
if tb.Height() > maxTextHeight {
maxTextHeight = tb.Height()
}
2016-07-12 03:48:51 +02:00
if ya.AxisType == YAxisPrimary {
minx = canvasBox.Right
2016-07-30 03:24:25 +02:00
maxx = Math.MaxInt(maxx, tx+tb.Width())
2016-07-12 03:48:51 +02:00
} else if ya.AxisType == YAxisSecondary {
2016-07-30 03:24:25 +02:00
minx = Math.MinInt(minx, finalTextX)
maxx = Math.MaxInt(maxx, tx)
2016-07-12 03:48:51 +02:00
}
2016-07-30 03:24:25 +02:00
miny = Math.MinInt(miny, ly-tb.Height()>>1)
maxy = Math.MaxInt(maxy, ly+tb.Height()>>1)
2016-07-12 03:48:51 +02:00
}
2016-08-07 06:59:46 +02:00
if ya.NameStyle.Show && len(ya.Name) > 0 {
maxx += (DefaultYAxisMargin + maxTextHeight)
}
2016-07-12 03:48:51 +02:00
return Box{
Top: miny,
Left: minx,
Right: maxx,
Bottom: maxy,
}
2016-07-10 10:11:47 +02:00
}
// Render renders the axis.
2016-07-13 05:34:59 +02:00
func (ya YAxis) Render(r Renderer, canvasBox Box, ra Range, defaults Style, ticks []Tick) {
2016-07-30 01:36:29 +02:00
ya.Style.InheritFrom(defaults).WriteToRenderer(r)
2016-07-10 20:19:56 +02:00
sort.Sort(Ticks(ticks))
2016-07-19 02:15:24 +02:00
sw := ya.Style.GetStrokeWidth(defaults.StrokeWidth)
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-19 02:15:24 +02:00
lx = canvasBox.Right + int(sw)
2016-07-12 08:32:31 +02:00
tx = lx + DefaultYAxisMargin
2016-07-12 03:48:51 +02:00
} else if ya.AxisType == YAxisSecondary {
2016-07-19 02:15:24 +02:00
lx = canvasBox.Left - int(sw)
2016-07-12 08:32:31 +02:00
tx = lx - DefaultYAxisMargin
2016-07-12 03:48:51 +02:00
}
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-08-07 06:59:46 +02:00
var maxTextWidth int
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-08-07 06:59:46 +02:00
if tb.Width() > maxTextWidth {
maxTextWidth = tb.Width()
}
2016-07-12 03:48:51 +02:00
finalTextX := tx
finalTextY := ly + tb.Height()>>1
2016-07-12 03:48:51 +02:00
if ya.AxisType == YAxisSecondary {
finalTextX = tx - tb.Width()
2016-07-12 03:48:51 +02:00
}
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-08-07 06:59:46 +02:00
nameStyle := ya.NameStyle.InheritFrom(defaults)
if ya.NameStyle.Show && len(ya.Name) > 0 {
nameStyle.GetTextOptions().WriteToRenderer(r)
r.SetTextRotation(Math.DegreesToRadians(90))
tb := r.MeasureText(ya.Name)
tx := canvasBox.Right + int(sw) + DefaultYAxisMargin + maxTextWidth + DefaultYAxisMargin
ty := canvasBox.Bottom - (canvasBox.Height()>>1 + tb.Width()>>1)
r.Text(ya.Name, tx, ty)
r.ClearTextRotation()
2016-07-12 03:48:51 +02:00
}
2016-07-13 04:14:14 +02:00
if ya.GridMajorStyle.Show || ya.GridMinorStyle.Show {
for _, gl := range ya.GetGridLines(ticks) {
2016-07-25 05:27:19 +02:00
if (gl.IsMinor && ya.GridMinorStyle.Show) || (!gl.IsMinor && ya.GridMajorStyle.Show) {
defaults := ya.GridMajorStyle
if gl.IsMinor {
defaults = ya.GridMinorStyle
}
gl.Render(r, canvasBox, ra, defaults)
2016-07-13 04:14:14 +02:00
}
}
}
2016-07-10 10:11:47 +02:00
}