go-chart/value_provider.go

8 lines
148 B
Go
Raw Normal View History

2016-07-10 10:11:47 +02:00
package chart
// ValueProvider is a type that produces values.
type ValueProvider interface {
Len() int
GetValue(index int) (float64, float64)
}