Skip to content

Commit

Permalink
fix sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
Holtz Yan authored and Holtz Yan committed Jul 28, 2023
1 parent fd44412 commit 60ccdfe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions viz/RadarBasic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const rootElement = document.getElementById('root');
ReactDOM.render(
<Radar
data={data}
width={width}
height={height}
width={500}
height={500}
axisConfig={[
{ name: 'speed', max: 10 },
{ name: 'acceleration', max: 10 },
Expand Down
4 changes: 2 additions & 2 deletions viz/RadarGridOnly/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const rootElement = document.getElementById('root');
ReactDOM.render(
<Radar
data={data}
width={width}
height={height}
width={500}
height={500}
axisConfig={[
{ name: 'speed', max: 10 },
{ name: 'acceleration', max: 10 },
Expand Down
4 changes: 2 additions & 2 deletions viz/RadarMultipleGroups/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const rootElement = document.getElementById('root');
ReactDOM.render(
<Radar
data={data}
width={width}
height={height}
width={500}
height={500}
axisConfig={[
{ name: 'speed', max: 10 },
{ name: 'acceleration', max: 10 },
Expand Down

0 comments on commit 60ccdfe

Please sign in to comment.