go-chart/continuous_series.go

56 lines
1.4 KiB
Go
Raw Permalink Normal View History

2016-07-10 05:14:11 +02:00
package chart
// ContinuousSeries represents a line on a chart.
type ContinuousSeries struct {
2016-07-10 10:11:47 +02:00
Name string
Style Style
2016-08-01 01:54:09 +02:00
YAxis YAxisType
2016-07-10 05:14:11 +02:00
XValues []float64
YValues []float64
}
// GetName returns the name of the time series.
func (cs ContinuousSeries) GetName() string {
return cs.Name
}
// GetStyle returns the line style.
func (cs ContinuousSeries) GetStyle() Style {
return cs.Style
}
// Len returns the number of elements in the series.
func (cs ContinuousSeries) Len() int {
return len(cs.XValues)
}
// GetValue gets a value at a given index.
func (cs ContinuousSeries) GetValue(index int) (float64, float64) {
return cs.XValues[index], cs.YValues[index]
}
// GetLastValue gets the last value.
func (cs ContinuousSeries) GetLastValue() (float64, float64) {
return cs.XValues[len(cs.XValues)-1], cs.YValues[len(cs.YValues)-1]
}
2016-07-10 19:43:04 +02:00
// GetValueFormatters returns value formatter defaults for the series.
func (cs ContinuousSeries) GetValueFormatters() (x, y ValueFormatter) {
x = FloatValueFormatter
y = FloatValueFormatter
return
}
// GetYAxis returns which YAxis the series draws on.
2016-08-01 01:54:09 +02:00
func (cs ContinuousSeries) GetYAxis() YAxisType {
2016-07-10 19:43:04 +02:00
return cs.YAxis
}
2016-07-10 05:14:11 +02:00
// Render renders the series.
2016-07-10 10:11:47 +02:00
func (cs ContinuousSeries) Render(r Renderer, canvasBox Box, xrange, yrange Range, defaults Style) {
style := cs.Style.InheritFrom(defaults)
2016-07-30 01:36:29 +02:00
Draw.LineSeries(r, canvasBox, xrange, yrange, style, cs)
2016-07-10 05:14:11 +02:00
}