<?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[Bar Chart: Category as X Axis]]></title><description><![CDATA[<p dir="auto">I am trying to create a single value column chart where I can display the current value of a particular point-xid, and compare it to another point. For example, take amchart's plot of visitors to a country vs. country:<br />
<img src="https://camo.nodebb.org/d18aa610ece8d89df33b4b75ada5b93dbc09605d?url=https%3A%2F%2Fi.imgur.com%2FRJch44r.png" alt="0_1500345058904_dbd78761-494f-4576-aa4d-3c84853f4ed2-image.png" class=" img-fluid img-markdown" /><br />
For example, I might have the value</p>
<pre><code>&lt;ma-get-point-value point-xid="USA" point="myPoint"&gt;&lt;/ma-get-point-value&gt;
</code></pre>
<p dir="auto">None of the examples or product solutions videos appear to have this type of chart - they all seem to have time not category as the x axis. I've tried a few things with the serial chart but have been unable to make it work.</p>
<p dir="auto">All I want to do is a simple column chart comparison of a few live points - but have struggled to find a solution.</p>
<p dir="auto">Do you have any suggestions?</p>
<p dir="auto">Thanks, Henry.</p>
]]></description><link>https://forum.mango-os.com/topic/2862/bar-chart-category-as-x-axis</link><generator>RSS for Node</generator><lastBuildDate>Wed, 16 Sep 2026 15:20:03 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/2862.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 18 Jul 2017 02:47:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Wed, 20 Sep 2017 11:14:44 GMT]]></title><description><![CDATA[<p dir="auto">Of course! Thank you very much - Resolved.</p>
]]></description><link>https://forum.mango-os.com/post/15544</link><guid isPermaLink="true">https://forum.mango-os.com/post/15544</guid><dc:creator><![CDATA[henryblu]]></dc:creator><pubDate>Wed, 20 Sep 2017 11:14:44 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Tue, 19 Sep 2017 15:43:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/henryblu" aria-label="Profile: henryblu">@<bdi>henryblu</bdi></a> said in <a href="/post/15531">Bar Chart: Category as X Axis</a>:</p>
<blockquote>
<p dir="auto">if  ng-init doesn't take expressions, why cant I simply use "valueField": "myPoint.value"?</p>
</blockquote>
<p dir="auto">I'm not sure what exactly you are doing here, <code>valueField</code> is in the JavaScript I sent you, its not in the HTML template?</p>
<p dir="auto">If you are using this in the HTML template; you have enclosed the variable name in quotes, so it is evaluated as a string.<br />
<code>ng-init="varA = myPoint.value"</code> is not the same as <code>ng-init="varA = 'myPoint.value'"</code></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/henryblu" aria-label="Profile: henryblu">@<bdi>henryblu</bdi></a> said in <a href="/post/15531">Bar Chart: Category as X Axis</a>:</p>
<blockquote>
<p dir="auto">Surely there is an easy way to take a point-value, assign it a variable and just use that inside the array for values?</p>
</blockquote>
<p dir="auto">There surely is, just use <code>values="[{country: pointA.name, visits: pointA.value}, {country: pointB.name, visits: pointB.value}, {country: pointC.name, visits: pointC.value}]"</code></p>
<p dir="auto">Or more simply, change the field names in the config options as I described above and just pass through an array of points e.g.<br />
<code>values="[pointA, pointB, pointC]"</code></p>
]]></description><link>https://forum.mango-os.com/post/15537</link><guid isPermaLink="true">https://forum.mango-os.com/post/15537</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Tue, 19 Sep 2017 15:43:19 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Mon, 18 Sep 2017 23:55:44 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="/user/jared-wiltshire" aria-label="Profile: Jared-Wiltshire">@<bdi>Jared-Wiltshire</bdi></a>, if  <code>ng-init</code> doesn't take expressions, why cant I simply use <code>"valueField": "myPoint.value"</code>?</p>
<p dir="auto">I dont use the watch-lists really... All I want to do is  take <code>&lt;ma-get-point-value point-xid="EnergyOutA_Panasonic" point="myPoint" &gt;&lt;/ma-get-point-value&gt;</code> and substitute it into the array for values. Surely there is an easy way to take a point-value, assign it a variable and just use that inside the array for values?</p>
]]></description><link>https://forum.mango-os.com/post/15531</link><guid isPermaLink="true">https://forum.mango-os.com/post/15531</guid><dc:creator><![CDATA[henryblu]]></dc:creator><pubDate>Mon, 18 Sep 2017 23:55:44 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Mon, 18 Sep 2017 15:38:26 GMT]]></title><description><![CDATA[<p dir="auto">Some attributes accept strings, others accept expressions which are then evaluated. When attributes accept strings you need to use <code>{{}}</code> interpolation, if they are expressions though you don't need the interpolation brackets. <code>ng-init</code> takes an expression.</p>
<p dir="auto">Likewise we defined the <code>values</code> attribute of our <code>categoryXAxis</code> component to take an expression so it doesn't need any interpolation, we just pass the variable name to it and the expression is evaluated to the value of the variable.</p>
<p dir="auto">What you want to probably do is pass an array of mango points through to the <code>value</code> attribute (e.g. <code>value="designer.points"</code>) and change <code>"valueField": "visits"</code> to <code>"valueField": "value"</code> (points from a watch list have the <code>.value</code> property)</p>
]]></description><link>https://forum.mango-os.com/post/15523</link><guid isPermaLink="true">https://forum.mango-os.com/post/15523</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Mon, 18 Sep 2017 15:38:26 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Sat, 16 Sep 2017 02:35:56 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="/user/jared-wiltshire" aria-label="Profile: Jared-Wiltshire">@<bdi>Jared-Wiltshire</bdi></a>!<br />
My last qn - using ng-model, I can see how you have passed the value for an input into a graph's 'values'. How can I do this for a point value? . I tried interpolating a point value {{point.value}} directly inside values = "..." but that doesn't work. I.e</p>
<pre><code>&lt;div class="ma-designer-root" id="84e87319-1442-41fa-a4ef-a4102f9dbbc0" style="width: 1000px; height: 768px; position: relative;"&gt;
     
     &lt;ma-get-point-value point-xid="EnergyOutA_Panasonic" point="myPoint" &gt;&lt;/ma-get-point-value&gt;

   &lt;div ng-init="values = [{'country': 'USA','visits': {{myPoint.value}},'color': '#FF0F00'}, {'country': 'China','visits': 1882,'color': '#FF6600'}, {'country': 'Japan','visits': 1809,'color': '#FF9E01'}, {'country': 'Germany','visits': 1322,'color': '#FCD202'}, {'country': 'UK','visits': 1122,'color': '#F8FF01'}, {'country': 'France','visits': 1114,'color': '#B0DE09'}, {'country': 'India','visits': 984,'color': '#04D215'}, {'country': 'Spain','visits': 711,'color': '#0D8ECF'}, {'country': 'Netherlands','visits': 665,'color': '#0D52D1'}, {'country': 'Russia','visits': 580,'color': '#2A0CD0'}, {'country': 'South Korea','visits': 443,'color': '#8A0CCF'}, {'country': 'Canada','visits': 441,'color': '#CD0D74'}]"&gt;&lt;/div&gt;
   
   &lt;category-x-axis class="amchart" id="8ec0e029-4b0b-4f53-aa0d-6c25b4bfa991" style="position: absolute; left: 27px; top: 98px; width: 100%; height: 400px;" values="values"&gt;&lt;/category-x-axis&gt;
