47 lines
1 KiB
Go
47 lines
1 KiB
Go
package chart
|
|
|
|
import "time"
|
|
|
|
// TimeSeries is a line on a chart.
|
|
type TimeSeries struct {
|
|
Name string
|
|
Style Style
|
|
|
|
YAxis YAxisType
|
|
|
|
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)
|
|
}
|
|
|
|
// GetYAxis returns which YAxis the series draws on.
|
|
func (ts TimeSeries) GetYAxis() YAxisType {
|
|
return ts.YAxis
|
|
}
|
|
|
|
// GetValue gets a value at a given index.
|
|
func (ts TimeSeries) GetValue(index int) (x float64, y float64) {
|
|
x = float64(ts.XValues[index].Unix())
|
|
y = ts.YValues[index]
|
|
return
|
|
}
|
|
|
|
// Render renders the series.
|
|
func (ts TimeSeries) Render(r Renderer, canvasBox Box, xrange, yrange Range, defaults Style) {
|
|
style := ts.Style.WithDefaultsFrom(defaults)
|
|
DrawLineSeries(r, canvasBox, xrange, yrange, style, ts)
|
|
}
|