1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-30 00:00:13 +01:00
VILLASweb/app/templates/components/entity-chart.hbs
2015-11-27 07:21:41 -05:00

27 lines
834 B
Handlebars

<table class="page-grid">
<tr>
<td valign="top" class="property-cell" style="padding-top: 30px;">
{{#if entityAvailable}}
{{property-table model=entity showProperty="showPropertyValues"}}
{{/if}}
</td>
<td valign="top" width="100%" height="100%" class="chart-cell">
<h1 style="text-align: center">{{entityName}}</h1>
{{#if entityAvailable}}
<p style="float: left; margin-top: 185px; margin-left: -8px;" class="vertical-text">[{{visibleProperty.type}}]</p>
<div style="padding-left: 10px">
{{line-chart data=visibleProperty height="350px"}}
</div>
<p style="float: right">[min]</p>
<!-- {{#if visibleProperty}}
<h4 class="label-source">Source: {{visibleProperty.source}}</h4>
{{/if}} -->
{{else}}
<h3>Data not available</h3>
{{/if}}
</td>
</tr>
</table>