Legend Label Size / Line Break Issue

I must be silly for not being able to find this in the documentation, but it seems that the legend labels are forced to line break after 14 characters, no matter how much space is available. Is there a way to adjust this? If not, is there a way to ensure that the first legend label does not spill over the second one? It appears that even though they’re forced to line break, the next legend label has no idea that the first has used a line break and they overlap. Please help!

You can increase the legend width by width property:

legend:{
width: 200,

}

To disable word wrap you may use the following css rule on a page:

.dhx_chart_legend_item{ white-space: nowrap; }

Thanks! Worked perfectly.