ECharts
特殊图形
ECharts
特殊图形
ECharts
特殊图形
无数据提示01
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| let option = { graphic: { type: 'text', left: 'center', top: '45%', style: { text: '暂无数据', fontSize: 20, } }, series: [ { type: 'pie', radius: ['65%', '70%'], } ] }
|
无数据提示02
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| let option = { title: { text: '暂无数据', left: 'center', top: '45%', textStyle: { fontSize: 20, } }, series: [ { type: 'pie', radius: ['65%', '70%'], } ] }
|
无数据提示03
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| let option = { graphic: { type: 'text', left: 'center', top: '40%', style: { text: '暂无数据', textAlign: 'center', fill: '#c0c0c0', fontSize: 20, fontWeight: 700 } }, };
|
无数据提示04
1 2 3 4 5 6 7 8 9 10 11
| let option = { title: { text: '暂无数据', left: 'center', top: '50%', textStyle: { color: '#dda0dd', fontSize: 36, } }, };
|
xxx