Skip to content

Bump apexcharts from 5.12.0 to 5.16.0#8353

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/apexcharts-5.16.0
Closed

Bump apexcharts from 5.12.0 to 5.16.0#8353
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/apexcharts-5.16.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 4, 2026

Copy link
Copy Markdown
Contributor

Bumps apexcharts from 5.12.0 to 5.16.0.

Release notes

Sourced from apexcharts's releases.

💎 Version 5.16.0

✨ Features

Drilldown navigation (opt-in)

Click a data point to drill into a child level, with a breadcrumb trail and back navigation. Supported on bar, column, pie, donut, treemap, and heatmap. Tree-shakeable: import the feature and enable it.

import ApexCharts from 'apexcharts'
import 'apexcharts/features/drilldown'
const options = {
chart: {
type: 'bar',
drilldown: {
enabled: true,
series: [
{ id: 'fruits', name: 'Fruits', data: [{ x: 'Apple', y: 40 }, { x: 'Banana', y: 30 }] },
],
// breadcrumb: { show: true, position: 'top-left', rootLabel: 'All' },
// animation: { zoomFromPoint: true }, // unfold the child from the clicked point
// onDrillDown: async ({ point }) => fetchChild(point), // async level loading
},
},
series: [{ name: 'Categories', data: [{ x: 'Fruits', y: 70, drilldown: 'fruits' }, { x: 'Vegetables', y: 55 }] }],
}

  • Child levels are declared inline in chart.drilldown.series, or fetched on demand via onDrillDown.
  • Breadcrumb is configurable (position, separator, rootLabel, formatter) and includes a back-arrow.
  • Optional animation.zoomFromPoint unfolds the child level outward from the clicked point (and folds back on drill-up).

Pie / donut external (outer) data labels with leader lines (opt-in)

Render each slice's name outside the pie, connected by a leader line, so users no longer need to map legend colors back to slices. Pie and donut only (ignored for polarArea). The percentage keeps rendering inside the slice.

plotOptions: {
  pie: {
    dataLabels: {
      external: {
        show: true,
        // formatter: (name, { percent }) => [name, percent.toFixed(1) + '%'],
        // connector: { show: true, width: 1, length: 16, gap: 6 },
      },
    },
  },
}

Scatter jitter: strip plots and overplotting (opt-in)

Spread overlapping scatter points apart. Two uses, one engine. Offsets are in axis units, deterministic (SSR-safe), and applied to the drawn positions only, so tooltips still show the true values.

... (truncated)

Commits
  • 548d828 release: 5.16.0
  • 2e00b44 fix(test): remove unused loadChart fixture arg in pie-name-labels spec
  • aac162f feat(scatter): jitter support for strip plots and overplotting
  • 3501fca feat(pie): external (outer) data labels with leader lines for pie/donut
  • b888a65 docs(drilldown): add pie/donut drilldown demo
  • a238e84 feat(drilldown): treemap + heatmap support, trigger-point expand, drill routi...
  • 8bdfc4f fix(drilldown): reset legend-collapse state on drill; add breadcrumb back-arrow
  • da0a907 feat(drilldown): add opt-in drilldown navigation feature (Phase 1)
  • a25b339 Merge branch 'main' of https://github.com/apexcharts/apexcharts.js
  • 7bcd5ce feat(dataReducer): downsample rangeArea/rangeBar via min-max bucket aggregation
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 4, 2026
@github-actions
github-actions Bot enabled auto-merge July 4, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apexcharts-5.16.0 branch 22 times, most recently from 8eb534a to 0aed107 Compare July 9, 2026 05:41
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apexcharts-5.16.0 branch 23 times, most recently from a6c5935 to a71cc48 Compare July 17, 2026 04:23
Bumps [apexcharts](https://github.com/apexcharts/apexcharts.js) from 5.12.0 to 5.16.0.
- [Release notes](https://github.com/apexcharts/apexcharts.js/releases)
- [Commits](apexcharts/apexcharts.js@v5.12.0...v5.16.0)

---
updated-dependencies:
- dependency-name: apexcharts
  dependency-version: 5.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apexcharts-5.16.0 branch from a71cc48 to ff7a427 Compare July 17, 2026 04:51
@sonarqubecloud

Copy link
Copy Markdown

@dependabot @github

dependabot Bot commented on behalf of github Jul 18, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #8431.

@dependabot dependabot Bot closed this Jul 18, 2026
auto-merge was automatically disabled July 18, 2026 00:07

Pull request was closed

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/apexcharts-5.16.0 branch July 18, 2026 00:07
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.

0 participants