sense-calendar-heatmap
Version:
Qlik Sense Visualization Extension with a diverging color scale. The values are displayed as colored cells per day. Days are arranged into columns by week, then grouped by month and years.
19 lines • 469 B
HTML
<div class="swr_simpletable">
<table border="1">
<thead>
<tr>
<th ng-repeat="dim in hyperCube.qHyperCube.qDimensionInfo">{{dim.qFallbackTitle}}
</td>
<th ng-repeat="mea in hyperCube.qHyperCube.qMeasureInfo" ng-bind="mea.qFallbackTitle">
</td>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in hyperCube.qHyperCube.qDataPages[0].qMatrix">
<td ng-repeat="col in row">
{{col.qText}}
</td>
</tr>
</tbody>
</table>
</div>