09 2021 档案
摘要:echarts.on('click',function(params){ alert(params.name) })
阅读全文
摘要:第一种方法: resources: static-locations: file:c:/files/,classpath:/document/,classpath:/static/ mvc: static-path-pattern: /** 第二种方法: pom.xml配置文件路径 <resourc
阅读全文
摘要:在el-select标签里添加: filterable @change.native="selectBlur" @blur.native="selectBlur" selectBlur(e){ this.$set(this.addForm,"fname",e.target.value) }
阅读全文
摘要:折线线条颜色改变,在service里添加: itemStyle : { normal : { lineStyle:{ color:'#F56C6C' } } } 折线变曲线、在service里添加: smooth:true,
阅读全文
摘要:splitLine:{ show:false }, 在xAxis和yAxis标签里添加上述代码即可
阅读全文
摘要:itemStyle: { normal: { // 随机显示 color:function(d){return "#"+Math.floor(Math.random()*(256*256*256-1)).toString(16);} // 定制显示(按顺序) // color: function(p
阅读全文