sampler-fork/config/linechart.go

11 lines
293 B
Go
Raw Normal View History

2019-01-28 23:09:52 +00:00
package config
type LineChartConfig struct {
Title string `yaml:"title"`
Data []Data `yaml:"data"`
Position Position `yaml:"position"`
2019-01-30 00:21:57 +00:00
Size Size `yaml:"size"`
2019-01-28 23:09:52 +00:00
RefreshRateMs int `yaml:"refresh-rate-ms"`
Scale string `yaml:"scale"`
}