Generating Time series chart using json data

0
hi all i want to import json file and based on that i want to display time series chart. Can i do this in mendix? How?   Thanks
asked
2 answers
2

Of course, but not directly reading from JSON file, you have to map it to Mendix by;

1 – map the json data to a domain model (json structure, import mapping,..)

2 – feed the charts with data from the objects of 1

answered
0

With the database conector you retrieve a list of object from the database. You have to itterate over that list and create the objects/data you need for the charts.

answered