Dynamic Link in a Column chart from a Record type

Certified Associate Developer

I am attempting to make a chart where the user can click on a chart to open another chart for a drill down.  In my example Jack-001 has 2 events associated with it and I would like to click on it and see the details of those events.

{
  a!columnChartField(
    data: 'recordType!{39c31005-7637-4eb1-8a4c-cc1cd5cfa952}sam_failure_analysis1',
    config: a!columnChartConfig(
      primaryGrouping: a!grouping(
        field: 'recordType!{39c31005-7637-4eb1-8a4c-cc1cd5cfa952}sam_failure_analysis1.fields.{equipNo}equipNo',
        alias: "controlNo"
      ),
      measures: a!measure(
        function: "COUNT",
        field: 'recordType!{39c31005-7637-4eb1-8a4c-cc1cd5cfa952}sam_failure_analysis1.fields.{failureMode1}failureMode1',
        alias: "controlNo_count"
      ),
      dataLimit: 100
    ),
    label: "Column Chart",
    series: {
      a!chartSeries(label: "Chart Series", data: {1, 2, 3})
    },
    stacking: "NONE",
    showLegend: true,
    showTooltips: true,
    labelPosition: "ABOVE",
    colorScheme: "CLASSIC",
    height: "MEDIUM",
    xAxisStyle: "STANDARD",
    yAxisStyle: "STANDARD"
  )
}

  Discussion posts and replies are publicly visible