Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

  • Not able to show Device Details

    2
    0 Votes
    2 Posts
    1k Views
    Jared WiltshireJ
    @SabariGhosh Make sure you are running the mangoApi module >= 1.1.8
  • CRUD for data sources

    10
    0 Votes
    10 Posts
    3k Views
    phildunlapP
    Glad to hear it, thanks for sharing the resolution!
  • 0 Votes
    3 Posts
    2k Views
    Will GellerW
    Have you had a look at the <ma-json-store> component? Adding this component to the html markup of your code provides a way of storing and retrieving data in realtime across pages, clients and web browsers. Unlike local storage data is stored in Mango's database and is synced in realtime across all screens. More info here: http://localhost:8080/dashboards/examples/utilities/json-store http://localhost:8080/dashboards/docs/ma-dashboards/ma-json-store
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Adding "guides" to charts

    5
    0 Votes
    5 Posts
    3k Views
    phildunlapP
    Hi Pikey, The answer is probably, "that isn't really possible right now," but it's a good idea! This may seem close (and maybe close enough): <ma-serial-chart style="height: 300px; width: 100%" series-1-values="hwinletPressureValues" series-1-point="hwInletPressure" series-1-type="line" series-1-color="#ffaa00" legend="true" export="true" options="{ valueAxes:[{logarithmic: true, dashLength: 6}], guides: [{dashLength:5, inside: true, label: 'average', lineAlpha: 1, value: statsObj.average.value}]}" ng-if="statsObj.average.value"> </ma-serial-chart> But the problem comes in where the serial chart will be aware of updates in the set of point values, but it will not adjust the options to match. So, this will draw the line for the average on the first page load. Perhaps one could hack up a solution to redraw the whole component, but that's not ideal. There may be a way to adjust this value more directly in the amChart but I am unsure of an easy way to do that.
  • 0 Votes
    10 Posts
    4k Views
    JoelHaggarJ
    This could be useful. I'll ask one of our developers to take a look later today.
  • shortening up app.js

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Mango Dashboard 3.x Video Training Series

    11
    1 Votes
    11 Posts
    6k Views
    C
    Thanks.
  • Numeric Defualt Questions

    2
    0 Votes
    2 Posts
    2k Views
    Jared WiltshireJ
    @atkins-chrisw I think it is due to you using rendered point values on the AmCharts, the client side is interpreting the string as a number formatted with a comma as the decimal point. We will fix this in an upcoming release, for now either dont use rendered point values with a chart or dont use a comma in the rendered point value.
  • User permissions to view pages

    4
    0 Votes
    4 Posts
    3k Views
    S
    Thanks guys! As always, appreciate your help! Cheers!
  • Custom Dashboards in overrides problem

    3
    0 Votes
    3 Posts
    2k Views
    Jared WiltshireJ
    @Balistar There is also a line near the top of index.html that needs adminTemplate renamed, <base href="/user-dashboards/adminTemplate/"> Sorry for the inconvenience, somehow that didn't make its way into the new documentation page.
  • Editing setPointValue.html

    3
    0 Votes
    3 Posts
    2k Views
    Jared WiltshireJ
    Alternatively, create a file called i18n_en.properties (for English locale) in overrides/properties and put a line in there with the new text i.e. common.set=Set the point This will update the text everywhere in the application.
  • Multiple queries/array in ma-point-list

    2
    0 Votes
    2 Posts
    2k Views
    Jared WiltshireJ
    Hi @DieselD try the following syntax <md-input-container> <label>Filtered point list using RQL</label> <ma-point-list ng-model="myPoint3" query="'in(name,' + nameFilter.join(',') + ')'"></ma-point-list> </md-input-container>
  • Trouble Porting Dashboard from Demo Area

    18
    0 Votes
    18 Posts
    4k Views
    phildunlapP
    There is a setting in your developer tools that can disable caching while you have the developer tools open. I would encourage you to check that and keep your developer tools open during development, both for the cache and seeing anything that is being printed to the console.
  • ma-set-point-value display options

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    S
    Set a numeric point and to display it rendered.
  • mdAdminApp

    4
    0 Votes
    4 Posts
    2k Views
    Jared WiltshireJ
    @atkins.chrisw You can always create a page and set the permissions on it so your users dont see it. You are going to have to elaborate more about the errors you are getting for us to help you. For starters when and where it happens and your console output. The login issue in particular is strange, as a 403 means that you are not logged in, perhaps record your screen as this occurs with the console open so I can see exactly what is happening here, you could post it to YouTube.
  • rest api query format

    2
    0 Votes
    2 Posts
    1k Views
    phildunlapP
    Hi Radu, It's probably easier for you to do this by using the GET /v1/events endpoint, since you can includes a URL parameter to do that filtering quite easily: /v1/events?alarmLevel=CRITICAL&sort(-activeTimestamp)&limit(50)
  • Trouble fully loading Dashboards over VPN

    8
    0 Votes
    8 Posts
    3k Views
    M
    Everything seems to be working perfectly now, so there are no errors. So I'm going to rule out anything on the Mango side, but I'll look into the MTU settings as soon as I figure out where they are. Thanks for the help.
  • Can we enable/disable a data point by REST API?

    18
    0 Votes
    18 Posts
    8k Views
    JoelHaggarJ
    In my option it would be best practice to set the Slave ID of a replacement Modbus device the same as the one it's replacing. Also, it's really easy to change the slave ID of a set of points be either exporting all the points as JSON or csv. Making the change with a find and replace or in Excel and then importing them on the Configuration Import / Export page.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    5 Views
    No one has replied