Better ratio for charts

This commit is contained in:
Alfred Melch 2019-08-10 20:52:01 +02:00
parent 33501135e6
commit d6a1c9af4f

View File

@ -63,7 +63,7 @@ class WasmVsJsChart extends React.Component {
<Line
ref={ref => (this.ref = ref)}
height={400}
width={400}
width={600}
data={data}
options={options}
/>
@ -152,7 +152,7 @@ class WasmStackChart extends React.Component {
<Bar
ref={ref => (this.ref = ref)}
height={400}
width={400}
width={600}
data={data}
options={options}
/>
@ -181,7 +181,7 @@ class JsStackChart extends React.Component {
<Bar
ref={ref => (this.ref = ref)}
height={400}
width={400}
width={600}
data={data}
options={options}
/>