方法一:加入参数,使用svg渲染,清晰度高
var myChart = echarts.init(document.getElementById(‘chart‘), null, { renderer: ‘svg‘ })
方法2:canvas渲染,通过调整devicePixelRatio提升清晰度
var myChart = echarts.init(document.getElementById(‘echarts_warn‘),null, {devicePixelRatio: 2})
2023-12-10 23:37:45
方法一:加入参数,使用svg渲染,清晰度高
var myChart = echarts.init(document.getElementById(‘chart‘), null, { renderer: ‘svg‘ })
方法2:canvas渲染,通过调整devicePixelRatio提升清晰度
var myChart = echarts.init(document.getElementById(‘echarts_warn‘),null, {devicePixelRatio: 2})