* Allow styling of magnification shape in lens!()
The guide lines that indicate the region of the plot magnified in the
inset lens plot, called the magnification shape, are hard-coded with
the :lightgray color and are drawn with the default other line
attributes. This is often too light to be seen clearly and could be a
problem for publication. This commit allows the user to set the
linecolor, linewidth, and linestyle in the call to lens!().
* Update src/recipes.jl
Co-authored-by: t-bltg <tf.bltg@gmail.com>
* Update .zenodo.json
Co-authored-by: t-bltg <tf.bltg@gmail.com>
Co-authored-by: Simon Christ <SimonChrist@gmx.de>
* No exception thrown in `apply_recipe` fallback
Throwing an exception here can vastly slow down plotting, as it happens frequently. Returning an error value instead, which the calling function can check, can speed up plotting 2x. An accompanying change is necessary in RecipesPipeline.jl, assuming this value is suitable.
* Bumped compat for RecipesPipeline, tentative
* Bump patch version
* Fix wrong versioning
Co-authored-by: t-bltg <tf.bltg@gmail.com>
* fix series_annotations for bar
* fix my typos in bar recipe
* fix fillrange of annotation series for groupedbar
* fix series_annotations for bar
* fix my typos in bar recipe
* fix fillrange of annotation series for groupedbar
* fix series_annotations for bar
* fix my typos in bar recipe
* fix fillrange of annotation series for groupedbar
* fix series_annotations for bar
* fix fillrange of annotation series for groupedbar
If `even` in false, `make_steps` returns an odd-length (2n-1) Vector as
it did before. If even is `true`, `make_steps` now returns an
even-length (2n) Vector whose first (2n-1) elements are the same as
before and whose final element is the same as the final element of the
input Vector.
* Changed labeling-behaviour of :sticks
* Further adaptions to make sticks-label behavior as expected
* Fixed for linecolor-attribute
* Deleted some debugging println()
* Changed primary-ness in sticks+marker
Co-authored-by: bernd_uni <bernd.riederer@student.tugraz.at>
* Add :mesh3d seriestype (in theory)
* Make it work in practice
* Clean up code
* Add support for arbitrary 3d mesh
* Add fallback for other backends
* Add shorthand
* Change i,j,k to series keyword
* Small bugfix
* Update shorthands example
* Add mesh3d example
* Add some documentation to example
* Make color work
* Move mesh3d example and add to skip list
* Update fallback recipie
* Update example
* Update src/args.jl
Co-authored-by: Simon Christ <SimonChrist@gmx.de>
* Update src/backends/plotly.jl
Co-authored-by: Simon Christ <SimonChrist@gmx.de>
* Update src/examples.jl
Co-authored-by: Simon Christ <SimonChrist@gmx.de>
* Cosmetic changes
Co-authored-by: Simon Christ <SimonChrist@gmx.de>