option = { xAxis: { type: "category", data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"] }, yAxis: {}, series: [{ data: [820, 932, 901, 934, 1290, 1330, 1320], type: "line", emphasis: { // 设置鼠标悬停样式 label: { show: true, }, }, // 添加label配置 label: { show: false, position: 'top', // 自定义label的内容 formatter: function (params) { // 自定义复杂的HTML内容 return '{b}: {@score}'; }, }, }] }  我想实现这个的效果 解决了。这个鼠标放上去的显示,不是label。这个地方可以写html,但是记住是html格式的字符串,还是不能用jsx。 