mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-25 17:33:19 +01:00
11 lines
220 B
Go
11 lines
220 B
Go
package chart
|
|
|
|
// Series is an alias to Renderable.
|
|
type Series interface {
|
|
GetName() string
|
|
GetYAxis() YAxisType
|
|
GetStyle() Style
|
|
Validate() error
|
|
Render(r Renderer, canvasBox Box, xrange, yrange Range, s Style)
|
|
}
|