mirror of
https://github.com/TwiN/gatus.git
synced 2025-01-08 07:00:33 +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)
|
||
|
}
|