如何在android中设置条形图的设备高度和宽度
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了它。我们必须像这样设置视口
I got it. We have to set the viewport like this