</code></pre>
<p dir="auto">Sorry about the lack of fluency in Angular - it is coming along...</p>
]]></description><link>https://forum.mango-os.com/post/15517</link><guid isPermaLink="true">https://forum.mango-os.com/post/15517</guid><dc:creator><![CDATA[henryblu]]></dc:creator><pubDate>Sat, 16 Sep 2017 02:35:56 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Fri, 15 Sep 2017 16:13:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/henryblu" aria-label="Profile: henryblu">@<bdi>henryblu</bdi></a></p>
<p dir="auto">You probably want to create a new component in your userModules.js file. Here's a simple one which just watches some data from an attribute and renders it on a chart with the options specified inside the component's javascript. This is a straight copy of the example you linked to.</p>
<pre><code>define(['angular', 'require', 'amcharts/serial'], function(angular, require, AmCharts) {
'use strict';

var userModule = angular.module('userModule', ['maUiApp']);

userModule.component('categoryXAxis', {
    bindings: {
        values: '&lt;?'
    },
    controller: ['$scope', '$element', function($scope, $element) {
        const options = {
          "type": "serial",
          "theme": "light",
          "addClassNames": true,
          "marginRight": 70,
          "dataProvider": [],
          "valueAxes": [{
            "axisAlpha": 0,
            "position": "left",
            "title": "Visitors from country"
          }],
          "startDuration": 1,
          "graphs": [{
            "balloonText": "&lt;b&gt;[[category]]: [[value]]&lt;/b&gt;",
            "fillColorsField": "color",
            "fillAlphas": 0.9,
            "lineAlpha": 0.2,
            "type": "column",
            "valueField": "visits"
          }],
          "chartCursor": {
            "categoryBalloonEnabled": false,
            "cursorAlpha": 0,
            "zoomable": false
          },
          "categoryField": "country",
          "categoryAxis": {
            "gridPosition": "start",
            "labelRotation": 45
          }
        };
        const chart = AmCharts.makeChart($element[0], options);
        
        $scope.$watch('$ctrl.values', () =&gt; {
            chart.dataProvider = this.values;
            chart.validateData();
        }, true);
    }]
});

return userModule;

}); // define
</code></pre>
<p dir="auto">and a quick example of how to pass values through to it showing that the graph is updated dynamically</p>
<pre><code>&lt;div class="ma-designer-root" id="84e87319-1442-41fa-a4ef-a4102f9dbbc0" style="width: 1024px; height: 768px; position: relative;"&gt;
    &lt;div ng-init="values = [{'country': 'USA','visits': 3025,'color': '#FF0F00'}, {'country': 'China','visits': 1882,'color': '#FF6600'}, {'country': 'Japan','visits': 1809,'color': '#FF9E01'}, {'country': 'Germany','visits': 1322,'color': '#FCD202'}, {'country': 'UK','visits': 1122,'color': '#F8FF01'}, {'country': 'France','visits': 1114,'color': '#B0DE09'}, {'country': 'India','visits': 984,'color': '#04D215'}, {'country': 'Spain','visits': 711,'color': '#0D8ECF'}, {'country': 'Netherlands','visits': 665,'color': '#0D52D1'}, {'country': 'Russia','visits': 580,'color': '#2A0CD0'}, {'country': 'South Korea','visits': 443,'color': '#8A0CCF'}, {'country': 'Canada','visits': 441,'color': '#CD0D74'}]"&gt;&lt;/div&gt;
    
    &lt;category-x-axis class="amchart" id="8ec0e029-4b0b-4f53-aa0d-6c25b4bfa991" style="position: absolute; left: 27px; top: 98px; width: 800px; height: 400px;" values="values"&gt;&lt;/category-x-axis&gt;
    &lt;md-input-container id="91a79a8e-460b-44c8-96b5-041ab5e23d56" style="position: absolute; left: 56px; top: 19px;"&gt;
        &lt;label&gt;USA visits&lt;/label&gt;
        &lt;input ng-model="values[0].visits" type="number"&gt;
    &lt;/md-input-container&gt;
