From ec532b2cbb05dc4440fb3380a7d6caecfbee165e Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Tue, 16 Feb 2021 20:09:13 +0100 Subject: [PATCH] update test example for polar heatmaps --- src/examples.jl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/examples.jl b/src/examples.jl index 498f367f..3391c21f 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -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