-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_new.page.aml
More file actions
48 lines (48 loc) · 979 Bytes
/
test_new.page.aml
File metadata and controls
48 lines (48 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Dashboard test_new {
title: 'Test New'
owner: 'tan.nguyen@holistics.io'
block title: TextBlock {
content: @md # Your title goes here ;;
}
block v_c3vu: VizBlock {
label: 'Total Users'
viz: DataTable {
dataset: bhx_demo_ecommerce
fields: [
VizFieldFull {
ref: r(bhx_demo_ecommerce.total_users)
format {
type: 'number'
pattern: 'inherited'
}
}
]
settings {
show_row_number: true
row_limit: 5000
aggregate_awareness {
enabled: true
debug_comments: true
}
}
}
}
interactions: []
view: CanvasLayout {
label: 'View 1'
width: 1300
height: 270
grid_size: 20
auto_expand_vertically: true
block title {
position: pos(20, 20, 1260, 60)
}
block v_c3vu {
position: pos(350, 100, 620, 420)
}
mobile {
mode: 'auto'
}
}
theme: H.themes.vanilla
}