Skip to content

Commit

Permalink
Merge pull request apexcharts#4760 from rosco54/createBorderRadiusArr…
Browse files Browse the repository at this point in the history
…_Fix

Fix createBorderRadiusArr
  • Loading branch information
junedchhipa authored Oct 15, 2024
2 parents abf93e3 + 7100b8e commit 387a4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charts/common/bar/Helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export default class Helpers {
w.config.plotOptions.bar.borderRadius <= 0

const numSeries = series.length
const numColumns = series[0].length
const numColumns = series[0]?.length | 0
const output = Array.from({ length: numSeries }, () =>
Array(numColumns).fill(alwaysApplyRadius ? 'top' : 'none')
)
Expand Down

0 comments on commit 387a4bf

Please sign in to comment.