mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 19:00:09 -04:00
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<div class="form-horizontal">
|
|
<div>
|
|
This visualization constructs funnel chart. Please notice that:
|
|
<ul>
|
|
<li>Records would be sorted first</li>
|
|
<li>Value column only accept number for values</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-lg-6">Step Column Name</label>
|
|
<div class="col-lg-6">
|
|
<select ng-options="name for name in queryResult.getColumnNames()" ng-model="visualization.options.stepCol.colName" class="form-control"></select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-lg-6">Step Column Dispaly Name</label>
|
|
<div class="col-lg-6">
|
|
<input type="text" ng-model="visualization.options.stepCol.dispAs" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-lg-6">Funnel Value Column Name</label>
|
|
<div class="col-lg-6">
|
|
<select ng-options="name for name in queryResult.getColumnNames()" ng-model="visualization.options.valueCol.colName" class="form-control"></select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-lg-6">Funnel Value Column Dispaly Name</label>
|
|
<div class="col-lg-6">
|
|
<input type="text" ng-model="visualization.options.valueCol.dispAs" class="form-control">
|
|
</div>
|
|
</div>
|
|
</div>
|