storybook/docs/snippets/web-components/histogram-story.js.mdx
2023-01-16 12:58:08 +00:00

18 lines
285 B
Plaintext

```js
// Histogram.stories.js
export default {
title: 'Histogram',
component: 'histogram-component',
};
export const Default = {
args: {
dataType: 'latency',
showHistogramLabels: true,
histogramAccentColor: '#1EA7FD',
label: 'Latency distribution',
},
};
```