stelmo / TernaryDiagrams.jl

Ternary plots with Makie.jl
MIT License
25 stars 4 forks source link

hide_vertex_labels and hide_axis_labels work opposite to expected #17

Closed rpgowers closed 1 day ago

rpgowers commented 8 months ago

Currently in 0.1.1 the vertex labels appear with hide_vertex_labels = true and do not appear with hide_vertex_labels = false. This seems like the opposite way around to what was intended. Ditto with hide_triangle_labels.

MWE in which the vertex labels are shown with hide_vertex_labels = true

fig = Figure()
ax = Axis(fig[1,1])
tr = ternaryaxis!(ax; 
  labelx = "labelx", 
  labely = "labely", 
  labelz = "labelz", 
  hide_vertex_labels = true)
fig