1、vscode中查看md文件
下载插件 Markdown Theme Kit
安装完毕,重启VSCode,然后打开.md文件。Ctrl + Shift + V,即可预览。
2、echarts下载图片
toolbox: {
show: true,
feature: {
saveAsImage: {
show:true,
excludeComponents :['toolbox'],
pixelRatio: 2
}
}
},
3、x轴展示固定的几条数据(不影响echarts图上的展示)
以7条为例
......
axisLabel: { //坐标轴刻度标签的相关设置
interval: dataList.length>7?parseInt(dataList.length/7):0,
textStyle: {
color: '#666666',
margin: 15,
},
rotate:30,
},
......