Chart is not accepting DataSource as microflow

0
I have microflow which returns list of MyFirstModule.Values object. I have assigned this as Datasource for the LineChart. But it throws error: Microflow should have one parameter of type MyFirstModule.Values.   Please help me on this issue.
asked
5 answers
1

Can you provide a screenshot of your configuration and your DS Microflow?

answered
1

You also need to set up the other tabs and define the dimensions and data points.

answered
0

The datasource microflow is expecting an input object oft type MyFirstModule.Values.  Check the dataview the chart object is placed in, if this is of type values this is the parameter your microflow will expect.

answered
0

Please find an screenshot of microflow and chart configuration:

answered
0

Microflow should have one parameter of type MyFirstModule.Values.

This error occurs because your chart is placed within a dataview of type Values. If you add this as a parameter in the microflow the error should be solved.

If you do not want this entity to be the parameter then place the chart in a differten dataview source.

answered