ec-canvas 在使用 onInit 方法成功初始化后, 设置 setOption 中的 notMerge 为 true 会报错

作者: ljgx创建于 2025年7月18日更新于 2025年7月18日

function getSeries(val) { if (val % 2 === 0) { return [ { name: "A", type: "line", smooth: true, }, { name: "B", type: "line", smooth: true, }, ]; } return [ { name: "C", type: "line", smooth: true, }, ]; } function getData(val) { if (val % 2 === 0) { return [ ["时间", "A", "B"], ["周一", 43.3, 85.8], ["周二", 83.1, 73.4], ["周三", 86.4, 65.2], ["周四", 72.4, 53.9], ]; } return [ ["时间", "C"], ["周一", 90], ["周二", 78], ["周三", 51], ["周四", 12], ]; }

内容来源: ecomfe/echarts-for-weixin