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.
chart_org.png
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
};
chart_after.png
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.
You do not have the required permissions to view the files attached to this post.