Google Charts列宽(以像素为单位)

时间:2013-08-29 10:39:35

标签: google-visualization

我已将条形图的宽度设置为580px。图表溢出视图窗口中的区域的问题。是否可以减小图表区域中列的大小以减小整体图表大小?我的意思是可以更改每列的每像素数的比例,以便例如280数字显示在更少的像素空间中?

Google Chart

1 个答案:

答案 0 :(得分:0)

您可以使用自适应BarChart。

var options = {
  width: "100%", //adjusts according to the screen size 
  height: 500,
  bar: { groupWidth: "75%" },
  legend: { position: 'right', textStyle: { color: 'black' } },
  isStacked: true,
  vAxis: { textStyle: { color: 'black' } },
  hAxis: { textStyle: { color: 'black' }, format: ' #,##0.00' },
  chartArea: { width: "50%", height: "70%" }};

function resizeCharts() {
   // redraw charts, dashboards, etc here
   chart.draw(dadosGrafico, options);}

$(window).resize(resizeCharts);