Add a drilldown event to a saved data visualization on a technical dashboard

  • Release version: Yokohama
  • Updated March 18, 2026
  • 3 minutes to read
  • Technical dashboards do not support preconfigured destinations for drilling down from a data visualization. If you want a viewer to open a more detailed view of the data when they interact with a visualization, configure a custom drilldown event.

    Before you begin

    This procedure assumes that you have already created a technical dashboard and populated it with a data visualization component.

    Role required: ui_builder_admin, rights to edit a technical dashboard

    Procedure

    1. Navigate to All > Platform Analytics > Library > Dashboards.
    2. Open the desired technical dashboard.
    3. Select Edit in UI Builder.
    4. In UI Builder, select the saved data visualization on the dashboard.
    5. In the configuration panel for the data visualization, select the Events tab.
    6. Select Item clicked or View all > Add handler.
    7. Select the Advanced dashboards - Redirect event handler.
    8. Configure the event handler as follows.
      Field JSON types Description
      Context object, with a string property named path The path of the experience where the destination page resides.
      Route none The route name of the destination page.
      Route fields object, with all parameters as strings Required parameters for the destination page.
      Optional parameters Optional parameters for the destination page.
    9. Select Add.

    Drilldown to a simple list component

    You have a vertical data visualization that shows the number of records on the Incident [incident] table grouped by Priority. When a viewer interacts with this visualization, you want it to open a list of Incident records in the Platform Analytics experience.

    Note:
    This example uses the Context of the Platform Analytics experience and default Route names to components therein.
    1. You follow Steps 1-8 in the general procedure, so you now have the configuration open for the Advanced dashboards - Redirect event handler for your vertical bar visualization.
    2. In the Context field, you type {“path”:”now/platform-analytics-workspace"}.

      This specifies that the viewer drills down to the Platform Analytics experience.

    3. In the Route field, you enter simplelist. This route leads to the simplelist page in the Platform Analytics experience.
    4. For the Route fields, you first choose to bind data. Selecting to bind data.
    5. Then you add the property {table: @payload.payload.params.table} to the field. This property passes the name of the table in your visualization to the simplelist page of the Platform Analytics experience.
    6. Similarly, you choose to bind data for the Optional parameters field and set the value {query: @payload.payload.params.query, listTitle: @payload.payload.title}.
    The properties of your Advanced dashboards - Redirect event handler now appear as follows:
    Field Value
    Context {path:now/platform-analytics-workspace}
    Route simplelist
    Route fields {table:@payload.params.table}
    Optional parameters {query: @payload.payload.params.query, listTitle: @payload.payload.title}
    In runtime, a user can interact with the visualization to open a list of Incident records.
    Opening a list of Incident records by clicking a Single Score visualization on a technical dashboard.

    Drilldown for an indicator data source

    You have a Line data visualization for the indicator Number of open incidents. When a viewer interacts with this visualization, you want it to open the KPI Details page for that indicator.

    1. You repeat steps 1-5 from the Table data source example, because in this case too you are drilling down to a page on the Platform Analytics experience.
    2. For the Route, you enter ac_kpi_details.
    3. For the Route fields, you first choose to bind data Selecting to bind data.. Then you enter {uuid: @payload.payload.params.indicatorSysid}. This parameter passes the id of the indicator, in this case Number of open incidents, to the Platform Analytics experience KPI Details page.
      Tip:
      First use autocomplete to add the data parameter @payload.payload.params.indicatorSysid, then surround that parameter with curly brackets and add uuid:.
      The properties of your Advanced dashboards - Redirect event handler now appear as follows:
      Field Value
      Context {"path":"now/platform-analytics-workspace"}
      Route ac_kpi_details
      Route fields {uuid:@payload.payload.params.indicatorSysid}
    4. No other parameters are necessary, so you select Add and then Save the UI Builder page.
    In runtime, a viewer can interact with the visualization to open KPI Details for the Number of open incidents indicator.
    Opening KPI Details by clicking a Line visualization on a technical dashboard.