Can anyone please guide me regarding below snapshots of Timeseries chart.

0
What format of incoming data should be for both axis. Steps for creating    Please find below snapshots of time series graph and the entity which I am mapping for graph: Please guide to create correct Time series graph
asked
2 answers
0

The first step is to start with a normalized data model.

Create an entity in your domain model for example called “Measurement” with attributes:

  • MeasurementDate (DateTime)
  • MeasuredValue (Decimal)

 

Now you create some objects of entity Mesaurement to represent the data you want to display.

Then use MeasurementDat as x-axis end MeasuredValue as y-axis for your graph.

Does this help?

answered
0

Did you check out these resources already?

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

https://docs.mendix.com/refguide/chart-widgets

https://docs.mendix.com/appstore/widgets/charts

If so, what exactly is the issue you are facing?

answered