Skip to content

Commit

Permalink
typo fix for showDuplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
junedchhipa committed Oct 14, 2024
1 parent a7ee8bf commit fc02faa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/axes/YAxis.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default class YAxis {
y: lY,
text:
existingYLabels.includes(val) &&
!w.config.yaxis[realIndex].labels.showDuplicate
!w.config.yaxis[realIndex].labels.showDuplicates
? ''
: val,
textAnchor,
Expand Down
2 changes: 1 addition & 1 deletion types/apexcharts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ type ApexYAxis = {
decimalsInFloat?: number
labels?: {
show?: boolean
showDuplicate?: boolean
showDuplicates?: boolean
minWidth?: number
maxWidth?: number
offsetX?: number
Expand Down

0 comments on commit fc02faa

Please sign in to comment.