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