Skip to content

Commit

Permalink
Fix seriestype for 1D basis in plot recipe (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLampert authored Oct 30, 2024
1 parent 052c06d commit 711c1d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/visualization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ end
for i in 1:length(basis)
@series begin
label --> nothing
seriestype --> :surface
seriestype --> (dim(basis) == 1 ? :line : :surface)
nodeset, basis[i]
end
end
Expand Down

0 comments on commit 711c1d9

Please sign in to comment.