mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 13:00:10 -04:00
22 lines
777 B
HTML
22 lines
777 B
HTML
<div class="form-horizontal">
|
|
<div class="form-group">
|
|
<label class="col-lg-6">Height</label>
|
|
<div class="col-lg-6">
|
|
<input type="number" ng-model="visualization.options.height" min="1" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<hr>
|
|
This visualization expects the query result to have rows in the following format:
|
|
|
|
<ul>
|
|
<li><strong>stage1</strong> - stage 1 value</li>
|
|
<li><strong>stage1</strong> - stage 2 value (or null)</li>
|
|
<li><strong>stage3</strong> - stage 3 value (or null)</li>
|
|
<li><strong>stage4</strong> - stage 4 value (or null)</li>
|
|
<li><strong>stage5</strong> - stage 5 value (or null)</li>
|
|
<li><strong>value</strong> - number of times this sequence occurred</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|