Skip to content

Commit

Permalink
docs: simplify boxplot examples
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Nov 4, 2021
1 parent cdd387e commit 1b7c1f3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions packages/docs/docs/components/numbers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,21 @@ function Example() {

return (
<div>
<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} />
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} />
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} />
<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} />
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} />
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} />

<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} fill/>
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} fill/>
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} fill/>
<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} fill/>
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} fill/>
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} fill/>

<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} gradient/>
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} gradient/>
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} gradient/>
<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} gradient/>
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} gradient/>
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} gradient/>

<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} fill gradient/>
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} fill gradient/>
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} style={{ height: 25 }} fill gradient/>
<LineChart value={data[0]} scale={stats.scale} color={stats.color} format={stats.format} fill gradient/>
<LineChart value={data[1]} scale={stats.scale} color={stats.color} format={stats.format} fill gradient/>
<LineChart value={data[2]} scale={stats.scale} color={stats.color} format={stats.format} fill gradient/>
</div>
);
}
Expand Down

0 comments on commit 1b7c1f3

Please sign in to comment.