Can#39;t make chart js responsive(无法使图表 js 响应)
问题描述
很抱歉,如果我错过了解决问题的任何方法,我已经阅读并尝试了许多解决方案,但没有一个适合该问题.
sorry if I missed anything to fix my issue, I've read and tried many solutions without any of them being adapted to the problem.
我在一个页面上有多个图表(来自 chart.js),但我无法成功地让它们响应,尽管:
I have several charts (from chart.js) on a single page, but I can't succeed to make them responsive, despite :
responsive: true,
我能得到的最好的响应式显示是在扩大画布宽度和高度时,但在桌面版本中,图表会显示整个屏幕.
The best responsive display I could get was when enlarging canvas width and height, but on the desktop version charts were displayed the entire screen.
这是一个 fiddle.net
有人帮我吗?非常感谢.
Anybody to help me ? Thank you very much.
推荐答案
答案是:
1.在画布周围添加一个 div
例如:
<div class="wrapper">
<canvas width="600" height="250"></canvas>
</div>
<强>2.为css中的div类添加高度
.wrapper {
height: 500px !important;
}
(根据需要调整响应式渲染的高度)
(adjust height as you wish the responsive rendering)
这篇关于无法使图表 js 响应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法使图表 js 响应
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01