Reputation: 1149
Hi my goal is to display fully the label from left (-100%) and right (100.2%), Currently it is truncated when the percentage is above or equal to three digit.
I want to fix this using HighCharts properties. any help please.
Upvotes: 1
Views: 36
Reputation: 4769
Use this:
labels: {
align: 'left',
style: {
textOverflow:'none',
whiteSpace: 'nowrap'
}
}
Upvotes: 0