7 lines
112 B
Go
7 lines
112 B
Go
package chart
|
|
|
|
// Series is an alias to Renderable.
|
|
type Series interface {
|
|
GetYAxis() YAxisType
|
|
Renderable
|
|
}
|