javascript - Highcharts Pie chart longer text -


as example image displays, i'm having problems highcharts data labels in situation text longer. created jsfiddle example. solution limit length of string i.e. max 20 strings , put "..." end of text, longer text like: "another long text wit...". want find out different solution, question is: how solve long text issue occurs on hc pie chart? jsfiddle

[{                 name: "microsoft internet explorer looooooooooonggggggggggggg",                 y: 56.33             } 

enter image description here

you can add width: '100px' plotoptions > pie > style:

style: {     color: (highcharts.theme && highcharts.theme.contrasttextcolor) || 'black',     width: '100px' } 

working fiddle: https://jsfiddle.net/rfnawems/2/


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -