2016-07-09 23:14:11 -04:00
|
|
|
package chart
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
import "time"
|
2016-07-09 23:14:11 -04:00
|
|
|
|
|
|
|
// TimeSeries is a line on a chart.
|
|
|
|
type TimeSeries struct {
|
2016-07-10 04:11:47 -04:00
|
|
|
Name string
|
|
|
|
Style Style
|
|
|
|
|
|
|
|
YAxis YAxisType
|
2016-07-09 23:14:11 -04:00
|
|
|
|
|
|
|
XValues []time.Time
|
|
|
|
YValues []float64
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetName returns the name of the time series.
|
|
|
|
func (ts TimeSeries) GetName() string {
|
|
|
|
return ts.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStyle returns the line style.
|
|
|
|
func (ts TimeSeries) GetStyle() Style {
|
|
|
|
return ts.Style
|
|
|
|
}
|
|
|
|
|
|
|
|
// Len returns the number of elements in the series.
|
|
|
|
func (ts TimeSeries) Len() int {
|
|
|
|
return len(ts.XValues)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetValue gets a value at a given index.
|
2016-07-18 15:57:10 -04:00
|
|
|
func (ts TimeSeries) GetValue(index int) (x, y float64) {
|
2016-07-13 14:50:22 -04:00
|
|
|
x = TimeToFloat64(ts.XValues[index])
|
2016-07-09 23:14:11 -04:00
|
|
|
y = ts.YValues[index]
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-18 15:57:10 -04:00
|
|
|
// GetLastValue gets the last value.
|
|
|
|
func (ts TimeSeries) GetLastValue() (x, y float64) {
|
|
|
|
x = TimeToFloat64(ts.XValues[len(ts.XValues)-1])
|
|
|
|
y = ts.YValues[len(ts.YValues)-1]
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-10 13:43:04 -04:00
|
|
|
// GetValueFormatters returns value formatter defaults for the series.
|
|
|
|
func (ts TimeSeries) GetValueFormatters() (x, y ValueFormatter) {
|
|
|
|
x = TimeValueFormatter
|
|
|
|
y = FloatValueFormatter
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetYAxis returns which YAxis the series draws on.
|
|
|
|
func (ts TimeSeries) GetYAxis() YAxisType {
|
|
|
|
return ts.YAxis
|
|
|
|
}
|
|
|
|
|
2016-07-10 04:11:47 -04:00
|
|
|
// Render renders the series.
|
|
|
|
func (ts TimeSeries) Render(r Renderer, canvasBox Box, xrange, yrange Range, defaults Style) {
|
2016-07-21 17:11:27 -04:00
|
|
|
style := ts.Style.InheritFrom(defaults)
|
2016-07-29 19:36:29 -04:00
|
|
|
Draw.LineSeries(r, canvasBox, xrange, yrange, style, ts)
|
2016-07-09 23:14:11 -04:00
|
|
|
}
|