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
# xscale::Symbol = :identity: x-axis scale (:identity, :ln, :log2, :log10), or scale function e.g. x -> log10(x).
354
-
# xscale: x axis scale: one of [:log, :identity, :symlog]. Default: :identity
355
-
356
355
xscale = ctx[:xscale]
357
356
xscale ==:log&& (xscale =:log10)
358
357
xscale ==:symlog&& (xscale = x ->sign(x) * (log10(1+abs(x))))
@@ -370,7 +369,6 @@ function scalarplot!(
370
369
name = name =isnothing(ctx[:label]) ?"": ctx[:label]
371
370
372
371
ifisnothing(plt)
373
-
@showSymbol(ctx[:color])
374
372
plt = UnicodePlots.lineplot(
375
373
coord[1, :],
376
374
func;
@@ -464,6 +462,8 @@ function scalarplot!(
464
462
returnreveal(ctx, TP)
465
463
end
466
464
465
+
scalarplot!(ctx, TP::Type{UnicodePlotsType}, ::Type{Val{3}}, grids, parentgrid, funcs) =@warn"3D scalarplot is not implemented for the UnicodePlots backend"
0 commit comments