Is there a way to add dynamic link to the stacked column chart?

Hi.. Is there a way to add dynamic link to the stacked column chart like the one below.

forum.appian.com/.../SAIL_Recipes.html

If I click on "Directors" on "Engineering", I should display the data in a separate grid.
Thanks

OriginalPostID-164354

OriginalPostID-164354

  Discussion posts and replies are publicly visible

Parents
  • @sikhivahans, I have to display the data only when the column is clicked. But to display that I have to send both "Engineering" and "Directors" as input to the filter criteria. Any idea, how to send both these details. The chart is generated through the following rule:
    =a!chartSeries(
    label: ri!label,
    /* Loop over list of categories to find each datapoint that matches both /
    / the series label and the category. This will ensure that the datapoints /
    / are in the correct order to display in the chart. */
    data: apply(
    rule!findDataPoints(
    data: ri!data,
    categoryField: ri!categoryField,
    labelField: ri!labelField,
    datapointField: ri!datapointField,
    category: _,
    label: ri!label
    ),
    ri!categories
    )
    )
Reply
  • @sikhivahans, I have to display the data only when the column is clicked. But to display that I have to send both "Engineering" and "Directors" as input to the filter criteria. Any idea, how to send both these details. The chart is generated through the following rule:
    =a!chartSeries(
    label: ri!label,
    /* Loop over list of categories to find each datapoint that matches both /
    / the series label and the category. This will ensure that the datapoints /
    / are in the correct order to display in the chart. */
    data: apply(
    rule!findDataPoints(
    data: ri!data,
    categoryField: ri!categoryField,
    labelField: ri!labelField,
    datapointField: ri!datapointField,
    category: _,
    label: ri!label
    ),
    ri!categories
    )
    )
Children
No Data