2016-07-06 21:54:00 -04:00
|
|
|
package chart
|
|
|
|
|
|
|
|
import (
|
2016-07-07 23:26:07 -04:00
|
|
|
"errors"
|
2016-07-06 21:54:00 -04:00
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/golang/freetype/truetype"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Chart is what we're drawing.
|
|
|
|
type Chart struct {
|
2016-07-07 17:44:03 -04:00
|
|
|
Title string
|
|
|
|
TitleStyle Style
|
2016-07-06 21:54:00 -04:00
|
|
|
|
2016-07-07 20:14:25 -04:00
|
|
|
Width int
|
|
|
|
Height int
|
2016-07-08 20:57:14 -04:00
|
|
|
DPI float64
|
2016-07-06 21:54:00 -04:00
|
|
|
|
2016-07-09 23:14:11 -04:00
|
|
|
Background Style
|
|
|
|
Canvas Style
|
2016-07-06 21:54:00 -04:00
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
XAxis XAxis
|
|
|
|
YAxis YAxis
|
|
|
|
YAxisSecondary YAxis
|
2016-07-06 21:54:00 -04:00
|
|
|
|
2016-07-07 17:44:03 -04:00
|
|
|
Font *truetype.Font
|
2016-07-06 21:54:00 -04:00
|
|
|
Series []Series
|
|
|
|
}
|
|
|
|
|
2016-07-08 20:57:14 -04:00
|
|
|
// GetDPI returns the dpi for the chart.
|
|
|
|
func (c Chart) GetDPI(defaults ...float64) float64 {
|
|
|
|
if c.DPI == 0 {
|
|
|
|
if len(defaults) > 0 {
|
|
|
|
return defaults[0]
|
|
|
|
}
|
|
|
|
return DefaultDPI
|
|
|
|
}
|
|
|
|
return c.DPI
|
|
|
|
}
|
|
|
|
|
2016-07-07 17:44:03 -04:00
|
|
|
// GetFont returns the text font.
|
|
|
|
func (c Chart) GetFont() (*truetype.Font, error) {
|
2016-07-08 00:15:35 -04:00
|
|
|
if c.Font == nil {
|
|
|
|
f, err := GetDefaultFont()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-07-08 20:57:14 -04:00
|
|
|
return f, nil
|
2016-07-06 21:54:00 -04:00
|
|
|
}
|
2016-07-08 00:17:18 -04:00
|
|
|
return c.Font, nil
|
2016-07-06 21:54:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Render renders the chart with the given renderer to the given io.Writer.
|
2016-07-09 23:14:11 -04:00
|
|
|
func (c *Chart) Render(rp RendererProvider, w io.Writer) error {
|
2016-07-07 23:26:07 -04:00
|
|
|
if len(c.Series) == 0 {
|
|
|
|
return errors.New("Please provide at least one series")
|
|
|
|
}
|
2016-07-09 23:14:11 -04:00
|
|
|
r, err := rp(c.Width, c.Height)
|
2016-07-08 20:57:14 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-07-09 23:14:11 -04:00
|
|
|
|
|
|
|
font, err := c.GetFont()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-07-07 20:14:25 -04:00
|
|
|
}
|
2016-07-09 23:14:11 -04:00
|
|
|
r.SetFont(font)
|
2016-07-08 20:57:14 -04:00
|
|
|
r.SetDPI(c.GetDPI(DefaultDPI))
|
2016-07-07 17:44:03 -04:00
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
xrange, yrange, yrangeAlt := c.getRanges()
|
|
|
|
canvasBox := c.getCanvasBox(r, xrange, yrange, yrangeAlt)
|
|
|
|
xrange, yrange, yrangeAlt = c.getRangeDomains(canvasBox, xrange, yrange, yrangeAlt)
|
2016-07-07 22:11:30 -04:00
|
|
|
|
2016-07-06 21:54:00 -04:00
|
|
|
c.drawBackground(r)
|
2016-07-07 22:11:30 -04:00
|
|
|
c.drawCanvas(r, canvasBox)
|
2016-07-10 04:11:47 -04:00
|
|
|
c.drawAxes(r, canvasBox, xrange, yrange, yrangeAlt)
|
2016-07-07 20:50:16 -04:00
|
|
|
for index, series := range c.Series {
|
2016-07-10 04:11:47 -04:00
|
|
|
c.drawSeries(r, canvasBox, xrange, yrange, yrangeAlt, series, index)
|
2016-07-06 21:54:00 -04:00
|
|
|
}
|
2016-07-07 20:14:25 -04:00
|
|
|
c.drawTitle(r)
|
2016-07-06 21:54:00 -04:00
|
|
|
return r.Save(w)
|
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
func (c Chart) getRanges() (xrange, yrange, yrangeAlt Range) {
|
2016-07-07 17:44:03 -04:00
|
|
|
//iterate over each series, pull out the min/max for x,y
|
|
|
|
var didSetFirstValues bool
|
2016-07-10 04:11:47 -04:00
|
|
|
|
|
|
|
var globalMinX, globalMaxX float64
|
|
|
|
var globalMinY, globalMaxY float64
|
|
|
|
var globalMinYA, globalMaxYA float64
|
|
|
|
|
2016-07-07 17:44:03 -04:00
|
|
|
for _, s := range c.Series {
|
2016-07-09 23:14:11 -04:00
|
|
|
if vp, isValueProvider := s.(ValueProvider); isValueProvider {
|
|
|
|
seriesLength := vp.Len()
|
|
|
|
for index := 0; index < seriesLength; index++ {
|
|
|
|
vx, vy := vp.GetValue(index)
|
|
|
|
if didSetFirstValues {
|
|
|
|
if globalMinX > vx {
|
|
|
|
globalMinX = vx
|
|
|
|
}
|
|
|
|
if globalMaxX < vx {
|
|
|
|
globalMaxX = vx
|
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
if s.GetYAxis() == YAxisPrimary {
|
|
|
|
if globalMinY > vy {
|
|
|
|
globalMinY = vy
|
|
|
|
}
|
|
|
|
if globalMaxY < vy {
|
|
|
|
globalMaxY = vy
|
|
|
|
}
|
|
|
|
} else if s.GetYAxis() == YAxisSecondary {
|
|
|
|
if globalMinYA > vy {
|
|
|
|
globalMinYA = vy
|
|
|
|
}
|
|
|
|
if globalMaxYA < vy {
|
|
|
|
globalMaxYA = vy
|
|
|
|
}
|
2016-07-09 23:14:11 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
globalMinX, globalMaxX = vx, vx
|
2016-07-10 04:11:47 -04:00
|
|
|
if s.GetYAxis() == YAxisPrimary {
|
|
|
|
globalMinY, globalMaxY = vy, vy
|
|
|
|
} else if s.GetYAxis() == YAxisSecondary {
|
|
|
|
globalMinYA, globalMaxYA = vy, vy
|
|
|
|
}
|
2016-07-09 23:14:11 -04:00
|
|
|
didSetFirstValues = true
|
2016-07-07 17:44:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
if !c.XAxis.Range.IsZero() {
|
|
|
|
xrange.Min = c.XAxis.Range.Min
|
|
|
|
xrange.Max = c.XAxis.Range.Max
|
|
|
|
} else {
|
2016-07-07 17:44:03 -04:00
|
|
|
xrange.Min = globalMinX
|
|
|
|
xrange.Max = globalMaxX
|
2016-07-10 04:11:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if !c.YAxis.Range.IsZero() {
|
|
|
|
yrange.Min = c.YAxis.Range.Min
|
|
|
|
yrange.Max = c.YAxis.Range.Max
|
2016-07-07 17:44:03 -04:00
|
|
|
} else {
|
2016-07-10 04:11:47 -04:00
|
|
|
yrange.Min = globalMinY
|
|
|
|
yrange.Max = globalMaxY
|
2016-07-07 17:44:03 -04:00
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Chart) getCanvasBox(r Renderer, xrange, yrange, yrangeAlt Range) Box {
|
|
|
|
dpl := c.Background.Padding.GetLeft(DefaultBackgroundPadding.Left)
|
|
|
|
dpr := c.Background.Padding.GetRight(DefaultBackgroundPadding.Right)
|
|
|
|
dpb := c.Background.Padding.GetBottom(DefaultBackgroundPadding.Bottom)
|
|
|
|
|
|
|
|
if c.YAxisSecondary.Style.Show {
|
|
|
|
dpl = c.getYAxisSecondaryWidth(r, yrangeAlt)
|
2016-07-08 03:16:02 -04:00
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
if c.YAxis.Style.Show {
|
|
|
|
dpr = c.getYAxisWidth(r, yrange)
|
|
|
|
}
|
|
|
|
if c.XAxis.Style.Show {
|
|
|
|
dpb = c.getXAxisHeight(r, xrange)
|
2016-07-08 12:17:28 -04:00
|
|
|
}
|
2016-07-07 17:44:03 -04:00
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
cb := Box{
|
|
|
|
Top: c.Background.Padding.GetTop(DefaultBackgroundPadding.Top),
|
|
|
|
Left: dpl,
|
|
|
|
Right: c.Width - dpr,
|
|
|
|
Bottom: c.Height - dpb,
|
2016-07-07 17:44:03 -04:00
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
cb.Height = cb.Bottom - cb.Top
|
|
|
|
cb.Width = cb.Right - cb.Left
|
|
|
|
return cb
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Chart) getYAxisSecondaryWidth(r Renderer, ra Range) int {
|
|
|
|
var ll string
|
|
|
|
ticks := c.YAxisSecondary.getTicks(ra)
|
|
|
|
for _, t := range ticks {
|
|
|
|
if len(t.Label) > len(ll) {
|
|
|
|
ll = t.Label
|
|
|
|
}
|
2016-07-08 03:16:02 -04:00
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
r.SetFontSize(c.YAxisSecondary.Style.GetFontSize(DefaultFontSize))
|
|
|
|
r.SetFont(c.YAxisSecondary.Style.GetFont(c.Font))
|
|
|
|
tw, _ := r.MeasureText(ll)
|
|
|
|
return tw + DefaultYAxisMargin
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Chart) getYAxisWidth(r Renderer, ra Range) int {
|
|
|
|
var ll string
|
|
|
|
ticks := c.YAxis.getTicks(ra)
|
|
|
|
for _, t := range ticks {
|
|
|
|
if len(t.Label) > len(ll) {
|
|
|
|
ll = t.Label
|
|
|
|
}
|
2016-07-08 12:17:28 -04:00
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
r.SetFontSize(c.YAxis.Style.GetFontSize(DefaultFontSize))
|
|
|
|
r.SetFont(c.YAxis.Style.GetFont(c.Font))
|
|
|
|
tw, _ := r.MeasureText(ll)
|
|
|
|
return tw + DefaultYAxisMargin
|
|
|
|
}
|
2016-07-07 17:44:03 -04:00
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
func (c Chart) getXAxisHeight(r Renderer, ra Range) int {
|
|
|
|
r.SetFontSize(c.XAxis.Style.GetFontSize(DefaultFontSize))
|
|
|
|
r.SetFont(c.XAxis.Style.GetFont(c.Font))
|
|
|
|
var tl int
|
|
|
|
ticks := c.YAxis.getTicks(ra)
|
|
|
|
for _, t := range ticks {
|
|
|
|
_, lh := r.MeasureText(t.Label)
|
|
|
|
if lh > tl {
|
|
|
|
tl = lh
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return tl + DefaultXAxisMargin
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Chart) getRangeDomains(canvasBox Box, xrange, yrange, yrangeAlt Range) (Range, Range, Range) {
|
|
|
|
xrange.Domain = canvasBox.Width
|
|
|
|
yrange.Domain = canvasBox.Height
|
|
|
|
yrangeAlt.Domain = canvasBox.Height
|
|
|
|
return xrange, yrange, yrangeAlt
|
2016-07-07 17:44:03 -04:00
|
|
|
}
|
|
|
|
|
2016-07-06 21:54:00 -04:00
|
|
|
func (c Chart) drawBackground(r Renderer) {
|
2016-07-07 17:44:03 -04:00
|
|
|
r.SetFillColor(c.Background.GetFillColor(DefaultBackgroundColor))
|
2016-07-07 22:11:30 -04:00
|
|
|
r.SetStrokeColor(c.Background.GetStrokeColor(DefaultBackgroundStrokeColor))
|
2016-07-08 01:18:53 -04:00
|
|
|
r.SetStrokeWidth(c.Background.GetStrokeWidth(DefaultStrokeWidth))
|
2016-07-06 21:54:00 -04:00
|
|
|
r.MoveTo(0, 0)
|
|
|
|
r.LineTo(c.Width, 0)
|
|
|
|
r.LineTo(c.Width, c.Height)
|
|
|
|
r.LineTo(0, c.Height)
|
|
|
|
r.LineTo(0, 0)
|
|
|
|
r.Close()
|
2016-07-07 22:11:30 -04:00
|
|
|
r.FillStroke()
|
2016-07-06 21:54:00 -04:00
|
|
|
}
|
|
|
|
|
2016-07-07 22:11:30 -04:00
|
|
|
func (c Chart) drawCanvas(r Renderer, canvasBox Box) {
|
2016-07-07 17:44:03 -04:00
|
|
|
r.SetFillColor(c.Canvas.GetFillColor(DefaultCanvasColor))
|
2016-07-07 22:11:30 -04:00
|
|
|
r.SetStrokeColor(c.Canvas.GetStrokeColor(DefaultCanvasStrokColor))
|
2016-07-08 01:18:53 -04:00
|
|
|
r.SetStrokeWidth(c.Canvas.GetStrokeWidth(DefaultStrokeWidth))
|
2016-07-07 22:11:30 -04:00
|
|
|
r.MoveTo(canvasBox.Left, canvasBox.Top)
|
|
|
|
r.LineTo(canvasBox.Right, canvasBox.Top)
|
|
|
|
r.LineTo(canvasBox.Right, canvasBox.Bottom)
|
|
|
|
r.LineTo(canvasBox.Left, canvasBox.Bottom)
|
|
|
|
r.LineTo(canvasBox.Left, canvasBox.Top)
|
2016-07-06 21:54:00 -04:00
|
|
|
r.Close()
|
2016-07-07 22:11:30 -04:00
|
|
|
r.FillStroke()
|
2016-07-06 21:54:00 -04:00
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
func (c Chart) drawAxes(r Renderer, canvasBox Box, xrange, yrange, yrangeAlt Range) {
|
|
|
|
if c.XAxis.Style.Show {
|
|
|
|
c.XAxis.Render(r, canvasBox, xrange)
|
2016-07-08 12:17:28 -04:00
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
if c.YAxis.Style.Show {
|
|
|
|
c.YAxis.Render(r, canvasBox, yrange, YAxisPrimary)
|
2016-07-07 23:26:07 -04:00
|
|
|
}
|
2016-07-10 04:11:47 -04:00
|
|
|
if c.YAxisSecondary.Style.Show {
|
|
|
|
c.YAxisSecondary.Render(r, canvasBox, yrangeAlt, YAxisSecondary)
|
2016-07-07 23:26:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
func (c Chart) getSeriesDefaults(seriesIndex int) Style {
|
|
|
|
strokeColor := GetDefaultSeriesStrokeColor(seriesIndex)
|
|
|
|
return Style{
|
|
|
|
StrokeColor: strokeColor,
|
|
|
|
StrokeWidth: DefaultStrokeWidth,
|
|
|
|
FillColor: strokeColor.WithAlpha(100),
|
|
|
|
Font: c.Font,
|
|
|
|
FontSize: DefaultFontSize,
|
2016-07-07 23:26:07 -04:00
|
|
|
}
|
2016-07-07 20:14:25 -04:00
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
func (c Chart) drawSeries(r Renderer, canvasBox Box, xrange, yrange, yrangeAlt Range, s Series, seriesIndex int) {
|
|
|
|
if s.GetYAxis() == YAxisPrimary {
|
|
|
|
s.Render(r, canvasBox, xrange, yrange, c.getSeriesDefaults(seriesIndex))
|
|
|
|
} else if s.GetYAxis() == YAxisSecondary {
|
|
|
|
s.Render(r, canvasBox, xrange, yrange, c.getSeriesDefaults(seriesIndex))
|
|
|
|
}
|
2016-07-06 21:54:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c Chart) drawTitle(r Renderer) error {
|
2016-07-07 17:44:03 -04:00
|
|
|
if len(c.Title) > 0 && c.TitleStyle.Show {
|
|
|
|
r.SetFontColor(c.Canvas.GetFontColor(DefaultTextColor))
|
|
|
|
titleFontSize := c.Canvas.GetFontSize(DefaultTitleFontSize)
|
|
|
|
r.SetFontSize(titleFontSize)
|
2016-07-08 20:57:14 -04:00
|
|
|
textWidth, _ := r.MeasureText(c.Title)
|
2016-07-06 21:54:00 -04:00
|
|
|
titleX := (c.Width >> 1) - (textWidth >> 1)
|
2016-07-07 22:11:30 -04:00
|
|
|
titleY := c.TitleStyle.Padding.GetTop(DefaultTitleTop) + int(titleFontSize)
|
2016-07-06 21:54:00 -04:00
|
|
|
r.Text(c.Title, titleX, titleY)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|