Merge branch 'feature/1602-graph-bounds-setting' of github.com:influxdata/chronograf into feature/1602-graph-bounds-setting

pull/1714/head
Andrew Watkins 2017-08-02 12:54:44 -07:00
commit c4cc2a5022
1 changed files with 3 additions and 3 deletions

View File

@ -569,9 +569,9 @@ type Dashboard struct {
// Axis represents the visible extents of a visualization
type Axis struct {
Bounds []string `json:"bounds"` // bounds are an arbitrary list of client-defined strings that specify the viewport for a cell
LegacyBounds [2]int64 `json:"-"` // legacy bounds are for testing a migration from an earlier version of axis
Label string `json:"label,omitempty"` // label is a description of this Axis
Bounds []string `json:"bounds"` // bounds are an arbitrary list of client-defined strings that specify the viewport for a cell
LegacyBounds [2]int64 `json:"-"` // legacy bounds are for testing a migration from an earlier version of axis
Label string `json:"label"` // label is a description of this Axis
}
// DashboardCell holds visual and query information for a cell