I am unable to display label separately for my graph.
const Demo = () => (
<Box>
{['bar', 'circle'].map(type => (
<Box key={type} margin={{ bottom: 'xsmall' }}>
<Meter
type={type}
size='small'
values={[
{ value: 60, label: 'sixty', onClick: () => alert('60') },
]}
/>
</Box>
))}
</Box>
);
render(<Demo />);
here, it doesn't display label: sixty on side of the graph. Would you suggest me how do i get this one displayed. Thanks.