logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

echarts饼图legend标识位置

echarts图例legend标识位置方式一:只设置left、right、top、bottom具体像素值或百分比legend: {// top: '5%',left: 'center',bottom: 30,//具体像素值或百分比},方式二:x : 左(left)、右(right)、居中(center)或具体像素值y : 上(top)、下(bottom)、居中(center或具体像素值可使用pad

#echarts
【uni-app】input框数字限制输入到小数点后两位

//正则表达试e.target.value = e.target.value.match(/^\d*(\.?\d{0,2})/g)[0] || null;//重新赋值给inputthis.$nextTick(() => {this.info.price = e.target.value;});

到底了