26 lines
891 B
HTML
26 lines
891 B
HTML
<div class="row">
|
|
<div class="x_panel">
|
|
<div id="title_block_{{count}}" class="x_title">
|
|
<h2>Line Graph</h2>
|
|
<ul class="nav navbar-right panel_toolbox">
|
|
<li><a class="close-link"><i class="fa fa-close"></i></a>
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<div class="x_content2">
|
|
<div id="domoticz-chart-block-{{count}}" style="height: 200px;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
$(document).ready(function() {
|
|
{% for k, v in blockArray[count]["domoticz_counter_charts"].iteritems() %}
|
|
ShowGeneralGraph("domoticz-chart-block-{{count}}",{{v[1]}},"{{k}}", 1, "{{v[3]}}", "{{v[2]}}");
|
|
$("div#title_block_{{count}} h2").html("{{k}}");
|
|
setInterval(ShowGeneralGraph,60000,"domoticz-chart-block-{{count}}",{{v[1]}},"{{k}}", 1, "{{v[3]}}", "{{v[2]}}");
|
|
{% endfor %}
|
|
});
|
|
</script>
|