Stacked waffle
<Plot x={{ axis: 'top' }} color={{ legend: true }}>
<RuleY data={[0]} />
<WaffleY
{...groupX(
{
data: penguins,
x: 'island',
fill: 'species'
},
{ y: 'count' }
)} />
</Plot>