Stacked Unit Chart
<Plot
marginLeft={60}
x={{ label: 'Frequency →' }}
y={{ label: undefined }}
color={{
legend: true,
scheme: $isDark ? 'magma' : 'reds'
}}>
<BarX
data={penguins}
y="species"
fill="body_mass_g"
sort="body_mass_g"
x={1}
insetLeft={1} />
</Plot>