2

我一直在我的网站上使用 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'];
  }
?>
4

1 回答 1

0

将我的 PHP 更改为以下内容并强制覆盖:

<?php 
  $maxValue = $depotSales['TotalSales'];
  if($maxValue > 100000){
      $maxValue = 100000;
  }else{
      $maxValue = $depotSales['TotalSales'];
  }
?>

但是,如果有人可以提供不需要这样的覆盖的答案,请发布答案。

于 2016-12-02T15:45:42.273 回答