diff --git a/packages/lib/src/components/core/lume-chart-container/README.md b/packages/lib/src/components/core/lume-chart-container/README.md index d0155339..e40568b4 100644 --- a/packages/lib/src/components/core/lume-chart-container/README.md +++ b/packages/lib/src/components/core/lume-chart-container/README.md @@ -69,12 +69,13 @@ You can set up your chart with `lume-chart-container` like so: ### Props -| Name | Type | Default | Description | -| ----------------------- | --------------- | ------- | ----------------------------------------------------------- | -| `margins` | `Margins` | `{}` | Space around the chart. | -| `containerSize` | `ContainerSize` | `{}` | The calculated container size. | -| `transparentBackground` | `boolean` | `false` | Controls if the chart should have a transparent background. | -| `noMinSize` | `boolean` | `false` | Controls if the chart shouldn't have minimum width/height. | +| Name | Type | Default | Description | +| ----------------------- | ---------------------------- | ------------ | ----------------------------------------------------------- | +| `margins` | `Margins` | `{}` | Space around the chart. | +| `containerSize` | `ContainerSize` | `{}` | The calculated container size. | +| `transparentBackground` | `boolean` | `false` | Controls if the chart should have a transparent background. | +| `noMinSize` | `boolean` | `false` | Controls if the chart shouldn't have minimum width/height. | +| `orientation` | `'vertical' \| 'horizontal'` | `'vertical'` | The chart's orientation. | ### Events diff --git a/packages/lib/src/components/core/lume-chart-container/lume-chart-container.vue b/packages/lib/src/components/core/lume-chart-container/lume-chart-container.vue index 3ae23075..0dc030db 100644 --- a/packages/lib/src/components/core/lume-chart-container/lume-chart-container.vue +++ b/packages/lib/src/components/core/lume-chart-container/lume-chart-container.vue @@ -39,8 +39,10 @@