Mango HTML & Javascript Web Interface (7/17/2015)

Today I worked on fixing the graphing display properties.
I spent hours going through the API in an attempt to find out how to assign unique value fields.
However, it did not work, despite using the exact code shown in the API examples:
Thus, I decided not to use Mango's own bar chart constructor, I decided to create my own.
http://10.14.4.52:8080/private-dashboards/test1.shtm:
I started by going through their Rest API, and retrieving the data into the simplest possible format; a string.
I then piped it into a div and it worked!
My next step was to insert my custom amcharts template code.
Once I did this, I had to find a way to pipe the queried value into the graph.
I decided to return the value once the function is called, so that I can simply call it when I am creating the data provider.
Instead of setting it to a static value, I call my function here:
However, it did not work.

Comments