&lt;/div&gt;
</code></pre>
<p dir="auto">edit. Worth noting that I added the  <code>"addClassNames": true,</code> option so the chart axis colors are set appropriately inside Mango. Also add <code>class="amchart"</code> to the chart.</p>
]]></description><link>https://forum.mango-os.com/post/15503</link><guid isPermaLink="true">https://forum.mango-os.com/post/15503</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Fri, 15 Sep 2017 16:13:15 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Fri, 15 Sep 2017 03:05:08 GMT]]></title><description><![CDATA[<p dir="auto">Sorry <a class="plugin-mentions-user plugin-mentions-a" href="/user/jared-wiltshire" aria-label="Profile: Jared-Wiltshire">@<bdi>Jared-Wiltshire</bdi></a>, I'm being continually pressed to make  the category as x axis chart work. Say I have a chart from AmCharts I want to use: <a href="https://www.amcharts.com/demos/column-with-rotated-series/" rel="nofollow ugc">https://www.amcharts.com/demos/column-with-rotated-series/</a><br />
Here is the HTML file:</p>
<pre><code>&lt;!-- Styles --&gt;
&lt;style&gt;
#chartdiv {
  width: 100%;
  height: 500px;
}

.amcharts-export-menu-top-right {
  top: 10px;
  right: 0;
}
&lt;/style&gt;

&lt;!-- Resources --&gt;
&lt;script src="https://www.amcharts.com/lib/3/amcharts.js"&gt;&lt;/script&gt;
&lt;script src="https://www.amcharts.com/lib/3/serial.js"&gt;&lt;/script&gt;
&lt;script src="https://www.amcharts.com/lib/3/plugins/export/export.min.js"&gt;&lt;/script&gt;
&lt;link rel="stylesheet" href="https://www.amcharts.com/lib/3/plugins/export/export.css" type="text/css" media="all" /&gt;
&lt;script src="https://www.amcharts.com/lib/3/themes/light.js"&gt;&lt;/script&gt;

