We are currently performing maintenance on Appian Community. As a result, discussions posts and replies are temporarily unavailable. We appreciate your patience.

Unrecoverable Error when applying dynamic link in the chart series of stacked bar chart.

I see the below error when I apply dynamic link in the a!chartSeries of stacked bar chart.
Any suggestions?
Note: I don't have any null values for data.

OriginalPostID-183358

OriginalPostID-183358

  Discussion posts and replies are publicly visible

Parents
  • @janakik Hi, your code is using a local variable while providing the value for 'label' attribute of a!columnChartField which is as follows:
    a!columnChartField(
    label: "Spending by Category"& local!userValue
    )

    Please change it like below and do let me know if you are able to interact with the interface successfully.

    a!columnChartField(
    label: "Spending by Category"
    )
Reply
  • @janakik Hi, your code is using a local variable while providing the value for 'label' attribute of a!columnChartField which is as follows:
    a!columnChartField(
    label: "Spending by Category"& local!userValue
    )

    Please change it like below and do let me know if you are able to interact with the interface successfully.

    a!columnChartField(
    label: "Spending by Category"
    )
Children
No Data