Including more special options for fill

Included "previous" and "none" as possible values for fill.
From the influxdb documentation:
 - "previous" means the values of the previous window is used.
 - "none" means that all null values are removed.
This commit is contained in:
Denis Doria
2015-08-09 19:17:01 +02:00
parent 862e52a830
commit 166a56828d

View File

@@ -138,8 +138,10 @@
</a>
<ul class="dropdown-menu">
<li><a ng-click="target.fill = ''">no fill</a></li>
<li><a ng-click="target.fill = 'null'">fill (null)</a></li>
<li><a ng-click="target.fill = '0'">fill (0)</a></li>
<li><a ng-click="target.fill = 'null'">fill (null)</a></li>
<li><a ng-click="target.fill = 'none'">fill (none)</a></li>
<li><a ng-click="target.fill = 'previous'">fill (previous)</a></li>
</ul>
</li>
</ul>