gpt4 book ai didi

javascript - 谷歌图表的动态样式

转载 作者:行者123 更新时间:2023-11-27 23:46:40 24 4
gpt4 key购买 nike

我正在尝试使用输入字段中的值动态更新 google-chart 指令的宽度和高度。宽度和高度未更新。

Plunker

$scope.height = "300"
$scope.width = "300"
$scope.cssStyle = "height:" + $scope.height+ "px; height:" + $scope.width + "px";

最佳答案

使用 chart.options 更新 google-chart 属性,例如 titlewidthheight 等。

通过更改 chart.options 的值,无需更改 div 的宽度和高度。

使用ng-change更新chat.options的值

通过添加 ng-change 更新 input 元素

<input type="text" value="300px" ng-change="change()" ng-model="width"/>
<input type="text" value="300px" ng-change="change()" ng-model="height"/>

将以下change()函数添加到 Controller

$scope.change = function() {
$scope.chart.options = {
height: $scope.width,
width: $scope.height,
};
}

检查更新plunkr

关于javascript - 谷歌图表的动态样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33117096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com