mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
27 lines
658 B
Plaintext
27 lines
658 B
Plaintext
```md
|
|
<!-- Histogram.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Histogram } from './Histogram';
|
|
|
|
<Meta title="Histogram" component={Histogram} />
|
|
|
|
<!--
|
|
👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
See https://storybook.js.org/docs/7.0/react/api/csf
|
|
to learn how to use render functions.
|
|
-->
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="Default"
|
|
args={{
|
|
dataType: 'latency',
|
|
showHistogramLabels: true,
|
|
histogramAccentColor: '#1EA7FD',
|
|
label: 'Latency distribution',
|
|
}}
|
|
render={(args) => <Histogram {...args} />} />
|
|
</Canvas>
|
|
``` |