<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[multiple series on a single plot]]></title><description><![CDATA[<p dir="auto">I need to create a chart to display a daily cooling load profile for each day of the week (monday, tuesday, wednesday,etc) as shown in the attached picture.</p>
<p dir="auto"><img src="https://camo.nodebb.org/826014537f4a0e2db83a68052693a850d229992a?url=https%3A%2F%2Fi.imgur.com%2FC5n7vsp.jpg" alt="0_1468494678313_LoadProfile1.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">Is there any suggestion or method to accomplish it in MangoES 2.7.10 environment?</p>
<p dir="auto">Any help will be appreciated.</p>
]]></description><link>https://forum.mango-os.com/topic/2347/multiple-series-on-a-single-plot</link><generator>RSS for Node</generator><lastBuildDate>Sat, 16 May 2026 05:29:13 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/2347.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 14 Jul 2016 11:19:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to multiple series on a single plot on Sat, 16 Jul 2016 01:35:09 GMT]]></title><description><![CDATA[<p dir="auto">We get great joy in seeing what you guys create with Mango. Keep up the good work Desmond!</p>
]]></description><link>https://forum.mango-os.com/post/12076</link><guid isPermaLink="true">https://forum.mango-os.com/post/12076</guid><dc:creator><![CDATA[Woody Beverley]]></dc:creator><pubDate>Sat, 16 Jul 2016 01:35:09 GMT</pubDate></item><item><title><![CDATA[Reply to multiple series on a single plot on Sat, 16 Jul 2016 01:06:49 GMT]]></title><description><![CDATA[<p dir="auto">Thank you Woody for your support and really big thank to  Jared for your script. I really excited to see it working in  my screen. I will definitely give it a try.</p>
<p dir="auto">In fact I am developing a web app to measure and verification of buildings performance in creating an awareness for efficiency and productivity. MangoES is our preferred choice to become an intelligence tool to make building and people SMART.</p>
]]></description><link>https://forum.mango-os.com/post/12075</link><guid isPermaLink="true">https://forum.mango-os.com/post/12075</guid><dc:creator><![CDATA[Desmond]]></dc:creator><pubDate>Sat, 16 Jul 2016 01:06:49 GMT</pubDate></item><item><title><![CDATA[Reply to multiple series on a single plot on Fri, 15 Jul 2016 15:28:22 GMT]]></title><description><![CDATA[<p dir="auto">Hi Desmond,</p>
<p dir="auto">Try pasting the following into the "play area" of the Mango Custom Dashboards v3, it should give you a graph like you are after.</p>
<p dir="auto"><img src="https://camo.nodebb.org/36a47c9e048db00f3ceb0d507ea24a9182c30fb0?url=https%3A%2F%2Fi.imgur.com%2FZHogqJV.png" alt="0_1468596487358_upload-30ab25c9-a9d2-44dc-a581-3e9c122cd146" class=" img-fluid img-markdown" /></p>
<pre><code>&lt;div ng-init="page={rollup:'5 minutes', rollupType:'AVERAGE', week:0, values:{}}"&gt;&lt;/div&gt;

&lt;div layout="row"&gt;
    &lt;md-input-container flex="" class="no-errors-spacer"&gt;
        &lt;label&gt;Choose a point&lt;/label&gt;
        &lt;ma-point-list limit="200" ng-model="page.point"&gt;&lt;/ma-point-list&gt;
    &lt;/md-input-container&gt;
&lt;/div&gt;

&lt;div layout="row"&gt;
    &lt;md-input-container flex class="no-errors-spacer"&gt;
       &lt;label&gt;Select a week&lt;/label&gt;
       
       &lt;md-select ng-model="page.week"&gt;
          &lt;md-option ng-value="0"&gt;This week&lt;/md-option&gt;
          &lt;md-option ng-value="-1"&gt;Last week&lt;/md-option&gt;
        &lt;/md-select&gt;
    &lt;/md-input-container&gt;
&lt;/div&gt;

&lt;ma-now update-interval="1 HOURS" output="page.now"&gt;&lt;/ma-now&gt;

&lt;ma-point-values point="page.point" values="page.values.sunday"
  from="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'"
    to="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':1:'day'"
rollup="{{page.rollupType}}" rollup-interval="{{page.rollup}}"&gt;
&lt;/ma-point-values&gt;

&lt;ma-point-values point="page.point" values="page.values.monday"
  from="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':1:'day'"
    to="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':2:'day'"
rollup="{{page.rollupType}}" rollup-interval="{{page.rollup}}"&gt;
&lt;/ma-point-values&gt;

&lt;ma-point-values point="page.point" values="page.values.tuesday"
  from="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':2:'day'"
    to="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':3:'day'"
rollup="{{page.rollupType}}" rollup-interval="{{page.rollup}}"&gt;
&lt;/ma-point-values&gt;

