Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/entries.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ end
# Use technique from https://github.com/MakieOrg/AlgebraOfGraphics.jl/pull/289
# to encode all axis information without creating the axis.
struct AxisSpec
type::Union{Type{Axis}, Type{Axis3}}
type::Type{<: Makie.AbstractAxis}
position::Tuple{Int,Int}
attributes::NamedArguments
end
Expand Down Expand Up @@ -59,7 +59,7 @@ Each categorical scale should be a `CategoricalScale`, and each continuous
scale should be a `ContinuousScale`.
"""
struct AxisEntries
axis::Union{Axis, Axis3}
axis::Makie.AbstractAxis
entries::Vector{Entry}
categoricalscales::MultiAesScaleDict{CategoricalScale}
continuousscales::MultiAesScaleDict{ContinuousScale}
Expand Down
Loading