阅读(1136)
赞(26)
ECharts图例组件配置 图例控制块
2017-09-04 10:20:31 更新
legend.pageButtonItemGap | number
[ default: 5 ]
legend.type 为 'scroll' 时有效。
图例控制块中,按钮和页信息之间的间隔。
legend.pageButtonGap | number
[ default: null ]
legend.type 为 'scroll' 时有效。
图例控制块和图例项之间的间隔。
legend.pageButtonPosition | string
[ default: 'end' ]
legend.type 为 'scroll' 时有效。
图例控制块的位置。可选值为:
- 'start':控制块在左或上。
- 'end':按钮快在右或下。
legend.pageFormatter | string, Function
[ default: '{current}/{total}' ]
legend.type 为 'scroll' 时有效。
图例控制块中,页信息的显示格式。默认为 '{current}/{total}',其中 {current} 是当前页号(从 1 开始计数),{total} 是总页数。
如果 pageFormatter 使用函数,须返回字符串,参数为:
{
current: number
total: number
}