github apexcharts/apexcharts.js v5.10.3
💎 Version 5.10.3

4 hours ago

Bug Fixes

  • SSR: Bar/column charts rendered duplicate elements in renderToString() (1b4bcb1f)

    SSRElement.appendChild and insertBefore were unconditionally pushing the
    child onto the children array without checking whether the child already had a
    parent. Because Bar.js creates elDataLabelsWrap, elGoalsMarkers, and
    elBarShadows once per series but calls elSeries.add() on every data-point
    iteration, the SSR virtual DOM accumulated N×N bar paths and datalabel groups
    instead of N. The fix mirrors standard browser DOM move semantics: if a node
    already has a parent it is detached from that parent before being appended.
    This affects both appendChild and insertBefore.

Don't miss a new apexcharts.js release

NewReleases is sending notifications on new releases.