6 lines
167 B
Go
6 lines
167 B
Go
package chart
|
|
|
|
// ValueFormatterProvider is a series that has custom formatters.
|
|
type ValueFormatterProvider interface {
|
|
GetValueFormatters() (x, y ValueFormatter)
|
|
}
|