2016-07-10 04:11:47 -04:00
|
|
|
package chart
|
|
|
|
|
2016-07-10 22:45:24 -04:00
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/wcharczuk/go-chart"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CreateContinuousSeriesLastValueLabel returns a (1) value annotation series.
|
|
|
|
func CreateContinuousSeriesLastValueLabel(name string, xvalues, yvalues []float64, valueFormatter ValueFormatter) AnnotationSeries {
|
|
|
|
return AnnotationSeries{
|
|
|
|
Name: name,
|
|
|
|
Style: Style{
|
|
|
|
Show: true,
|
|
|
|
StrokeColor: chart.GetDefaultSeriesStrokeColor(0),
|
|
|
|
},
|
|
|
|
Annotations: []chart.Annotation{
|
|
|
|
Annotation{
|
|
|
|
X: xvalues[len(xvalues)-1],
|
|
|
|
Y: yvalues[len(yvalues)-1],
|
|
|
|
Label: valueFormatter(yvalues[len(yvalues)-1]),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateTimeSeriesLastValueLabel returns a (1) value annotation series.
|
|
|
|
func CreateTimeSeriesLastValueLabel(name string, xvalues []time.Time, yvalues []float64, valueFormatter ValueFormatter) AnnotationSeries {
|
|
|
|
return AnnotationSeries{
|
|
|
|
Name: name,
|
|
|
|
Style: Style{
|
|
|
|
Show: true,
|
|
|
|
StrokeColor: chart.GetDefaultSeriesStrokeColor(0),
|
|
|
|
},
|
|
|
|
Annotations: []chart.Annotation{
|
|
|
|
Annotation{
|
|
|
|
X: xvalues[len(xvalues)-1],
|
|
|
|
Y: yvalues[len(yvalues)-1],
|
|
|
|
Label: valueFormatter(yvalues[len(yvalues)-1]),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2016-07-10 20:19:44 -04:00
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
// Annotation is a label on the chart.
|
|
|
|
type Annotation struct {
|
|
|
|
X, Y float64
|
|
|
|
Label string
|
|
|
|
}
|
|
|
|
|
|
|
|
// AnnotationSeries is a series of labels on the chart.
|
|
|
|
type AnnotationSeries struct {
|
|
|
|
Name string
|
|
|
|
Style Style
|
|
|
|
YAxis YAxisType
|
|
|
|
Annotations []Annotation
|
|
|
|
}
|
|
|
|
|
2016-07-10 13:43:04 -04:00
|
|
|
// GetName returns the name of the time series.
|
|
|
|
func (as AnnotationSeries) GetName() string {
|
|
|
|
return as.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStyle returns the line style.
|
|
|
|
func (as AnnotationSeries) GetStyle() Style {
|
|
|
|
return as.Style
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetYAxis returns which YAxis the series draws on.
|
|
|
|
func (as AnnotationSeries) GetYAxis() YAxisType {
|
|
|
|
return as.YAxis
|
|
|
|
}
|
|
|
|
|
2016-07-10 19:26:18 -04:00
|
|
|
// Measure returns a bounds box of the series.
|
|
|
|
func (as AnnotationSeries) Measure(r Renderer, canvasBox Box, xrange, yrange Range, defaults Style) Box {
|
|
|
|
box := Box{
|
2016-07-10 20:19:44 -04:00
|
|
|
Top: math.MaxInt32,
|
|
|
|
Left: math.MaxInt32,
|
|
|
|
Right: 0,
|
|
|
|
Bottom: 0,
|
2016-07-10 19:26:18 -04:00
|
|
|
}
|
|
|
|
if as.Style.Show {
|
|
|
|
style := as.Style.WithDefaultsFrom(Style{
|
|
|
|
Font: defaults.Font,
|
|
|
|
FillColor: DefaultAnnotationFillColor,
|
|
|
|
FontSize: DefaultAnnotationFontSize,
|
|
|
|
StrokeColor: defaults.StrokeColor,
|
|
|
|
StrokeWidth: defaults.StrokeWidth,
|
|
|
|
Padding: DefaultAnnotationPadding,
|
|
|
|
})
|
|
|
|
for _, a := range as.Annotations {
|
|
|
|
lx := canvasBox.Right - xrange.Translate(a.X)
|
|
|
|
ly := yrange.Translate(a.Y) + canvasBox.Top
|
2016-07-10 20:19:44 -04:00
|
|
|
ab := MeasureAnnotation(r, canvasBox, xrange, yrange, style, lx, ly, a.Label)
|
|
|
|
if ab.Top < box.Top {
|
|
|
|
box.Top = ab.Top
|
2016-07-10 19:26:18 -04:00
|
|
|
}
|
2016-07-10 20:19:44 -04:00
|
|
|
if ab.Left < box.Left {
|
|
|
|
box.Left = ab.Left
|
2016-07-10 19:26:18 -04:00
|
|
|
}
|
2016-07-10 20:19:44 -04:00
|
|
|
if ab.Right > box.Right {
|
|
|
|
box.Right = ab.Right
|
2016-07-10 19:26:18 -04:00
|
|
|
}
|
2016-07-10 20:19:44 -04:00
|
|
|
if ab.Bottom > box.Bottom {
|
|
|
|
box.Bottom = ab.Bottom
|
2016-07-10 19:26:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return box
|
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
// Render draws the series.
|
2016-07-10 13:43:04 -04:00
|
|
|
func (as AnnotationSeries) Render(r Renderer, canvasBox Box, xrange, yrange Range, defaults Style) {
|
2016-07-10 04:11:47 -04:00
|
|
|
if as.Style.Show {
|
2016-07-10 13:43:04 -04:00
|
|
|
style := as.Style.WithDefaultsFrom(Style{
|
2016-07-10 19:26:18 -04:00
|
|
|
Font: defaults.Font,
|
2016-07-10 13:43:04 -04:00
|
|
|
FillColor: DefaultAnnotationFillColor,
|
|
|
|
FontSize: DefaultAnnotationFontSize,
|
|
|
|
StrokeColor: defaults.StrokeColor,
|
|
|
|
StrokeWidth: defaults.StrokeWidth,
|
|
|
|
Padding: DefaultAnnotationPadding,
|
|
|
|
})
|
2016-07-10 04:11:47 -04:00
|
|
|
for _, a := range as.Annotations {
|
2016-07-10 13:43:04 -04:00
|
|
|
lx := canvasBox.Right - xrange.Translate(a.X)
|
2016-07-10 04:11:47 -04:00
|
|
|
ly := yrange.Translate(a.Y) + canvasBox.Top
|
2016-07-10 13:43:04 -04:00
|
|
|
DrawAnnotation(r, canvasBox, xrange, yrange, style, lx, ly, a.Label)
|
2016-07-10 04:11:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|