You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I currently don't see where you need it, but the respective functions using RangeData should probably be modified to look like
function Stipple.render(rd::AbstractRange{T}, fieldname::Union{Symbol,Nothing} = nothing) where {T,R}
Dict(:min => first(rd), :max => last(rd), :step => step(rd))
end
function Base.parse(::Type{AbstractRange{T}}, d::Dict) where T <: Real
st = get(d, "step", 1)
d["min"]:step:d["max"]
end
Some comments on
Range.jl
range()
collides withBase.range()
. Why not renaming it torangeslider()
(similar to plotly)?Slider.jl
UnitRange
for RangeData? Are you aware thatstop
is modified by the colon operator to have a spacing of1
?The text was updated successfully, but these errors were encountered: