Skip to content

Commit

Permalink
minor changes for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Sep 9, 2024
1 parent a4b50cb commit 2c69476
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/main/R/drtDemandAnalysis/VIA-data/KEXI-shiny-dashboard.R
Original file line number Diff line number Diff line change
Expand Up @@ -722,12 +722,18 @@ server <- function(input, output) {
layout(
title = list(
text = "Mittlere Anzahl verfügbarer Fahrzeuge pro Tag",
font = list(size = 14, color = "black", family = "Arial", weight = "bold"),
font = list(size = 18, color = "black", family = "Arial", weight = "bold"),
x = 0.5 # Zentriert den Titel
),
xaxis = list(title = "Datum"),
yaxis = list(title = "Mittlere Fahrzeugverfuegbarkeit pro Tag", side = "left"),
xaxis = list(title = "Datum",
font = list(size = 16, family = "Arial", color = "black", weight = "bold") # Größe und Stil der X-Achsenbeschriftung
),
yaxis = list(title = "Mittlere Fahrzeugverfuegbarkeit pro Tag",
font = list(size = 16, family = "Arial", color = "black", weight = "bold"), # Größe und Stil der Y-Achsenbeschriftung

side = "left"),
yaxis2 = list(title = "Passagiere pro Tag",
font = list(size = 16, family = "Arial", color = "red", weight = "bold"), # Größe und Stil der zweiten Y-Achsenbeschriftung
overlaying = "y",
side = "right",
color = "red")#,
Expand All @@ -739,6 +745,7 @@ server <- function(input, output) {
)

fig


})

Expand Down

0 comments on commit 2c69476

Please sign in to comment.