&lt;ma-point-values point="page.point" values="page.values.wednesday"
  from="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':3:'day'"
    to="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':4:'day'"
rollup="{{page.rollupType}}" rollup-interval="{{page.rollup}}"&gt;
&lt;/ma-point-values&gt;

&lt;ma-point-values point="page.point" values="page.values.thursday"
  from="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':4:'day'"
    to="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':5:'day'"
rollup="{{page.rollupType}}" rollup-interval="{{page.rollup}}"&gt;
&lt;/ma-point-values&gt;

&lt;ma-point-values point="page.point" values="page.values.friday"
  from="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':5:'day'"
    to="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':6:'day'"
rollup="{{page.rollupType}}" rollup-interval="{{page.rollup}}"&gt;
&lt;/ma-point-values&gt;

&lt;ma-point-values point="page.point" values="page.values.saturday"
  from="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':6:'day'"
    to="page.now|moment:'startOf':'week'|moment:'add':page.week:'weeks'|moment:'add':7:'day'"
rollup="{{page.rollupType}}" rollup-interval="{{page.rollup}}"&gt;
&lt;/ma-point-values&gt;

&lt;ma-serial-chart style="height: 600px; width: 100%"
series-1-values="page.values.sunday" series-1-title="Sunday"
series-2-values="page.values.monday" series-2-title="Monday"
series-3-values="page.values.tuesday" series-3-title="Tuesday"
series-4-values="page.values.wednesday" series-4-title="Wednesday"
series-5-values="page.values.thursday" series-5-title="Thursday"
series-6-values="page.values.friday" series-6-title="Friday"
series-7-values="page.values.saturday" series-7-title="Saturday"
time-format="LTS"
 options="{legend:{}, chartCursor:{categoryBalloonDateFormat:'HH:NN'}, categoryAxis:{labelRotation:45}}"&gt;
&lt;/ma-serial-chart&gt;
</code></pre>
]]></description><link>https://forum.mango-os.com/post/12061</link><guid isPermaLink="true">https://forum.mango-os.com/post/12061</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Fri, 15 Jul 2016 15:28:22 GMT</pubDate></item><item><title><![CDATA[Reply to multiple series on a single plot on Thu, 14 Jul 2016 15:13:17 GMT]]></title><description><![CDATA[<p dir="auto">Great!  I would suggest continue exploring the Excel Reports and if you hit a wall and have specific questions, post them here.  As for a dashboard I would suggest our new Angular way of creating custom dashboards.  Joel has nice intro <a href="http://infiniteautomation.com/forum/topic/2213/the-new-custom-dashboards-angularjs-module" rel="nofollow ugc">here</a>.</p>
]]></description><link>https://forum.mango-os.com/post/12059</link><guid isPermaLink="true">https://forum.mango-os.com/post/12059</guid><dc:creator><![CDATA[Woody Beverley]]></dc:creator><pubDate>Thu, 14 Jul 2016 15:13:17 GMT</pubDate></item><item><title><![CDATA[Reply to multiple series on a single plot on Thu, 14 Jul 2016 15:06:03 GMT]]></title><description><![CDATA[<p dir="auto">Hi woody,<br />
Thanks for your prompt reply.<br />
In fact both are my objective. This format of chart will be a part of excel report module. At the moment I am in the process of learning and exploring the use and configuration excel report module which is an exciting feature.<br />
However I am clueless to create the mango dashboard as I do not involve much in jave code.Alternatively I find the dglux may be a better option.<br />
The chart will be useful for user who need to do analysis on demand. Ultimately there should be a duration period to control the datasets.<br />
Hope that you will give me some guidance to kick off.<br />
Thank you</p>
]]></description><link>https://forum.mango-os.com/post/12058</link><guid isPermaLink="true">https://forum.mango-os.com/post/12058</guid><dc:creator><![CDATA[Desmond]]></dc:creator><pubDate>Thu, 14 Jul 2016 15:06:03 GMT</pubDate></item><item><title><![CDATA[Reply to multiple series on a single plot on Thu, 14 Jul 2016 12:29:50 GMT]]></title><description><![CDATA[<p dir="auto">Hello Desmond,</p>
<p dir="auto">I think you are probably already familiar with using our Excel Reports Module (<a href="http://help.infiniteautomation.com/support/solutions/articles/14000024206-configuring-excel-reports" rel="nofollow ugc">see video</a>)</p>
<p dir="auto">Am I correct to assume it is a report that you wish to create or are you asking how to produce a graph on the display as in a custom dashboard?</p>
]]></description><link>https://forum.mango-os.com/post/12055</link><guid isPermaLink="true">https://forum.mango-os.com/post/12055</guid><dc:creator><![CDATA[Woody Beverley]]></dc:creator><pubDate>Thu, 14 Jul 2016 12:29:50 GMT</pubDate></item></channel></rss>