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'] } })