Is it possible to alter the font size of the y- and x-axis ticks?
I have looked through the documentation and can't find anything that works.
reprex:
library(lubridate)
library(echarts4r)
df <- data.frame(
Date = dmy("01/01/2020","01/02/2020","01/03/2020","01/04/2020","01/06/2020"),
Temperature = c(10, 2, 4, 5, 1),
Phosphate = c(4, 1, 2, 5, 6)
)
df |>
e_charts(Date) |>
e_bar(Phosphate, y_index = 1) |>
e_line(Temperature) |>
e_text_style(fontSize = 24)