option = {
// 其他配置项...
legend: {
type: 'scroll', // 这里设置图例的类型,比如 'plain' 或 'scroll'
// 其他图例相关配置项...
},
series: [
{
name: '系列1',
type: 'bar',
data: [1, 2, 3, 4, 5],
},
// 其他系列配置项...
],
};
在上面的示例中,legend 对象中的 type 属性设置了图例的类型为 'scroll'。常见的图例类型包括 'plain'(普通图例)和 'scroll'(可滚动的图例)。你可以根据你的需求选择适合的类型,并根据实际情况配置其他相关属性。
转载请注明出处:http://www.zyzy.cn/article/detail/5117/ECharts