Skip to content

Commit

Permalink
max text item lenght to 40
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanPaulvanderHam committed Dec 12, 2024
1 parent 3beb1f4 commit dceca8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radar.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function radar_visualization(config) {
}
}

const maxLength = 25; //maximale lengte van de tekst
const maxLength = 40; //maximale lengte van de tekst
const displayText = d.id + ". " + d.label;
return truncateText(displayText, maxLength);
})
Expand Down

0 comments on commit dceca8a

Please sign in to comment.