如何在android中设置条形图的设备高度和宽度

发布于 2025-01-01 12:44:26 字数 776 浏览 1 评论 0原文

我正在使用phonegap 来构建我的应用程序。我正在使用flot 来创建图表。 这是我的 javascript 代码

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="flot/jquery.js"></script>
<script type="text/javascript" src="flot/jquery.flot.js"></script>
<script type="text/javascript" src="flot/jquery.flot.stack.js"></script>
<script type="text/javascript" src="flot/jquery.flot.pie.js"></script>    
</head>
<body>    
<div id="pie-example" style="width:300px;height:200px;"></div>
<script type="text/javascript" src="pie_chart.js"></script>
</body>
</html>

在这段代码中,我给出了条形图的宽度和高度。我想给出设备的高度和宽度。如何做到这一点?

I am using phonegap to build my app.I am using flot to create charts.
here is my javascript code

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="flot/jquery.js"></script>
<script type="text/javascript" src="flot/jquery.flot.js"></script>
<script type="text/javascript" src="flot/jquery.flot.stack.js"></script>
<script type="text/javascript" src="flot/jquery.flot.pie.js"></script>    
</head>
<body>    
<div id="pie-example" style="width:300px;height:200px;"></div>
<script type="text/javascript" src="pie_chart.js"></script>
</body>
</html>

In this code i am giving the width and height of the bar graph.I want to give device height and width.How to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经暖 2025-01-08 12:44:26

我得到了它。我们必须像这样设置视口

<meta name="viewport" content="width=default-width; user-scalable=no" />

I got it. We have to set the viewport like this

<meta name="viewport" content="width=default-width; user-scalable=no" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文