ChartJS 是一个基于 HTML5 Canvas 的 JavaScript 图表库,用于创建交互式图表。它支持多种图表类型,如折线图、柱状图、饼图、雷达图等。由于其轻量级和易于使用的特性,ChartJS 在各种 Web 应用中得到了广泛应用。
原因:小屏幕设备的分辨率较低,导致图表渲染时出现显示问题。
解决方法:
responsive: true
来确保图表能够自动调整大小。<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChartJS on Small Screen</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
@media (max-width: 600px) {
.chart-container {
width: 100%;
height: 300px;
}
}
</style>
</head>
<body>
<div class="chart-container">
<canvas id="myChart"></canvas>
</div>
<script>
var ctx = document.getElementById('myChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
responsive: true,
maintainAspectRatio: false
}
});
</script>
</body>
</html>
通过以上方法,可以确保在小屏幕上也能获得良好的图表显示效果。
领取专属 10元无门槛券
手把手带您无忧上云