Skip to main content

Syntax

<dimension_name>:
  label: <display_label>

Properties

dimension_name
object
The name of the dimension. Dimension names must:
  • Be unique within the view
  • Start with a letter
  • Contain only alphanumeric characters and underscores

Examples

Custom label
full_user_name:
  label: Full Name
Calculated field with label
full_name:
  sql: CONCAT(INITCAP(${users.first_name}), ' ', INITCAP(${users.last_name}))
  label: Full Name