Google chart: how to make right side of the “white space” empty?

elgrantyncho

New Member
I use Google Chart in order to build some graphichs together with text description.On the first iteration I used small "title" for each graph type and that was looking well. But at some point I've added total value for each graph... and text started to be wrapped.Question 1: Is there any way to prevent text wrapping (see the right portion of the chart)?I've tried put text inside of "..." but Google chart just convert these tags into pure text.Question 2: Is there any way to move whole graph to the left and consume unused area so the right part will have more space for text?Any thoughts are welcome! Probably there is any other solution that will work for me?P.S. Please see how that looks right now on the screenshot:
pIILy.png
P.P.S Here is JS code I use to display the graphs\[code\]<script type="text/javascript" src="http://stackoverflow.com/js/jquery.js"></script><script type="text/javascript" src="http://stackoverflow.com/js/google/jsapi.js"></script><script type="text/javascript"> google.load("visualization", "1", { packages: ["corechart"] }); google.setOnLoadCallback(drawChart); var expArray = [<%=ExperienceArray %>]; function drawChart() { if (expArray.length > 0) { $('#chart_div').show(); $('#MessagesDiv').hide(); var total = 0, train = 0, match = 0, ageing = 0; for (var i = 0; i < expArray.length; i++) { total += expArray[1]; train += expArray[2]; match += expArray[3]; ageing += expArray[4]; } var data = http://stackoverflow.com/questions/15754989/google.visualization.arrayToDataTable([ ['
 
Back
Top