&lt;!-- Chart code --&gt;
&lt;script&gt;
var chart = AmCharts.makeChart("chartdiv", {
  "type": "serial",
  "theme": "light",
  "marginRight": 70,
  "dataProvider": [{
    "country": "USA",
    "visits": 3025,
    "color": "#FF0F00"
  }, {
    "country": "China",
    "visits": 1882,
    "color": "#FF6600"
  }, {
    "country": "Japan",
    "visits": 1809,
    "color": "#FF9E01"
  }, {
    "country": "Germany",
    "visits": 1322,
    "color": "#FCD202"
  }, {
    "country": "UK",
    "visits": 1122,
    "color": "#F8FF01"
  }, {
    "country": "France",
    "visits": 1114,
    "color": "#B0DE09"
  }, {
    "country": "India",
    "visits": 984,
    "color": "#04D215"
  }, {
    "country": "Spain",
    "visits": 711,
    "color": "#0D8ECF"
  }, {
    "country": "Netherlands",
    "visits": 665,
    "color": "#0D52D1"
  }, {
    "country": "Russia",
    "visits": 580,
    "color": "#2A0CD0"
  }, {
    "country": "South Korea",
    "visits": 443,
    "color": "#8A0CCF"
  }, {
    "country": "Canada",
    "visits": 441,
    "color": "#CD0D74"
  }],
  "valueAxes": [{
    "axisAlpha": 0,
    "position": "left",
    "title": "Visitors from country"
  }],
  "startDuration": 1,
  "graphs": [{
    "balloonText": "&lt;b&gt;[[category]]: [[value]]&lt;/b&gt;",
    "fillColorsField": "color",
    "fillAlphas": 0.9,
    "lineAlpha": 0.2,
    "type": "column",
    "valueField": "visits"
  }],
  "chartCursor": {
    "categoryBalloonEnabled": false,
    "cursorAlpha": 0,
    "zoomable": false
  },
  "categoryField": "country",
  "categoryAxis": {
    "gridPosition": "start",
    "labelRotation": 45
  },
  "export": {
    "enabled": true
  }

});
&lt;/script&gt;

&lt;!-- HTML --&gt;
&lt;div id="chartdiv"&gt;&lt;/div&gt;
</code></pre>
<p dir="auto">Consider that my value for USA was stored in a datapoint USA:</p>
<pre><code>&lt;ma-get-point-value point-xid="USA" point="USA"&gt;&lt;/ma-get-point-value&gt;
</code></pre>
<p dir="auto">I want to be able to pass this value into the javascript to generate the graph, but interpolating the JS expression {{USA.value}} and placing it in like</p>
<pre><code>"visits": {{USA.value}},
</code></pre>
<p dir="auto">Wont work. What is the best way to pass angular expressions into Javascript?</p>
]]></description><link>https://forum.mango-os.com/post/15491</link><guid isPermaLink="true">https://forum.mango-os.com/post/15491</guid><dc:creator><![CDATA[henryblu]]></dc:creator><pubDate>Fri, 15 Sep 2017 03:05:08 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Thu, 27 Jul 2017 15:58:01 GMT]]></title><description><![CDATA[<p dir="auto">Hi Henry,</p>
<p dir="auto">There is an easy way!</p>
<p dir="auto">If you want all columns clustered, you can set <code>&lt;ma-serial-chart stack-type="none" ... </code> and then for each series <code>... series-1-graph-options="{clustered:true}" ...</code></p>
<p dir="auto">If you want some stacked in one stack and some stacked in another, you can set <code>stack-type="regular"</code> then pass in <code>series-x-graph-options="{clustered: true, newStack:true}"</code> and a new stack will begin with series x</p>
]]></description><link>https://forum.mango-os.com/post/15092</link><guid isPermaLink="true">https://forum.mango-os.com/post/15092</guid><dc:creator><![CDATA[phildunlap]]></dc:creator><pubDate>Thu, 27 Jul 2017 15:58:01 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Thu, 27 Jul 2017 03:39:47 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/jared-wiltshire" aria-label="Profile: Jared-Wiltshire">@<bdi>Jared-Wiltshire</bdi></a>,</p>
<p dir="auto">This question is relatively similar, so I thought I would post it here. If I have a stacked bar chart: <img src="https://camo.nodebb.org/3bef4b5127751328bd5dec180288cce855d6ac82?url=https%3A%2F%2Fi.imgur.com%2FMOtYx17.png" alt="0_1501126576068_aad2fdde-4935-4c55-8ddd-53176bc43c48-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Is there an easy way to edit the 'stacking method', in order to convert it to a cluster chart? i.e.<br />
<img src="https://camo.nodebb.org/32bea3cfcf924242077e49786d9832eae5267c4f?url=https%3A%2F%2Fi.imgur.com%2FF6az00T.png" alt="0_1501126662944_dd45273a-6add-4533-aa57-53c9e7dfe311-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">In an ideal world, perhaps something like</p>
<pre><code>stacktype: cluster
</code></pre>
<p dir="auto">Any suggestions would be really appreciated!</p>
]]></description><link>https://forum.mango-os.com/post/15085</link><guid isPermaLink="true">https://forum.mango-os.com/post/15085</guid><dc:creator><![CDATA[henryblu]]></dc:creator><pubDate>Thu, 27 Jul 2017 03:39:47 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Fri, 21 Jul 2017 16:54:13 GMT]]></title><description><![CDATA[<p dir="auto">Yeah I agree, a way to do it in AmCharts would be nice. I'll look into it for a future release.</p>
]]></description><link>https://forum.mango-os.com/post/15026</link><guid isPermaLink="true">https://forum.mango-os.com/post/15026</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Fri, 21 Jul 2017 16:54:13 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Fri, 21 Jul 2017 02:28:23 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Jared, I managed to get it working with this directive:</p>
<pre><code>&lt;ma-point-query query="{name: 'Energy'}" limit="8" points="point_array"&gt;&lt;/ma-point-query&gt;

    &lt;div layout="" layout-align="space-around center"&gt;
        &lt;div ng-repeat="point in point_array track by point.xid" layout="column" layout-align="start center"&gt;
            &lt;ma-bar-display style="height: 350px; width: 40px;" ng-style="{color: point.chartColour}" point="point" maximum="2" direction="bottom-to-top"&gt;&lt;/ma-bar-display&gt;
            &lt;span&gt;{{point.name}}&lt;/span&gt;
        &lt;/div&gt;
    &lt;/div&gt;
