Skip to content

Commit

Permalink
Merge pull request #4812 from rahulr-96/patch-2
Browse files Browse the repository at this point in the history
fixes #4811
  • Loading branch information
junedchhipa authored Nov 21, 2024
2 parents 2481295 + 9987f37 commit cb2918f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/tooltip/Labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ export default class Labels {

if (typeof yLbTitleFormatter !== 'function') {
yLbTitleFormatter = function (label) {
return label
// refrence used from line: 966 in Options.js
return label ? label + ': ' : ''
}
}

Expand Down

0 comments on commit cb2918f

Please sign in to comment.