我一直在我的网站上使用 gauge.js 来绘制我网站上的销售数量,但是当我的值超过设置的最大限制时,仪表再次出现,做了一些研究,发现我需要设置我的 ' limitMax' 为真,它应该可以解决问题。但它没有任何想法吗?
这是我的 JS:
<script>
var opts1 = {
lines: 12,
angle: 0,
lineWidth: 0.4,
pointer: {
length: 0.75,
strokeWidth: 0.042,
color: '#1D212A'
},
limitMax: 'true',
colorStart: '#27ABE2',
colorStop: '#27ABE2',
strokeColor: '#F0F3F3',
generateGradient: true
};
var target = document.getElementById('foo'),
gauge1 = new Gauge(target).setOptions(opts1);
gauge1.maxValue = 100000;
gauge1.animationSpeed = 10;
gauge1.set(<?php echo $depotSales['TotalSales']; ?>);
</script>
我还尝试将值包装在 if 语句中以强制它为 100000 但仍然看不到,这里是:
<?php
$maxValue = $depotSales['TotalSales'];
if(($maxValue > 100000)){
$maxValue == 100000;
}else{
$maxValue == $depotSales['TotalSales'];
}
?>