Skip to content

Commit

Permalink
Merge pull request #291 from vizzuhq/showcases
Browse files Browse the repository at this point in the history
documentation: showcases for vizzu 0.9.3 fixed
  • Loading branch information
veghdev committed Dec 21, 2023
2 parents ecd7096 + aa0df7d commit b7b4c3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/showcases/musicformats/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ Promise.all([csv2JsLoaded, vizzuLoaded]).then((results) => {
x: { set: ['Year'] },
y: {
set: ['Revenue', 'Format'],
range: { min: null, max: null }
range: { min: 'auto', max: 'auto' }
},
color: { set: ['Format'] }
},
Expand Down
6 changes: 3 additions & 3 deletions docs/showcases/nadal/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Promise.all([csv2JsLoaded, vizzuLoaded]).then((results) => {
config: {
y: {
set: ['Player', 'Tournament', 'Level'],
range: { max: null, min: null }
range: { max: 'auto', min: 'auto' }
},
title: 'Rafa won the same Grand Slam title the most times',
color: 'Level',
Expand Down Expand Up @@ -268,7 +268,7 @@ Promise.all([csv2JsLoaded, vizzuLoaded]).then((results) => {
config: {
y: {
set: ['Player', 'Tournament', 'Level'],
range: { max: null, min: null }
range: { max: 'auto', min: 'auto' }
},
x: ['Count'],
title: '',
Expand All @@ -289,7 +289,7 @@ Promise.all([csv2JsLoaded, vizzuLoaded]).then((results) => {
}
},
config: {
y: { set: ['Player'], range: { max: null, min: null } },
y: { set: ['Player'], range: { max: 'auto', min: 'auto' } },
x: ['Count', 'Tournament', 'Level', 'Total_GS'],
title: 'Rafa also leads in the number of total Grand Slams won'
}
Expand Down

0 comments on commit b7b4c3a

Please sign in to comment.