E-charts????????????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了E-charts????????????相关的知识,希望对你有一定的参考价值。
??????????????? ?????? SM lse center ref htm ?????? anim
?????????????????????????????????
- ????????????
let opt = {
// ??????????????????
grid:{
top:20
}
}
- ???????????????http://echarts.baidu.com/option.html#grid
???????????????????????????????????????
???????????????
let opt ={
// ????????????????????? ???????????????????????? left ???top ???right???bottom ... ??????
legend:{
bottom : 10
},
};
- ???????????? ??? http://echarts.baidu.com/option.html#legend
???????????????????????? series
- ????????????
let opt ={
series: {
type:???line???, // ????????????????????????
smooth: false, // ??????????????????( ?????????????????? )
lineStyle:{ //????????????
width:4
},
animation:true, // ????????????
//???????????????????????? ????????? false ???????????? ?????? hover ??????????????????
showSymbol: false
},
};
???????????????
- ????????????
let opt = {
legend:{
bottom : 10
},
// X?????????
xAxis: {
type: ???category???,
boundaryGap: true,// ????????????
splitLine:{show: false},//???????????????
// splitArea : {show : true},//??????????????????
//???????????????
axisLine: {
show:true,
lineStyle: {
// type: ???solid???,
color: ???#999999???,//??????????????????
// width:???2???//??????????????????
}
},
// ???????????????
axisTick:{
show:true,
inside:true
},
// ?????????????????????
nameTextStyle:{
align: ???center???
}
},
// Y?????????
yAxis :{
type : ???value???,
splitLine:{show: false},//???????????????
axisLine: {
show:true,
lineStyle: {
color:???#999999???,
}
},
axisTick:{
show:true,
inside:true
},
min:10
}
}
- ???????????????http://echarts.baidu.com/option.html#xAxis
以上是关于E-charts????????????的主要内容,如果未能解决你的问题,请参考以下文章