在ng2-google-charts中调整图表大小

时间:2018-09-17 11:22:25

标签: charts google-visualization angular5

我已使用此文档https://www.npmjs.com/package/ng2-google-charts创建了一个图表。

<google-chart style="height: 100%!important; width: 80%!important;" [data]="pieChartData"></google-chart>

对于大屏幕而言,它显得很小。无论如何,我可以为大屏幕调整大小吗? enter image description here

1 个答案:

答案 0 :(得分:1)

您可以仅在选项中指定宽度和高度的值。但是它没有响应。

pieChartData =  {
  chartType: 'PieChart',
  dataTable: [
    ['Task', 'Hours per Day'],
    ['Work',     11],
    ['Eat',      2],
    ['Commute',  2],
    ['Watch TV', 2],
    ['Sleep',    7]
  ],
  options: {'title': 'Tasks', 
            'width': 700,
            'height': 600},
};