Skip to content

Releases: apexcharts/apexcharts.js

πŸ’Ž Version 3.8.3

21 Jul 12:01

Choose a tag to compare

🐞 Bug fixes

  • Fix browser crash for smaller values - fixes #672
  • Add check for existant series in updateOptions method - Thanks @MaxLeiter
  • Prevent NaN values in data-labels when stacked 100 total is 0 - fixes #669
  • Prevent cropping of datalabels by removing clippath attr - fixes #662
  • Remove delayed annotation display for scatter charts - fixes #685
  • Fix wrong date issue when using formatter - fixes #728

πŸ’Ž Version 3.8.2

07 Jul 19:44

Choose a tag to compare

πŸ†• Enhancements

  • Add marker events click and dblclick
  • Add toggleDataPointSelection method to exec - fixes #731
  • Enable discrete markers for radar charts - fixes #723

🐞 Bug fixes

  • Bug fixed in tooltip.enabledOnSeries - fixes #697
  • Bug fixed in appendSeries method when a series is appended to an empty initial series.
  • Annotation fix for string numeric x-axis - fixes #743
  • Turn off autoScaleYaxis for multi-axis charts - fixes #737
  • Disabled dropshadow for radial-bar charts in IE - fixes #703
  • Prevent yaxis alteration in a grouped chart while zooming - fixes #650

πŸ’Ž Version 3.8.1

07 Jul 19:41

Choose a tag to compare

πŸ†• Enhancements

  • Add a new param updateSyncCharts in updateOptions method to control whether the update method should also update the sibling charts which are in the group.
  • Add a decimal point to small values to prevent duplicate yaxis labels

🐞 Bug fixes

  • Invert text anchor for negative values to prevent inconsistent data-labels in stacked horizontal bar charts - Thanks @thijscrombeen
  • Fix multiple brush targets in synced charts - Thanks @AurelReb
  • Remove ID attribute to prevent duplication - fixes #691
  • Fix unexpected formatter applied in bar charts - fixes #666

Misc Changes

  • Add missing types - fixes #696

πŸ’Ž Version 3.8.0

09 Jun 12:42

Choose a tag to compare

πŸ†• Enhancements

  • A new method called resetSeries()added which resets the chart to its original data.
  • Recalculate height for pie, donut and radial-bar charts to prevent extra spacing - fixes #495, fixes #561, fixes 607

🐞 Bug fixes

  • Fixed SVGTextContentElement bug - fixes #624
  • Prevent negative attr issue when the chart is not rendered on DOM.
  • Fix bug when panning with autoScaleYaxis turned on - fixes #642
  • IE11 fix for radial-bar charts - fixes #660
  • Prevent cropped radial chart - fixes #647
  • Error fix in the pie when no series is present - fixes #620
  • Bug fix in a multi-yaxis chart when chart.stacked is true - fixes #625

πŸ”₯ Breaking Changes

  • The pie/donut/radialBar charts will have their heights recalculated to prevent additional spacings at the bottom. This might need adjustments in your existing pie charts if you have not specified a fixed height.

Misc Changes

  • Add missing types

πŸ’Ž Version 3.7.1

09 Jun 12:36

Choose a tag to compare

πŸ†• Enhancements

  • New method - toggleDataPointSelection to select/deselect a particular data point.
  • Allow null dataLabels if user want to display a custom text in place of null value - #633
  • Allow timestamps in labels and categories when using datetime xaxis

🐞 Bug fixes

  • Fix zooming issue when the mouse leaves the chart area - fixes #578 -
  • Yaxis scale for small values - out of bounds fix - fixes #622
  • Range annotations fix for horizontal bar chart - fixes #627
  • Small padding to bar charts in datetime xaxis - fixes #628
  • Move eventList to the constructor to prevent undefined - fixes #626
  • Fix pie chart issue A negative value is not valid when was happening in small pie donut chart on resizing - Thanks to @grinat

Misc Changes

  • Add Korean locales - Thanks @yangkun
  • Update issue templates to include React/Vue templates

πŸ’Ž Version 3.7.0

27 May 22:02

Choose a tag to compare

πŸ†• Enhancements

  • New property - chart.zoom.autoScaleYaxis when zoomed which changes the y-axis based on the zoom selection - fixes #246, #297, #566
  • Range annotations in category charts - fixes #600

🐞 Bug fixes

  • Prevent updating all grouped charts when exec is called - fixes #610
  • Prevent duplicate y-axis labels for small values in a multi-axis chart - fixes #619
  • RemoveEventlistener on destroy - fixes #612
  • Do not draw annotation for empty text - fixes #621

Misc Changes

πŸ’Ž Version 3.6.12

19 May 18:04

Choose a tag to compare

πŸ†• Enhancements

  • Heatmap new property - reverseNegativeShade - fixes #597
  • Allow hiding tooltip for specific series. New property tooltip.enabledOnSeries added - fixes #599

🐞 Bug fixes

  • Fixed first and the last bar out of area bounds fix - fixes #540
  • Duplicate y-axis labels fix - fixes #576, #fixes #588
  • To prevent CSS selector issue, replace class-name of a series to an HTML attribute - fixes #593
  • Annotations orientation fix when adding it dynamically - fixes #606
  • Prevent overflow of markers outside the drawing area
  • toggleSeries issue in multi-axis chart - fixes apexcharts/vue-apexcharts#91

Misc Changes

  • Add missing types
  • In real-time charts - provide another approach to reset data to preserve animation - fixes #605

πŸ’Ž Version 3.6.11

19 May 17:59

Choose a tag to compare

🐞 Bug fixes

  • Fix module augmentations issue caused by invalid export in types.

πŸ’Ž Version 3.6.10

19 May 17:58

Choose a tag to compare

πŸ†• Enhancements

  • Fill colors fill.colors accepts a function to modify color based on the value - fixes #568
  • In Donut charts, on legend click, show donut dataLabels - fixes #559

🐞 Bug fixes

  • yaxis labels rotation in horizontal bar chart - fixes #571
  • if x property in the data array is numeric, xaxis should be numeric - fixes #569
  • Radar chart dark polygons for the dark theme - fixes #558
  • Prevent drawing last cropped label in datetime x-axis - fixes #305

Misc Changes

  • Add new types
  • Update types to allow colors accept function

πŸ’Ž Version 3.6.9

28 Apr 18:09

Choose a tag to compare

πŸ†• Enhancements

  • Improve Rangebar chart animations
  • Add default label formatters for Rangebar charts
  • Allow drop shadow color to be different for each series - fix #551

🐞 Bug fixes

  • Prevent drawing background label in annotation if the text is empty - fixes #528
  • Ultra small values fix - fixes #553
  • Fix x-axis range issue when no labels are provided - fixes #491
  • Turn off x-axis rotation to prevent wrong y-axis values fixes #522
  • AppendSeries issue fix - fixes #546
  • In stacked bar charts, improved data label calculations.

Misc Changes

  • Unit test for exponential values added
  • Add new types
  • Rangebar and Timeline samples created