AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# top显示数字 ****** * 矩形,直线上显示数字 * [在线演示](http://demo.sgfoot.com/ECharts/top.html) >[info] 都显示数字 ~~~ series: [{ name: '销量', type: 'bar', data: [5, 20, 36, 10, 10, 20], label: { normal: { show: true, position: 'top' } } }] ~~~ ![](https://box.kancloud.cn/2a43f414d985862bf7f50e492afa37a0_569x362.png) >[info] 只显示最大值和最小值 ~~~ series: [{ name: '销量', type: 'bar', data: [5, 20, 36, 10, 10, 20], markPoint: { data: [ {type: 'max', name: '最大值'}, {type: 'min', name: '最小值'} ] } }] ~~~ ![](https://box.kancloud.cn/02dad7f2b4ffe0cc7e403af3253a8b6c_584x390.png)