storybook/stories/sunburst/sunburst.stories.tsx (38 lines of code) (raw):
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
export default {
title: 'Sunburst',
};
export { Example as mostBasic } from './1_simple.story';
export { Example as valueFormatted } from './2_value_formatted.story';
export { Example as valueFormattedWithCategoricalColorPalette } from './3_value_formatted_2.story';
export { Example as withFillLabels } from './4_fill_labels.story';
export { Example as donutChartWithFillLabels } from './5_donut.story';
export { Example as withDirectTextLabels } from './6_pie_chart_labels.story';
export { Example as withLinkedTextLabels } from './6_pie_chart_linked_labels.story';
export { Example as someZeroValueSlice } from './7_zero_slice.story';
export { Example as sunburstWithTwoLayers } from './8_sunburst_two_layers.story';
export { Example as sunburstWithThreeLayers } from './9_sunburst_three_layers.story';
export { Example as withTwoSlices } from './10_2_slice.story';
export { Example as largeAndSmallSlices } from './11_small_large.story';
export { Example as veryLargeAndSmall } from './12_very_small.story';
export { Example as nearFullNearEmpty } from './13_empty.story';
export { Example as fullAndZeroSlices } from './14_full_zero.story';
export { Example as singleSlice } from './15_single.story';
export { Example as singleSunburst } from './15_single_sunburst.story';
export { Example as singleSmallSice } from './16_single_small.story';
export { Example as singleVerySmall } from './17_single_very_small.story';
export { Example as noSlice } from './18_no_sliced.story';
export { Example as negative } from './19_negative.story';
export { Example as totalZero } from './20_total_zero.story';
export { Example as highNumberOfSlices } from './21_high_pie.story';
export { Example as counterClockwiseSpecial } from './22_counter_clockwise.story';
export { Example as clockwiseNoSpecial } from './23_clockwise.story';
export { Example as linkedLabelsOnly } from './24_linked_label.story';
export { Example as noLabels } from './25_no_labels.story';
export { Example as percentage } from './26_percentage.story';
export { Example as heterogeneous } from './27_heterogeneous_depth.story';
export { Example as notANumber } from './28_not_a_number.story';
export { Example as customStroke } from './29_custom_stroke.story';
export { Example as largestCircle } from './30_largest_circle.story';
export { Example as boldLinkValue } from './31_bold_link_value.story';
export { Example as customTooltip } from './32_custom_tooltip.story';
export { Example as orderedSlices } from './33_ordered_slices.story';