echarts 隐藏子标题
时间: 2023-03-29 21:00:41 浏览: 701
您可以通过设置 subtextStyle 属性来隐藏 Echarts 图表的子标题。具体来说,您可以将 subtextStyle 属性的 display 属性设置为 'none',如下所示:
option = {
title: {
text: '主标题',
subtext: '子标题',
subtextStyle: {
display: 'none'
}
},
// 其他配置项
};
这样,Echarts 图表的子标题就会被隐藏起来了。希望对您有所帮助!
阅读全文