微信小程序Echarts图表模糊问题解决

微信小程序Echarts图表模糊问题

微信小程序上,Echarts图表会出现模糊问题,解决方法:设置图表像素比:

//先获取设备像素比
wx.getSystemInfo({
    success: function (res) {
        const chart = echarts.init(canvas, null, {
            width: width,
            height: height,
            //设置图表像素比
            devicePixelRatio: res.pixelRatio,
        });
    },
    fail: function () {
        const chart = echarts.init(canvas, null, {
            width: width,
            height: height,
            //设置图表像素比
            devicePixelRatio: 0,
        });
    }
});

你可能感兴趣的:(微信小程序,echarts,微信小程序,javascript)