replaced boxes with symmetrical squares

This commit is contained in:
Michael K. Borregaard 2017-02-22 11:49:31 +01:00
parent d4b7bfbe1d
commit 28b026c9ad

View File

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