2014-01-24 06:49:19 +01:00
2013-12-06 14:53:05 +01:00
< div class = "editor-row" >
< div class = "section" >
< h5 > Chart Options< / h5 >
2014-01-24 06:49:19 +01:00
< div class = "editor-option" >
< label class = "small" > Renderer< / label > < select class = "input-mini" ng-model = "panel.renderer" ng-options = "f for f in ['flot', 'png']" ng-change = "get_data()" > < / select >
< / div >
2013-12-06 14:53:05 +01:00
< div class = "editor-option" >
2013-12-08 18:00:42 +01:00
< label class = "small" > Bars< / label > < input type = "checkbox" ng-model = "panel.bars" ng-checked = "panel.bars" ng-change = "render()" >
2013-12-06 14:53:05 +01:00
< / div >
< div class = "editor-option" >
2013-12-08 18:00:42 +01:00
< label class = "small" > Lines< / label > < input type = "checkbox" ng-model = "panel.lines" ng-checked = "panel.lines" ng-change = "render()" >
2013-12-06 14:53:05 +01:00
< / div >
< div class = "editor-option" >
2013-12-08 18:00:42 +01:00
< label class = "small" > Points< / label > < input type = "checkbox" ng-model = "panel.points" ng-checked = "panel.points" ng-change = "render()" >
2013-12-06 14:53:05 +01:00
< / div >
2014-01-12 21:21:41 +01:00
< / div >
< div class = "section" >
< h5 > Axis< / h5 >
2013-12-06 14:53:05 +01:00
< div class = "editor-option" >
2014-01-12 21:21:41 +01:00
< label class = "small" > xAxis< / label > < input type = "checkbox" ng-model = "panel['x-axis']" ng-checked = "panel['x-axis']" ng-change = "render()" >
< / div >
2013-12-06 14:53:05 +01:00
< div class = "editor-option" >
2014-01-12 21:21:41 +01:00
< label class = "small" > yAxis< / label > < input type = "checkbox" ng-model = "panel['y-axis']" ng-checked = "panel['y-axis']" ng-change = "render()" >
2013-12-06 14:53:05 +01:00
< / div >
< div class = "editor-option" ng-show = "panel.points" >
< label class = "small" > Point Radius< / label >
2013-12-09 09:13:13 +01:00
< select class = "input-mini" ng-model = "panel.pointradius" ng-options = "f for f in [1,2,3,4,5,6,7,8,9,10]" ng-change = "render()" > < / select >
2013-12-06 14:53:05 +01:00
< / div >
< div class = "editor-option" >
2014-01-12 10:56:23 +01:00
< label class = "small" > Left Y Format < tip > Y-axis formatting< / tip > < / label >
2014-01-23 13:31:02 +01:00
< select class = "input-small" ng-model = "panel.y_format" ng-options = "f for f in ['none','short','bytes', 'ms']" ng-change = "render()" > < / select >
2013-12-06 14:53:05 +01:00
< / div >
2014-01-12 10:56:23 +01:00
< div class = "editor-option" >
< label class = "small" > Right Y Format < tip > Y-axis formatting< / tip > < / label >
2014-01-23 13:31:02 +01:00
< select class = "input-small" ng-model = "panel.y2_format" ng-options = "f for f in ['none','short','bytes', 'ms']" ng-change = "render()" > < / select >
2014-01-12 10:56:23 +01:00
< / div >
2014-01-12 11:53:41 +01:00
< / div >
< div class = "section" >
< h5 > Line options< / h5 >
< div class = "editor-option" ng-show = "panel.lines" >
< label class = "small" > Line Fill< / label >
< select class = "input-mini" ng-model = "panel.fill" ng-options = "f for f in [0,1,2,3,4,5,6,7,8,9,10]" ng-change = "render()" > < / select >
< / div >
< div class = "editor-option" ng-show = "panel.lines" >
< label class = "small" > Line Width< / label >
< select class = "input-mini" ng-model = "panel.linewidth" ng-options = "f for f in [0,1,2,3,4,5,6,7,8,9,10]" ng-change = "render()" > < / select >
< / div >
2014-01-12 10:56:23 +01:00
< div class = "editor-option" >
< label class = "small" > Null point mode < tip > Define how null values should be drawn< / tip > < / label >
< select class = "input-medium" ng-model = "panel.nullPointMode" ng-options = "f for f in ['connected', 'null', 'null as zero']" ng-change = "render()" > < / select >
< / div >
2014-01-12 11:53:41 +01:00
< div class = "editor-option" >
2014-01-25 18:57:35 +01:00
< label class = "small" > Staircase line< / label > < input type = "checkbox" ng-model = "panel.steppedLine" ng-checked = "panel.steppedLine" ng-change = "render()" >
2014-01-12 11:53:41 +01:00
< / div >
2013-12-06 14:53:05 +01:00
< / div >
< div class = "section" >
< h5 > Multiple Series< / h5 >
< div class = "editor-option" >
2013-12-09 09:13:13 +01:00
< label class = "small" > Stack< / label > < input type = "checkbox" ng-model = "panel.stack" ng-checked = "panel.stack" ng-change = "render()" >
2013-12-06 14:53:05 +01:00
< / div >
< div class = "editor-option" ng-show = "panel.stack" >
< label style = "white-space:nowrap" class = "small" > Percent < tip > Stack as a percentage of total< / tip > < / label >
2013-12-09 09:13:13 +01:00
< input type = "checkbox" ng-model = "panel.percentage" ng-checked = "panel.percentage" ng-change = "render()" >
2013-12-06 14:53:05 +01:00
< / div >
< div class = "editor-option" ng-show = "panel.stack" >
< label class = "small" > Stacked Values < tip > How should the values in stacked charts to be calculated?< / tip > < / label >
2013-12-09 09:13:13 +01:00
< select class = "input-small" ng-model = "panel.tooltip.value_type" ng-options = "f for f in ['cumulative','individual']" ng-change = "render()" > < / select >
2013-12-06 14:53:05 +01:00
< / div >
< / div >
< div class = "section" >
< h5 > Legend< h5 >
< div class = "editor-option" >
< label class = "small" > Legend< / label > < input type = "checkbox" ng-model = "panel.legend" ng-checked = "panel.legend" >
< / div >
< / div >
< div class = "section" >
< h5 > Grid< h5 >
< div class = "editor-option" >
< label class = "small" > Min / < a href = '' ng-click = "panel.grid.min = _.toggle(panel.grid.min,null,0)" > Auto < i class = "icon-star" ng-show = "_.isNull(panel.grid.min)" > < / i > < / a > < / label >
< input type = "number" class = "input-small" ng-model = "panel.grid.min" / >
< / div >
< div class = "editor-option" >
< label class = "small" > Max / < a ref = '' ng-click = "panel.grid.max = _.toggle(panel.grid.max,null,0)" > Auto < i class = "icon-star" ng-show = "_.isNull(panel.grid.max)" > < / i > < / a > < / label >
< input type = "number" class = "input-small" ng-model = "panel.grid.max" / >
< / div >
< / div >
< / div >