Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions team-folders/tai/dashboards/tai_test_new_block.page.aml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,36 @@ Dashboard tai_test_new_block {
}
}
}
block v_ydnh: VizBlock {
label: 'Order Id and User Id'
viz: DataTable {
dataset: demo_ecommerce
fields: [
VizFieldFull {
ref: r(order_master.order_id)
format {
type: 'number'
pattern: 'inherited'
}
},
VizFieldFull {
ref: r(order_master.user_id)
format {
type: 'number'
pattern: 'inherited'
}
}
]
settings {
show_row_number: true
row_limit: 5000
aggregate_awareness {
enabled: true
debug_comments: true
}
}
}
}

view: CanvasLayout {
label: 'View 1'
Expand All @@ -74,6 +104,10 @@ Dashboard tai_test_new_block {
position: pos(440, 100, 400, 300)
layer: 2
}
block v_ydnh {
position: pos(20, 420, 400, 300)
layer: 3
}
mobile {
mode: 'auto'
}
Expand Down