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
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
## [Unreleased]
4
4
5
+
- Added `font` attribute and fixed faulty selection in `scatter`. Scatter fonts can now be themed with `markerfont`. [#4832](https://github.com/MakieOrg/Makie.jl/pull/4832)
5
6
- Fixed categorical `cgrad` interpolating at small enough steps [#4858](https://github.com/MakieOrg/Makie.jl/pull/4858)
Copy file name to clipboardexpand all lines: MakieCore/src/basic_plots.jl
+2
Original file line number
Diff line number
Diff line change
@@ -484,6 +484,8 @@ Plots a marker for each element in `(x, y, z)`, `(x, y)`, or `positions`.
484
484
marker_offset =Vec3f(0)
485
485
"Controls whether the model matrix (without translation) applies to the marker itself, rather than just the positions. (If this is true, `scale!` and `rotate!` will affect the marker."
486
486
transform_marker =false
487
+
"Sets the font used for character markers. Can be a `String` specifying the (partial) name of a font or the file path of a font file"
488
+
font =@inherit markerfont
487
489
"Optional distancefield used for e.g. font and bezier path rendering. Will get set automatically."
0 commit comments