PHP前端开发

Echarts图例如何实现滚动和添加标题?

百变鹏仔 3周前 (11-26) #echarts
文章标签 如何实现

echarts图例实现滚动和标题

问题:echarts图例如何增加滚动条和添加标题?

解答:

增加滚动条:

添加标题:

代码示例:

option = {  legend: {    type: 'scroll',    title: {      text: '图例标题',      textStyle: {        color: '#000'      }    }  }};

参考文档: