Created
September 10, 2024 20:22
-
-
Save judell/0a525f2a2773782733a77b1d5e49a380 to your computer and use it in GitHub Desktop.
hn_triptych
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
container { | |
chart { | |
base = chart.languages_base | |
width = 4 | |
type = "donut" | |
title = "language mentions: last 24 hours" | |
query = query.mentions | |
args = [ local.languages, 0, 1440 ] | |
} | |
chart { | |
base = chart.languages_base | |
width = 4 | |
type = "donut" | |
title = "language mentions: last 7 days" | |
query = query.mentions | |
args = [ local.languages, 0, 10080 ] | |
} | |
chart { | |
base = chart.languages_base | |
width = 4 | |
type = "donut" | |
title = "language mentions: last 30 days" | |
query = query.mentions | |
args = [ local.languages, 0, 43200 ] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment