图表在ng2-google-charts中调整大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图表在ng2-google-charts中调整大小相关的知识,希望对你有一定的参考价值。
我使用此文档https://www.npmjs.com/package/ng2-google-charts创建了一个图表。
<google-chart style="height: 100%!important; width: 80%!important;" [data]="pieChartData"></google-chart>
答案
您可以在选项中指定宽度和高度的值。但它没有响应。
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},
};
以上是关于图表在ng2-google-charts中调整大小的主要内容,如果未能解决你的问题,请参考以下文章