From bb77ded576c2310561fd96404ae85223d46cc90e Mon Sep 17 00:00:00 2001 From: Steffen Rehberg Date: Thu, 6 Jul 2023 09:00:55 +0200 Subject: [PATCH] DOC: Fix image_rotator by replacing step with stairs (follow-up to #26233) and replacing the second step entry with the fill_between basic plot --- doc/_static/image-rotator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/_static/image-rotator.js b/doc/_static/image-rotator.js index 2c17c34bec79..f056b5b0c254 100644 --- a/doc/_static/image-rotator.js +++ b/doc/_static/image-rotator.js @@ -7,11 +7,11 @@ function getRandomInt(max) { var images_rotate = [ {"image": "sphx_glr_plot_001_2_00x.png", "caption": "plot(x, y)", "link": "plot_types/basic/plot.html"}, - {"image": "sphx_glr_step_001_2_00x.png", "caption": "step(x, y)", "link": "plot_types/basic/step.html"}, + {"image": "sphx_glr_fill_between_001_2_00x.png", "caption": "fill_between(x, y1, y2)", "link": "plot_types/basic/fill_between.html"}, {"image": "sphx_glr_scatter_plot_001_2_00x.png", "caption": "scatter(x, y)", "link": "plot_types/basic/scatter_plot.html"}, {"image": "sphx_glr_pcolormesh_001_2_00x.png", "caption": "pcolormesh(X, Y, Z)", "link": "plot_types/arrays/pcolormesh.html"}, {"image": "sphx_glr_contourf_001_2_00x.png", "caption": "contourf(X, Y, Z)", "link": "plot_types/arrays/contourf.html"}, - {"image": "sphx_glr_step_001_2_00x.png", "caption": "step(x, y)", "link": "plot_types/basic/step.html"}, + {"image": "sphx_glr_stairs_001_2_00x.png", "caption": "stairs(y)", "link": "plot_types/basic/stairs.html"}, {"image": "sphx_glr_streamplot_001_2_00x.png", "caption": "streamplot(X, Y, U, V)", "link": "plot_types/arrays/streamplot.html"}, {"image": "sphx_glr_bar_001_2_00x.png", "caption": "bar(x, height) / barh(y, width)", "link": "plot_types/basic/bar.html"}, {"image": "sphx_glr_hist_plot_001_2_00x.png", "caption": "hist(x)", "link": "plot_types/stats/hist_plot.html"},