graph.convertValueToString = function (cell) {
if (cached && cell.div != null) {
const charts = echarts.getInstanceByDom(cell.div)
cell.div.style.width = cell.geometry.width + 'px'
cell.div.style.height = cell.geometry.height + "px"
charts.resize()
return cell.div;
} else if (MxUtils.isNode(cell.value) && cell.value.nodeName.toLowerCase() === chartName) {
let div = document.createElement('div');
div.setAttribute("id", chartName)
div.style.margin = 0 + 'px'
div.style.padding = 0 + 'px'
div.style.width = width + 'px'
div.style.height = height + 'px'
// 解决页面echarts警告问题
// setTimeout(()=>{
const Chart = echarts.init(div);
Chart.setOption(options, true);
// })
if (cached) {
cell.div = div;
}
return div;
}
return MxGraph.prototype.convertValueToString.apply(this, arguments);
};
mxgraph画布插入echarts图表
最新推荐文章于 2023-10-21 16:35:49 发布
这篇博客介绍如何在mxgraph画布中插入并调整大小的echarts图表。通过利用echarts的getInstanceByDom方法和resize功能,确保图表在画布中正确显示和更新。
摘要由CSDN通过智能技术生成