From 8112fc88e0afbc0651d595bfb5982004ab75b1aa Mon Sep 17 00:00:00 2001 From: Tai Nguyen Date: Thu, 7 Aug 2025 05:34:34 +0000 Subject: [PATCH] Modify: team-folders/tai/dashboards/tai_test_new_block.page.aml --- .../dashboards/tai_test_new_block.page.aml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/team-folders/tai/dashboards/tai_test_new_block.page.aml b/team-folders/tai/dashboards/tai_test_new_block.page.aml index 3d45194..ca15845 100644 --- a/team-folders/tai/dashboards/tai_test_new_block.page.aml +++ b/team-folders/tai/dashboards/tai_test_new_block.page.aml @@ -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' @@ -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' }