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.

  • ma-serial-chart 3.3.0 Uncaught TypeError

    29
    0 Votes
    29 Posts
    8k Views
    MattFoxM
    Nvm, found it! var columnGraphs = event.chart.graphs.filter(function(graph) { return graph.type === 'column' && graph.ownColumns; }); var redrawNeeded = false; columnGraphs.forEach(function(graph) { var newWidth = Math.floor(graph.width / graph.ownColumns.length * 0.8); if (chart.categoryAxis.equalSpacing) { newWidth = undefined; } if (newWidth !== graph.fixedColumnWidth) { graph.fixedColumnWidth = newWidth; redrawNeeded = true; } }); if (redrawNeeded){ chart.validateNow(); }
  • Data Import Flexibility

    10
    0 Votes
    10 Posts
    4k Views
    T
    @phildunlap I used both CSV and Excel, I actually discovered the issue on the csv version, but it works the same for me either way. Emailing files now.
  • generateMetaPointHistory causes ERROR on LOG.debug()

    4
    0 Votes
    4 Posts
    1k Views
    phildunlapP
    The bug was in the Meta module. I didn't put it in the store yet, nor did I backport to the 2.8 Meta module.
  • [SOLVED] "Failed to create authentication token: Bad Request"

    3
    0 Votes
    3 Posts
    2k Views
    A
    This worked for me. Thank you! BTW we had rest.customDateOutputFormat already specified in our env. properties file, it was just the wrong format. So the hard coded defaults are probably fine.
  • Cannot create a Persistent TCP Publisher after update to 3.3.0

    3
    0 Votes
    3 Posts
    1k Views
    M
    Hi Terry, Thank you for the quick response. I have just tried this on another PC and I don't get the error so it must be something cached. Thank you for your help! Matt.
  • JSON Retriever documentation missing

    5
    0 Votes
    5 Posts
    2k Views
    B
    OK. In any case the current JSON retriever works fine in 3.2. I find this tool to be very helpful to quickly get the correct slashes for the pointers: www.jsonpointer.com
  • UPDATED Everything to latest and UI now freezes on dashboard designer.

    1
    0 Votes
    1 Posts
    719 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Sending time to DNP3 devices

    2
    0 Votes
    2 Posts
    1k Views
    phildunlapP
    Hi Frank, welcome to the forum! The module doesn't support this currently, and it wouldn't be trivial to achieve through the scripting options. It looks like the protocol implementation library, DNP34J, does support setting time out to a device, but not synchronizing (it does identify these as distinct, but doesn't implement synchronizing). It didn't look like it would be too much work to wire this up. I've sent you an email with a few modifications to have a button to send the time out and some questions and whatnot. Let's communicate there and see if we can get this feature added.
  • Feature request - filter for config export

    6
    0 Votes
    6 Posts
    2k Views
    S
    Oh! @phildunlap I didn't realise thats what that button was for.. haha! Thanks again, and thanks very much for the script too! Cheers! -Shaun
  • Microsoft Edge browser support

    4
    0 Votes
    4 Posts
    2k Views
    Jared WiltshireJ
    Yeah you will definitely find some things that don't render properly in Edge, I would recommend using Chrome or as a second preference Firefox.
  • Set chart minimum and maximum axes values ignored

    7
    0 Votes
    7 Posts
    6k Views
    MattFoxM
    @phildunlap Many thanks, at least we all know now and if anyone hits this snag they'll find it here. Matt
  • Data Sources and Devices - Basic Example Bug

    9
    0 Votes
    9 Posts
    2k Views
    phildunlapP
    Glad to hear it! Thanks for bringing this to our attention.
  • Date Range Picker Bug

    2
    0 Votes
    2 Posts
    1k Views
    Jared WiltshireJ
    @silvia thanks fixed for next release. I think we will also have to try and compile each element individually and catch the errors in the future so this sort of scenario doesn't repeat itself.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Mango 3.0 - Renaming a datasource does not propagate to data points

    3
    0 Votes
    3 Posts
    2k Views
    C
    Thanks. That makes sense. pjc
  • ssh datasource settable datapoint bug in dashboards module

    3
    0 Votes
    3 Posts
    2k Views
    ThomasEinastoT
    Hi Phil, Sorry but I have already finished with my project and set it up for my client after I noticed the upgrade. I will try it on my next upcoming project. I guess if you have fixed it then its okay, I was just bringing it out as I noticed it was behaving strangely. Thomas
  • DeviceNameList.js issue

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • HTTP Publisher / snapshotSendPeriod not saved

    12
    0 Votes
    12 Posts
    4k Views
    S
    Ok i understand. I thought that the Publisher send one requet per point but it send a lot a point on one request. We have change the php script to catch all values and now it's ok. Thanks !
  • Datapoints out of sync in same datasource

    4
    0 Votes
    4 Posts
    3k Views
    JoelHaggarJ
    A couple of things you could check would be the logging setting on each data point. Your Compressor Call (Binary) should be set to "log on change" And your KW will probably be on a 1 minute average or something like that. The other thing that would be good to do would be to export the data for that same chart as Excel so the time stamps can be verified independently of the chart to see if the data is just being displayed incorrectly on the chart but actually saved in the database correctly.