-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphuong_test_custom_styling.page.aml
More file actions
65 lines (64 loc) · 1.5 KB
/
phuong_test_custom_styling.page.aml
File metadata and controls
65 lines (64 loc) · 1.5 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Dashboard phuong_test_custom_styling {
title: 'Phuong test custom styling'
owner: 'phuong.nl@holistics.io'
block v_mc9l: VizBlock {
label: 'Active Users Count by Month Cohort Month, Cohort Size, and Relative Month Disp'
viz: RetentionHeatmap {
dataset: demo_ecommerce
filter {
field: r(user_cohort_retention.cohort_month)
operator: 'matches'
value: '2023'
}
cohort: VizFieldFull {
ref: r(user_cohort_retention.cohort_month)
transformation: 'datetrunc month'
format {
type: 'date'
pattern: 'LLL yyyy'
}
}
cohort_size: VizFieldFull {
ref: r(user_cohort_retention.cohort_size)
format {
type: 'number'
pattern: 'inherited'
}
}
cohort_duration: VizFieldFull {
ref: r(user_cohort_retention.relative_month_disp)
format {
type: 'text'
}
}
cohort_value: VizFieldFull {
ref: r(user_cohort_retention.active_users_count)
format {
type: 'number'
pattern: 'inherited'
}
}
settings {
aggregate_awareness {
enabled: true
debug_comments: true
}
}
}
}
interactions: []
view: CanvasLayout {
label: 'View 1'
width: 1300
height: 800
grid_size: 20
auto_expand_vertically: true
block v_mc9l {
position: pos(40, 80, 1200, 640)
}
mobile {
mode: 'auto'
}
}
theme: fashion
}