1.折线图柱状图
tooltip: {
confine: true,//是否将 tooltip 框限制在图表的区域内。
trigger: 'axis',
backgroundColor: '#0085ff',
extraCssText: 'background: linear-gradient(to top,#ffffff,#eff1fe);padding:12px 20px', //渐变颜色
formatter: function (params) {
// params 是一个数组,数组中包含每个系列的数据信息
let result = params[0].name;
params.forEach(function (item) {
result += "<br/>";
// item 是每一个系列的数据
const seriesName = item.seriesName; // 系列名称
const value = item.value; // 数据值
result += '<span style="display:inline-block;margin-right:5px;border-radius:10px;width:9px;height:9px;background-color:'+item.color+'" ></span>';
result += `${seriesName}: ${value+'33'}<br/>`;
});
return result;
},