Skip to content

fix(deps): update dependency apexcharts to ^5.15.0#22

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/apexcharts-5.x
Jun 12, 2026
Merged

fix(deps): update dependency apexcharts to ^5.15.0#22
renovate[bot] merged 1 commit into
mainfrom
renovate/apexcharts-5.x

Conversation

@renovate

@renovate renovate Bot commented Jun 6, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
apexcharts (source) ^5.14.0^5.15.0 age confidence

Release Notes

apexcharts/apexcharts.js (apexcharts)

v5.15.0: 💎 Version 5.15.0

Compare Source

New Features

Violin chart type
Screenshot 2026-06-11 at 4 15 00 PM

A new, tree-shakeable chart.type: 'violin' that renders a kernel-density curve for each category, with an optional overlay of the individual observations ("jitter") that produced it.

chart: {
  type: 'violin',
},
plotOptions: {
  violin: {
    bandwidthScale: 1,       // multiplies the density-derived half-width
    normalize: 'individual', // 'individual' → each violin scaled to its own peak
                             // 'group'      → all violins share one scale (widths track density across categories)
    points: {
      show: true,
      shape: 'circle',        // 'circle' | 'square'
      size: 2.5,              // radius (px)
      jitter: 0.5,            // 0..1 fraction of the half-width to scatter within
      constrainToViolin: true,// clamp jitter to the density width at each value
      maxPoints: 3000,        // cap per violin; excess is stride-thinned
      opacity: 0.9,
      fillColor: 'series-dark',// 'series-dark' | 'series' | any literal colour
      strokeColor: '#fff',
      strokeWidth: 1,
      // optional colorScale: { colors: [...], min, max, steps } to colour each dot by value
    },
  },
},
  • Available as a tree-shakeable entry: import ApexCharts from 'apexcharts/violin', or via the full bundle.
  • Supports horizontal orientation and bimodal (multi-modal) densities.
  • The jitter overlay reveals gradually as the violin path animates in (no instant pop-in).
Box-plot jitter overlay
Screenshot 2026-06-11 at 4 15 45 PM

Box plots can now overlay the raw observations behind each box, via plotOptions.boxPlot.points. It's off by default and inert unless a data point supplies a points: number[] array, so existing box-plot charts are unchanged.

plotOptions: {
  boxPlot: {
    points: {
      show: true,
      shape: 'circle',  // 'circle' | 'square'
      size: 2.5,
      jitter: 0.5,      // 0..1 fraction of the box half-width to scatter within
      maxPoints: 3000,  // cap per box; excess is stride-thinned
      opacity: 0.9,
      fillColor: 'series-dark',
      strokeColor: '#fff',
      strokeWidth: 1,
    },
  },
},

Configuration

📅 Schedule: (in timezone Europe/Rome)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Jun 6, 2026
@renovate renovate Bot changed the title fix(deps): update dependency apexcharts to ^5.14.0 fix(deps): update dependency apexcharts to ^5.14.0 - autoclosed Jun 6, 2026
@renovate renovate Bot closed this Jun 6, 2026
@renovate renovate Bot deleted the renovate/apexcharts-5.x branch June 6, 2026 16:03
@renovate renovate Bot changed the title fix(deps): update dependency apexcharts to ^5.14.0 - autoclosed fix(deps): update dependency apexcharts to ^5.15.0 Jun 12, 2026
@renovate renovate Bot reopened this Jun 12, 2026
@renovate renovate Bot force-pushed the renovate/apexcharts-5.x branch 3 times, most recently from 3e4f9b4 to 995af28 Compare June 12, 2026 20:02
@renovate renovate Bot force-pushed the renovate/apexcharts-5.x branch from 995af28 to b5db186 Compare June 12, 2026 20:13
@renovate renovate Bot merged commit 91baed8 into main Jun 12, 2026
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants