echarts 背景格子是由splitLine控制的,只需要将splitLine的show属性改为false就可以实现格子的隐藏了。
splitLine:{
show:false,
},
var fon...
yekong
3年前 (2021-08-17)
喜欢
echarts文字标签云图 词云,需要引入词云所需要的js
大致效果如下
// 词云图需要额外引入 词云图js
// https://oisanjavax.github.io/echarts-wordcloud/dist/echarts-wordcloud.min.js
...
yekong
3年前 (2021-08-17)
喜欢
nginx部署vue开发的项目history模式下除了将vue编译后的文件上传到线上外,还需要配置nginx的伪静态才可以正常访问
nginx vue项目history伪静态规则
location / {
try_files $uri $uri/ /index.html;
...
yekong
3年前 (2021-08-16)
喜欢
echarts 的缩放条是由dataZoom控制的。不想显示缩放条,只需要删除dataZoom相关配置即可。
"dataZoom": [{
"xAxisIndex": [ 0],
handleIcon: &...
yekong
3年前 (2021-08-16)
喜欢
echarts 刻度是通过axisTick的show来控制显示隐藏的
axisTick:{show:false}
option = {
title: {
text: 'Awesome Chart'
},
xAxis: {...
yekong
3年前 (2021-08-16)
喜欢
echarts设置标题是通过title字段进行控制的.
通过textStyle对标题的样式和位置进行修饰
title: {
text: '这里是标题',
textStyle: {
align: 'ce...
yekong
3年前 (2021-08-16)
喜欢
echarts 饼图颜色设置是通过color控制的,可以通过color实现echarts 饼图颜色设置。
color:['#feb513', '#30ca40','#a147eb']
var option = {
// ...
yekong
3年前 (2021-08-16)
喜欢
echarts动态添加数据,让echarts动起来。
rtLine2: function () {
var that = this;
var data = this.qiaolist[this.select1].k...
yekong
3年前 (2021-08-16)
喜欢
在做大屏项目的时候难免会用到echarts,就需要很多echarts实例进行参考.
百度官方实例地址
在这里基本可以找到我们需要的大部分echarts实例,也可以贡献自己的代码为echarts实例添砖加瓦。
...
yekong
3年前 (2021-08-16)
喜欢
echarts如何设置隐藏纵轴,yAxis即为纵轴设置
yAxis: {show:false},
option = {
title: {
text: 'Awesome Chart'
},
xAxis: {
...
yekong
3年前 (2021-08-16)
喜欢