Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
carysmills committed Dec 13, 2024
1 parent a875d17 commit 61ef633
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/polaris-viz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

### Fixed

- Bar chart animation when value goes from positive to negative or vice versa

### Added

- Added support for responsive legends in `<LineChartRelational />`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export const Template: Story<BarChartProps> = (args: BarChartProps) => {

return (
<React.Fragment>
<button onClick={() => setFirstValNegative(!firstValNegative)}>change data</button>
<button onClick={() => setFirstValNegative(!firstValNegative)}>
change data
</button>
<BarChart {...args} data={data} />
</React.Fragment>
);
Expand Down

0 comments on commit 61ef633

Please sign in to comment.