Replies: 1 comment
-
Just a bit of context: I am designing some datatip function for a
julia> barplot!([1],[1])
Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/3Ttrk/src/ticks.jl:283
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Some of the plot recipes in
basic_recipes/
do not implement basic functionality such asvisible
on/off behaviour.Should there be a standard set of attributes implemented by all recipes ?
visible
attribute seems useful for any plot type, but I am not sure that every low-level plot type already implements it.transparency
attribute which is implemented by at least some low-level plot types already?mouse_selection
/pick
should be able to "see" the object or ignore it (and look at what is "behind"). For instance, it may be rare to need to see grid lines, so these could default to "ignored".Clearly, I have not thought about all possibilities, but this issue could be used to discuss that.
At the risk of being excommunicated, I thought some of the matlab standard interaction features could also be considered for inspiration, see e.g. https://www.mathworks.com/help/matlab/ref/matlab.graphics.chart.primitive.line-properties.html, those from the
Interactivity
, orCallback Execution Control
sections in particular.PickableParts
andHitTest
for instance could also make sense for mouse interaction inMakie
.Beta Was this translation helpful? Give feedback.
All reactions