Skip to content

Commit

Permalink
replaced boxes with symmetrical squares
Browse files Browse the repository at this point in the history
  • Loading branch information
mkborregaard committed Feb 22, 2017
1 parent d4b7bfb commit 28b026c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ end
end

library = clibrary(cl.args[1])
z = sqrt.((1:15)*(1:20)')
z = (1:20).+(1:20)'

seriestype := :heatmap
ticks := nothing
Expand All @@ -838,7 +838,7 @@ end
if !(length(grad.args) == 1 && isa(grad.args[1], Symbol))
error("showgradient takes the name of a color gradient as a Symbol")
end
z = sqrt.((1:15)*(1:20)')
z = (1:20).+(1:20)'
seriestype := :heatmap
ticks := nothing
legend := false
Expand Down

0 comments on commit 28b026c

Please sign in to comment.