Makie.jl icon indicating copy to clipboard operation
Makie.jl copied to clipboard

DateTime support for band

Open ValentinKaisermayer opened this issue 1 month ago • 0 comments

using Dates
using GLMakie
t = range(DateTime(2020); step=Hour(1), length=1000)
y = cumsum(randn(1000))

fig = Figure()
ax = Axis(fig[1,1])
lines!(t, y) # <-- works
band!(t, zeros(1000), y) # <-- does not
fig

ValentinKaisermayer avatar Jun 05 '24 12:06 ValentinKaisermayer