storybook/docs/snippets/vue/histogram-story.2.js.mdx
2022-09-07 16:39:26 +01:00

28 lines
671 B
Plaintext

```js
// Histogram.stories.js
import Histogram from './Histogram.vue';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Histogram',
component: Histogram,
};
const Template = (args, { argTypes }) => ({
components: { Histogram },
props: Object.keys(argTypes),
template: '<Histogram v-bind="$props" v-on="$props" />',
});
export const Default = Template.bind({});
Default.args = {
dataType: 'latency',
showHistogramLabels: true,
histogramAccentColor: '#1EA7FD',
label: 'Latency distribution',
};
```