Plots.jl icon indicating copy to clipboard operation
Plots.jl copied to clipboard

[BUG] PGFPlotsX doesn't colour certain markers in a scatter plot.

Open Zentrik opened this issue 2 months ago • 0 comments

Versions

Plots.jl version: 1.40.4 PGFPlotsX version (]st -m <backend(s)>): 1.6.1 Output of versioninfo():

julia> versioninfo()
Julia Version 1.10.2
Commit bd47eca2c8 (2024-03-01 10:14 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Windows (x86_64-w64-mingw32)
  CPU: 16 × AMD Ryzen 7 5700U with Radeon Graphics
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, znver2)
Threads: 1 default, 0 interactive, 1 GC (on 16 virtual cores)
Environment:
  JULIA_EDITOR = code
  JULIA_NUM_THREADS =

Using the default backend scatter((0, 0), markercolor=:green, markershape=:+) will have a green + but using PGFPlotsX as so the marker is always black

using Plots
pgfplotsx()
scatter((0, 0), markercolor=:green,  markershape=:+)

Zentrik avatar Apr 11 '24 16:04 Zentrik