</code></pre>
<p dir="auto">It does work, but still obviously lacks the serial chart functionality (selecting/unselecting, axis labels/titles, pop-up toggle etc.) From an energy monitoring perspective I think it would make a great addition to the dashboard UI. For example if you wanted to set up a virtual point of the total energy used in each building per person, and display that on a bar chart - comparing the performance of each building.</p>
<p dir="auto">I hope it comes out in the next release, cheers!</p>
]]></description><link>https://forum.mango-os.com/post/15023</link><guid isPermaLink="true">https://forum.mango-os.com/post/15023</guid><dc:creator><![CDATA[henryblu]]></dc:creator><pubDate>Fri, 21 Jul 2017 02:28:23 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Thu, 20 Jul 2017 22:46:27 GMT]]></title><description><![CDATA[<p dir="auto">Actually I realized you can do something like this pretty easily using our <code>ma-bar-display</code> directive and AngularJS <code>ng-repeat</code>. Try this, change <code>designer.points</code> to the name of your point array:</p>
<pre><code>    &lt;div layout="" layout-align="space-around center"&gt;
        &lt;div ng-repeat="point in designer.points track by point.xid" layout="column" layout-align="start center"&gt;
            &lt;ma-bar-display style="height: 100px; width: 40px;" ng-style="{color: point.chartColour}" point="point" maximum="2" direction="bottom-to-top"&gt;&lt;/ma-bar-display&gt;
            &lt;span&gt;{{point.name}}&lt;/span&gt;
        &lt;/div&gt;
    &lt;/div&gt;
</code></pre>
]]></description><link>https://forum.mango-os.com/post/15021</link><guid isPermaLink="true">https://forum.mango-os.com/post/15021</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Thu, 20 Jul 2017 22:46:27 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Thu, 20 Jul 2017 19:48:19 GMT]]></title><description><![CDATA[<p dir="auto">I can't find a way to do it. You could implement it yourself as an AngularJS component if you are up to it.</p>
<p dir="auto">We might look at adding this to the next UI module release.</p>
]]></description><link>https://forum.mango-os.com/post/15016</link><guid isPermaLink="true">https://forum.mango-os.com/post/15016</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Thu, 20 Jul 2017 19:48:19 GMT</pubDate></item><item><title><![CDATA[Reply to Bar Chart: Category as X Axis on Thu, 20 Jul 2017 15:40:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/henryblu" aria-label="Profile: henryblu">@<bdi>henryblu</bdi></a> I think it might be possible, I'll have a look at it today.</p>
]]></description><link>https://forum.mango-os.com/post/15008</link><guid isPermaLink="true">https://forum.mango-os.com/post/15008</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Thu, 20 Jul 2017 15:40:47 GMT</pubDate></item></channel></rss>