That's right ! You're the best. I have another bug when I put the legend in the bottom, sometimes the abscisse labels disapear and chartArea was the solution too (thanks to height).
Thank you very much. FG On 6 juin, 16:22, asgallant <[email protected]> wrote: > Use the chartArea configuration option; try this in the playground: > > new > google.visualization.ColumnChart(document.getElementById('visualization')). > draw(data, > { > title:"Yearly Coffee Consumption by Country", > width:600, > height:400, > hAxis: {title: "Year"}, > legend: 'top', > chartArea: {width: 500, left: 80} > > }); > > chartArea.width sets the width of the chart area, chartArea.left sets how > far from the left edge to place it. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
