sense-extension-recipes
Version:
Recipes on working with Qlik Sense Visualization Extensions.
19 lines • 415 B
HTML
<div class="swr_simpletable">
<table border="1">
<thead>
<tr>
<th ng-repeat="dim in hc.qDimensionInfo">{{dim.qFallbackTitle}}
</td>
<th ng-repeat="mea in hc.qMeasureInfo" ng-bind="mea.qFallbackTitle">
</td>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in hc.qDataPages[0].qMatrix">
<td ng-repeat="col in row">
{{col.qText}}
</td>
</tr>
</tbody>
</table>
</div>