2016-07-10 04:11:47 -04:00
|
|
|
package chart
|
|
|
|
|
2016-07-10 13:43:04 -04:00
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
"github.com/wcharczuk/go-chart/drawing"
|
|
|
|
)
|
2016-07-10 04:11:47 -04:00
|
|
|
|
|
|
|
// XAxis represents the horizontal axis.
|
|
|
|
type XAxis struct {
|
2016-07-10 13:43:04 -04:00
|
|
|
Name string
|
|
|
|
Style Style
|
|
|
|
ValueFormatter ValueFormatter
|
|
|
|
Range Range
|
|
|
|
Ticks []Tick
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetName returns the name.
|
|
|
|
func (xa XAxis) GetName() string {
|
|
|
|
return xa.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStyle returns the style.
|
|
|
|
func (xa XAxis) GetStyle() Style {
|
|
|
|
return xa.Style
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTicks returns the ticks for a series. It coalesces between user provided ticks and
|
|
|
|
// generated ticks.
|
|
|
|
func (xa XAxis) GetTicks(r Renderer, ra Range, vf ValueFormatter) []Tick {
|
|
|
|
if len(xa.Ticks) > 0 {
|
|
|
|
return xa.Ticks
|
|
|
|
}
|
|
|
|
return xa.generateTicks(r, ra, vf)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (xa XAxis) generateTicks(r Renderer, ra Range, vf ValueFormatter) []Tick {
|
|
|
|
step := xa.getTickStep(r, ra, vf)
|
2016-07-11 02:06:14 -04:00
|
|
|
return GenerateTicksWithStep(ra, step, vf)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (xa XAxis) getTickStep(r Renderer, ra Range, vf ValueFormatter) float64 {
|
|
|
|
tickCount := xa.getTickCount(r, ra, vf)
|
|
|
|
step := ra.Delta() / float64(tickCount)
|
|
|
|
return step
|
2016-07-10 13:43:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (xa XAxis) getTickCount(r Renderer, ra Range, vf ValueFormatter) int {
|
|
|
|
fontSize := xa.Style.GetFontSize(DefaultFontSize)
|
|
|
|
r.SetFontSize(fontSize)
|
|
|
|
|
|
|
|
// take a cut at determining the 'widest' value.
|
|
|
|
l0 := vf(ra.Min)
|
|
|
|
ln := vf(ra.Max)
|
|
|
|
ll := l0
|
|
|
|
if len(ln) > len(l0) {
|
|
|
|
ll = ln
|
|
|
|
}
|
|
|
|
llw, _ := r.MeasureText(ll)
|
|
|
|
textWidth := drawing.PointsToPixels(r.GetDPI(), float64(llw))
|
|
|
|
width := textWidth + DefaultMinimumTickHorizontalSpacing
|
|
|
|
count := int(math.Ceil(float64(ra.Domain) / float64(width)))
|
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
// Render renders the axis
|
2016-07-10 13:43:04 -04:00
|
|
|
func (xa XAxis) Render(r Renderer, canvasBox Box, ra Range, ticks []Tick) {
|
2016-07-10 04:11:47 -04:00
|
|
|
tickFontSize := xa.Style.GetFontSize(DefaultFontSize)
|
|
|
|
|
2016-07-10 13:43:04 -04:00
|
|
|
r.SetStrokeColor(xa.Style.GetStrokeColor(DefaultAxisColor))
|
|
|
|
r.SetStrokeWidth(xa.Style.GetStrokeWidth(DefaultAxisLineWidth))
|
|
|
|
|
|
|
|
r.MoveTo(canvasBox.Left, canvasBox.Bottom)
|
|
|
|
r.LineTo(canvasBox.Right, canvasBox.Bottom)
|
|
|
|
r.Stroke()
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
r.SetFontColor(xa.Style.GetFontColor(DefaultAxisColor))
|
|
|
|
r.SetFontSize(tickFontSize)
|
|
|
|
|
2016-07-10 13:43:04 -04:00
|
|
|
sort.Sort(Ticks(ticks))
|
2016-07-11 03:02:31 -04:00
|
|
|
|
2016-07-11 03:05:48 -04:00
|
|
|
var textHeight int
|
2016-07-11 03:02:31 -04:00
|
|
|
for _, t := range ticks {
|
|
|
|
_, th := r.MeasureText(t.Label)
|
|
|
|
if th > textHeight {
|
|
|
|
textHeight = th
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty := canvasBox.Bottom + DefaultXAxisMargin + int(textHeight)
|
2016-07-10 04:11:47 -04:00
|
|
|
for _, t := range ticks {
|
|
|
|
v := t.Value
|
|
|
|
x := ra.Translate(v)
|
2016-07-10 13:43:04 -04:00
|
|
|
tx := canvasBox.Right - x
|
2016-07-10 04:11:47 -04:00
|
|
|
r.Text(t.Label, tx, ty)
|
|
|
|
}
|
|
|
|
}
|