zoukankan      html  css  js  c++  java
  • echart Uncaught TypeError: Failed to execute 'createRadialGradient' on 'CanvasRenderingContext2D': The provided double value is non-finite.

          var setoption = {
            title: {},
            legend: {
              show: this.legendshow,
              data: [this.legend]
            },
            color: ['#ff960f'],
            toolbox: {
              show: this.showtoolbox,
              feature: {
                dataZoom: {},
                magicType: { type: ["line", "bar"] },
                restore: {},
                saveAsImage: {}
              }
            },
            xAxis: {
              data: this.$props.data.xdata,
              boundaryGap: boundarygap,
              axisTick: {
                show: false //隐藏Y轴刻度
              },
              axisLine: {
                show: false //隐藏Y轴线段
              },
              axisLabel: {
                textStyle: {
                  color: "#2c3e50"
                }
              }
            },
            grid: {
              left: 10,
              right: 10,
              bottom: this.bottom,
              top: this.top,
              containLabel: true
            },
    
            tooltip: {
              trigger: "axis",
              axisPointer: {
                type: "line"
              }
            },
            yAxis: {
              type: "value",
              axisLabel: {
                formatter: "{value} ",
                margin: 20,
                textStyle: {
                  color: "#2c3e50"
                }
              },
              axisTick: {
                show: false //隐藏Y轴刻度
              },
              axisLine: {
                show: false //隐藏Y轴线段
              },
              max: parseInt(max*1.4).toFixed(0) <=1?1:parseInt(max*1.4).toFixed(0)
            },
            series: this.seriesinit(max)
          };
    

      是yAxis的max小于1的时候导致报错   如图改成

    parseInt(max*1.4).toFixed(0) <=1?1:parseInt(max*1.4).toFixed(0)
  • 相关阅读:
    动态规划0-1背包问题
    在网页上加入运行代码的功能
    关于CSS基础框架的学习
    Hadoop综合大作业
    hive基本操作与应用
    用mapreduce 处理气象数据集
    熟悉常用的HBase操作,编写MapReduce作业
    爬虫大作业
    熟悉常用的HDFS操作
    数据结构化与保存
  • 原文地址:https://www.cnblogs.com/hzsu/p/12059963.html
Copyright © 2011-2022 走看看