Need to add whole data from a table

0
I need to calculate all the data which are present in a entity to view the progress chart. Because  it show the chart for single data only. so i need a answer from experts.
asked
1 answers
0

Hi Sanjay,

please check the following documentation https://docs.mendix.com/refguide/charts-configuration

and https://docs.mendix.com/howto7/extensibility/charts-basic-create

Basically you have to create following JSON structure

[
  {
    "x": [ 1, 2 ],
    "y": [ 1, 2 ],
    "type": "scatter"
  }
]

 

answered