diff --git a/packages/polaris-viz/CHANGELOG.md b/packages/polaris-viz/CHANGELOG.md
index 5803a78a2..e5366a301 100644
--- a/packages/polaris-viz/CHANGELOG.md
+++ b/packages/polaris-viz/CHANGELOG.md
@@ -11,6 +11,12 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
- Fixed issue where `` bar width would be 1px when data changes from all 0 values to data with non-zero values.
+### Changed
+
+- Changed `` to include 0 or negative values in data.
+- Changed `` to show any number of data points.
+- Updated `` wrapper to take full height of container and center contents.
+
## [9.12.0] - 2023-09-19
- No updates. Transitive dependency bump.
diff --git a/packages/polaris-viz/src/components/DonutChart/Chart.tsx b/packages/polaris-viz/src/components/DonutChart/Chart.tsx
index efd8b7962..e8d861d4e 100644
--- a/packages/polaris-viz/src/components/DonutChart/Chart.tsx
+++ b/packages/polaris-viz/src/components/DonutChart/Chart.tsx
@@ -115,7 +115,11 @@ export function Chart({
const {height, width, legend, setLegendDimensions, isLegendMounted} =
useLegend({
+<<<<<<< HEAD
data: [{series: data.slice(0, 5), shape: 'Bar'}],
+=======
+ data: [{series: data, shape: 'Bar'}],
+>>>>>>> d81f02a4 (Donut Chart UX updates)
dimensions,
showLegend,
direction: legendDirection,