chronograf/bolt
Tim Raymond e513e61481
Add Axes to Dashboard Cells
The frontend would like to store viewport information for each cell so
that visualizations are zoomed to the proper extents upon rendering.
This adds a property to cells called "axes" which takes the following
shape:

```
{
   "axes" : {
      "y" : {
         "bounds" : [
            0,
            2
         ]
      },
      "y2" : {
         "bounds" : [
            1,
            3
         ]
      }
   }
}
```

Bounds specify the visible range for the axis, and are a 2-tuple of the
form [lower, upper]. Bounds are not implicitly inclusive or
exclusive--that determination is left for clients to make. Also, there
are no restrictions on the naming of axes.
2017-07-19 10:46:32 -04:00
..
internal Add Axes to Dashboard Cells 2017-07-19 10:46:32 -04:00
client.go Update kapacitors rule's to use AST and kapacitor directly 2017-04-05 20:04:42 -05:00
client_test.go Update name to chronograf 2016-10-20 09:39:40 -05:00
dashboards.go Introduce ability to edit a dashboard cell 2017-03-23 17:12:33 -07:00
layouts.go Update to fix go linter issues 2017-03-06 10:11:52 -06:00
servers.go DRY bolt/servers.go code 2017-04-21 13:07:32 -07:00
servers_test.go persist the currently active kapacitor in boltdb 2017-04-21 12:42:35 -07:00
sources.go Update to fix go linter issues 2017-03-06 10:11:52 -06:00
sources_test.go Introduce ability to edit a dashboard cell 2017-03-23 17:12:33 -07:00
users.go Add tests for bolt user store 2017-02-21 22:15:22 -06:00
users_test.go Introduce ability to edit a dashboard cell 2017-03-23 17:12:33 -07:00
util.go Refactor users and add client usersstore 2017-02-17 13:37:00 -06:00