Chart legend labels cut off
Posted: Tue Apr 03, 2018 10:46 pm
I am showing a chart of Type Bar Graph. As you can see, the labels are very narrow, being cut off. How do I make it so that the whole label text is visible? I know that a tooltip appears on mouse hover. but as I use charts on a wallboard monitor without user interaction, this feature can't be used.
I googled a bit and saw that I'm not the only one facing this issue and found that adjusting the chartArea width option gives more space for labels and solved the problem for me.
Modified nuChart function:
I hope you can add this change to nuBuilder in some way. Or even add new options in the settings. Otherwise my changes will be lost on the next update.
I googled a bit and saw that I'm not the only one facing this issue and found that adjusting the chartArea width option gives more space for labels and solved the problem for me.
Modified nuChart function:
Code: Select all
var options = {
title : h,
vAxis : {title: y},
hAxis : {title: x},
seriesType : st,
isStacked : is,
chartArea : {left:"10%", width:"65%"} <--- added
};