update test example for polar heatmaps

This commit is contained in:
Daniel Schwabeneder 2021-02-16 20:09:13 +01:00
parent 2594b577d7
commit ec532b2cbb

View File

@ -1044,8 +1044,10 @@ const _examples = PlotExample[
"Polar heatmaps",
"",
[quote
z = (1:4) .+ (1:8)'
heatmap(z, projection = :polar)
x = range(0, 2π, length=0)
y = 0:4
z = (1:4) .+ (1:8)'
heatmap(x, y, z, projection = :polar)
end]
),
PlotExample( # 50