From cd6b5aabddef4fbc218ef642a4b482a3c522671c Mon Sep 17 00:00:00 2001 From: David Vegh Date: Fri, 8 Nov 2024 12:50:24 +0100 Subject: [PATCH] Fix tutorial test with new attach --- docs/tutorial/shorthands_store/08.js | 6 +++--- docs/tutorial/shorthands_store/09.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/tutorial/shorthands_store/08.js b/docs/tutorial/shorthands_store/08.js index 405645f83..3d7435735 100644 --- a/docs/tutorial/shorthands_store/08.js +++ b/docs/tutorial/shorthands_store/08.js @@ -6,10 +6,10 @@ chart.animate( align: 'stretch', channels: { y: ['Popularity', 'Kinds'], - x: 'Genres', - label: { attach: 'Popularity' } + x: ['Genres'], + label: ['Popularity'] }, - color: 'Kinds' + color: ['Kinds'] } }, 0 diff --git a/docs/tutorial/shorthands_store/09.js b/docs/tutorial/shorthands_store/09.js index 6f540773e..ad162bab8 100644 --- a/docs/tutorial/shorthands_store/09.js +++ b/docs/tutorial/shorthands_store/09.js @@ -5,9 +5,9 @@ chart.animate({ align: 'stretch', channels: { y: ['Popularity', 'Kinds'], - x: 'Genres', - label: { attach: 'Popularity' } + x: ['Genres'], + label: ['Popularity'] }, - color: 'Kinds' + color: ['Kinds'] } })