File size: 1,565 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import { Box } from "../src"
export default {
title: "Charts / Area Chart",
decorators: [
(Story: any) => (
<Box p="10">
<Story />
</Box>
),
],
}
export { AreaChartBasic as Basic } from "compositions/examples/charts/area-chart-basic"
export { AreaChartFillWithValue as FillWithValue } from "compositions/examples/charts/area-chart-fill-with-value"
export { AreaChartPercent as Percent } from "compositions/examples/charts/area-chart-percent"
export { AreaChartWithAxisLabel as AxisLabel } from "compositions/examples/charts/area-chart-with-axis-label"
export { AreaChartWithDashedArea as DashedArea } from "compositions/examples/charts/area-chart-with-dashed-area"
export { AreaChartWithDots as Dots } from "compositions/examples/charts/area-chart-with-dots"
export { AreaChartWithGradient as Gradient } from "compositions/examples/charts/area-chart-with-gradient"
export { AreaChartWithNulls as Nulls } from "compositions/examples/charts/area-chart-with-nulls"
export { AreaChartWithPointLabel as PointLabel } from "compositions/examples/charts/area-chart-with-point-label"
export { AreaChartWithReferenceArea as ReferenceArea } from "compositions/examples/charts/area-chart-with-reference-area"
export { AreaChartWithReferenceLines as ReferenceLines } from "compositions/examples/charts/area-chart-with-reference-lines"
export { AreaChartWithTypes as Types } from "compositions/examples/charts/area-chart-with-types"
export { AreaChartWithValueAxis as ValueAxis } from "compositions/examples/charts/area-chart-with-value-axis"
|