Add heatmap headline

This commit is contained in:
2025-12-16 19:17:58 +01:00
parent 3cab59b60f
commit 81d63ae727

19
ui.R
View File

@@ -65,14 +65,17 @@ ui <- function() {
plugins = list('dropdown_header')
)
),
selectizeInput(
inputId = "heatmap",
label = "Wähle eine Straftat:",
choices = list_of_crimes,
selected = NULL,
options = list(
placeholder = "Keine Auswahl",
plugins = list('clear_button')
div(
tags$h5("Heatmap zur Häufigkeit der Straftaten:", style = "font-weight: bold; margin-bottom: 10px;"),
selectizeInput(
inputId = "heatmap",
label = "Wähle eine Straftat:",
choices = list_of_crimes,
selected = NULL,
options = list(
placeholder = "Keine Auswahl",
plugins = list('clear_button')
)
)
)
),