How can the date format be controlled in echarts4r? There is a formatter for currency, percentage and decimal but not for dates that I can see.
Here's an example from https://rpubs.com/paul_simmering/echarts
library(echarts4r)
library(nycflights13) # data
library(tidyverse)
flights_ts <- flights %>%
transmute(week = as.Date(cut(time_hour, "week")), dep_delay, origin) %>%
group_by(origin, week) %>% # works with echarts
summarise(dep_delay = sum(dep_delay, na.rm = TRUE))
ts_base <- flights_ts %>%
e_charts(x = week) %>%
e_datazoom(
type = "slider",
toolbox = FALSE,
bottom = -5
) %>%
e_tooltip() %>%
e_title("Departure delays by airport") %>%
e_x_axis(week, axisPointer = list(show = TRUE))
ts_base %>% e_line(dep_delay)
The chart dates are in format month-date-year which I'd like to change to year-month-date:
You can have a custom JavaScript function passed to the
formatter
argument inside theaxisLabel
, like so:You'll get: