gpt4 book ai didi

javascript - Google 图表 - 在 x 和 y 标签上拉伸(stretch)图表

转载 作者:行者123 更新时间:2023-11-30 20:05:33 27 4
gpt4 key购买 nike

我正在使用 google graph 设计图表。我不需要 x 和 y 轴上的标签,所以我通过设置以下选项来隐藏它们:

var options = {
hAxis: {
baselineColor: 'none',
ticks: [],
position: 'none',
fontsize: 0 // do not do anything
},
vAxis: {
baselineColor: 'none',
ticks: [],
position: 'none',
fontsize: 0 // do not do anything
}
};

我的图表目前是这样的:

enter image description here

我想将它拉伸(stretch)到元素的整个宽度和高度。这可能吗?

最佳答案

您可以使用 chartArea 选项...

var options = {
chartArea: {
height: '100%',
width: '100%',
},
height: '100%',
width: '100%',
...

请参阅以下工作片段...

google.charts.load('current', {
packages:['corechart']
}).then(function () {
var data = google.visualization.arrayToDataTable([
['X', 'Y'],
[0, 5],
[1, 6],
[2, 7],
[3, 5]
]);

var options = {
chartArea: {
height: '100%',
width: '100%',
},
height: '100%',
width: '100%',
hAxis: {
baselineColor: 'none',
ticks: [],
position: 'none',
fontsize: 0 // do not do anything
},
vAxis: {
baselineColor: 'none',
ticks: [],
position: 'none',
fontsize: 0 // do not do anything
}
};

var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
});
<script src="https://www.gstatic.com/charts/loader.js"></script>
<div id="chart_div"></div>

关于javascript - Google 图表 - 在 x 和 y 标签上拉伸(stretch)图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52970825/

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