Skip to content

dev: bump apexcharts from 5.16.0 to 7.1.0 - #8027

Closed
dependabot[bot] wants to merge 1 commit into
v3.37from
dependabot/npm_and_yarn/apexcharts-7.1.0
Closed

dev: bump apexcharts from 5.16.0 to 7.1.0#8027
dependabot[bot] wants to merge 1 commit into
v3.37from
dependabot/npm_and_yarn/apexcharts-7.1.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps apexcharts from 5.16.0 to 7.1.0.

Release notes

Sourced from apexcharts's releases.

💎 Version 7.1.0

A minor release built around four new chart types: streamgraph, waterfall, dumbbell and raincloud. Each is a thin layer over a renderer the library already trusts (rangeArea, rangeBar, violin), so they arrive with tooltips, legends, animations, exports and zooming already working, and they cost the default bundle little: streamgraph, waterfall and dumbbell together add about 12 KB gzipped. Raincloud is a Premium add-on and adds nothing unless you load it.

Also new: chart.print lays the chart out for the printed sheet. And six fixes, several of them years old.

gzip
7.0.0 default bundle 252,005 B
7.1.0 default bundle 264,326 B

No breaking changes. Upgrading is npm install apexcharts@7.1.0.

✨ New

Streamgraph

chart.type: 'streamgraph' stacks the series as flowing bands around a baseline chosen to keep the whole picture readable: the baseline sits where the bands wiggle least, curves are monotoneCubic by default so a band never overshoots its data, and each band's name is drawn inside it, sized to the room that band actually has. Hovering a band fades the others; the legend and tooltip work as on any axis chart.

new ApexCharts(el, {
  chart: { type: 'streamgraph' },
  series: [
    { name: 'Drama',  data: [{ x: '2024-01-01', y: 32 }, /* ... */] },
    { name: 'Comedy', data: [/* ... */] },
  ],
}).render()

In the default bundle. For the lean-core channel it is import 'apexcharts/streamgraph' or dist/features/streamgraph.js.

Waterfall

chart.type: 'waterfall' accumulates the running total for you: the series holds the deltas, and a point flagged isSubtotal or isTotal draws the running total from zero at that position. Connectors bridge each bar to the next, and rising, falling and total bars take their own colors. Requested in #847.

series: [{
  name: 'Operating income',
  data: [
    { x: 'Net revenue',        y:  8786000 },
    { x: 'Cost of sales',      y: -2786000 },
    { x: 'Gross profit',       isSubtotal: true },
    { x: 'Operating expenses', y: -1786000 },
    { x: 'Operating income',   isTotal: true },
  ],
}]

In the default bundle; apexcharts/waterfall / dist/features/waterfall.js for lean-core.

Dumbbell

... (truncated)

Commits
  • cff2224 release: 7.1.0
  • d60d05f chore: bump version to 7.1.0
  • a09e04f fix(tooltip): resolve the hovered index past a series' leading nulls
  • b068f68 feat(streamgraph): monotoneCubic by default, and a demo of a burst
  • 770162a feat(streamgraph): size each band's name to the band, and a dense demo to sho...
  • 17e624d feat(streamgraph): fade the other bands on hover, instead of outlining one
  • c650886 feat(streamgraph): give the surface a legend to click and a band to point at
  • 79783ba feat(raincloud): the sample, its shape and its summary in one look
  • f63d52a feat(streamgraph): put the baseline where the bands read flattest
  • 62d7661 Merge branch 'main' of https://github.com/apexcharts/apexcharts.js
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [apexcharts](https://github.com/apexcharts/apexcharts.js) from 5.16.0 to 7.1.0.
- [Release notes](https://github.com/apexcharts/apexcharts.js/releases)
- [Commits](apexcharts/apexcharts.js@v5.16.0...v7.1.0)

---
updated-dependencies:
- dependency-name: apexcharts
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 7, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 7, 2026 23:00
@dependabot
dependabot Bot requested a review from mjamescompton September 7, 2026 23:00
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 7, 2026
@mjamescompton

Copy link
Copy Markdown
Contributor

@ryaplots assuming this can not be updated

@dependabot ignore this major version

@dependabot dependabot Bot closed this Sep 8, 2026
@dependabot @github

dependabot Bot commented on behalf of github Sep 8, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you about version 7.x.x again, unless you re-open this PR.

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/apexcharts-7.1.0 branch September 8, 2026 09:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant