Skip to main content

View Underlying Data

COMING SOON

This feature is still under development. Estimated release date is within Q1, 2025.

Introduction

View underlying data helps you quickly see “what makes up this value” at the most detailed level. By understanding the details behind every data point, you can make more informed, data-driven decisions.

How It Works

Simply right-click on any data point within a visualization and select View underlying data.

A table is presented with default selected fields. However, you can tailor the table to your needs by selecting or deselecting fields from the list.

You can also click on a different data point in the visualization to view its underlying data.

Customizing Detail Views

To ensure the best experience for end users, dashboard builders can configure the underlying data table for each metric.

Each metric can have multiple detail views to facilitate different analytical perspective.

For example, metric Revenue can have multiple detail views of Order Details, User Details and Product Details. Users can choose Order Details to see how much each order contributes to Revenue, or users can choose User Details to see how much each user contributes to Revenue, etc.

Detail view is a property of metric. It comprises of an array of dimensions predefined by dashboard builders in the modeling layer via AML.

Below is an example of how it may look like. This feature is still under development.

metric revenue {
detail_views: [order_details, user_details, product_details, [field1, field2, field3]]
}

view order_details {
label: 'Order Details'
fields: order_id, quantity, status
}

view user_details {
label: 'User Details'
fields: user_id, name, email
}

view product_details {
label: 'Product Details'
fields: product_id, product_name, price
}

Let us know what you think about this document :)