设置y轴分割线(去掉坐标轴分割线)

   //autoLoadChart("barAndLine", "chartDiv", xName, hjNumber,lvNumber);

function autoLoadChart(chartType, id, xName, hjNumber,lvNumber) {
var chartDiv = document.getElementById(id);
var myChart = echarts.getInstanceByDom(chartDiv);
if (typeof (myChart) != ‘undefined’) {
myChart.dispose();
}
// 用于使chart自适应高度和宽度,通过窗体高宽计算容器高宽
var resizeWorldMapContainer = function() {
chartDiv.style.width = document.getElementById(id).offsetWidth + ‘px’;
chartDiv.style.height = document.getElementById(id).offsetHeight + ‘px’;
}
// 设置容器高宽
resizeWorldMapContainer();
myChart = echarts.init(chartDiv);
var option = {};
if(chartType == “barAndLine”){
option = this.getLineAndBarOption(xName,hjNumber,lvNumber);
}
myChart.setOption(option);
// 用于使chart自适应高度和宽度
window.onresize = function() {
// 重置容器高宽
resizeWorldMapContainer();
myChart.resize();
};
var _self = this;
myChart.on(‘click’, function(param) {
});
}
function getLineAndBarOption(xName,hjNumber,lvNumber) {
option = {
tooltip : {
formatter : ‘{b} : {c}个’,
trigger : ‘axis’,
axisPointer : {
type : ‘cross’,
label: {
backgroundColor: ‘#FFC000’,
color : ‘#ccc’
}
}
},
grid: {
left: 10,
right: 10,
bottom: 25,
top : 45,
containLabel: true
},
legend : {
data : [ ‘合计’,‘按期闭环率’ ],
textStyle : {
color : “#ccc”
}
},
xAxis : [ {
type : ‘category’,
axisTick : {
alignWithLabel : true
},
axisLine : {
lineStyle : {
color : ‘#ccc’
}
},
axisLabel : {
interval : 0,
rotate : 50
},
data : xName
} ],
yAxis : [ {
type : ‘value’,
name : ‘合计’,
position : ‘left’,
axisLabel : {
formatter : ‘{value}/个’
},
axisLine : {
lineStyle : {
color : ‘#ccc’
}
}
}, {
type : ‘value’,
name : ‘按期闭环率’,
position : ‘right’,
axisLabel : {
formatter : ‘{value}%’
},
splitLine: {//设置去掉一边的坐标轴刻度线
show: false
},
axisLine : {
lineStyle : {
color : ‘#ccc’
}
}
} ],
dataZoom: [{
show: true,
height: 20,
xAxisIndex: [
0
],
bottom:0,
start: 0,
end: 60,
textStyle : {
color : “#ccc”,
fontWeight : ‘lighter’
}
},
{
type: “inside”,
show: true,
height: 15,
xAxisIndex: [
0
],
start: 0,
end: 60
}
],
series : [ {
name : ‘合计’,
type : ‘bar’,
itemStyle : {
normal : {
color : ‘#FF6600’
}
},
yAxisIndex : 0,
data : hjNumber
},
{
name : ‘按期闭环率’,
symbol:‘diamond’,//虚点变实点
type : ‘line’,
itemStyle : {
normal : {
color : ‘#FFC000’
}
},
yAxisIndex : 1,
data : lvNumber
}]
};
return option;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值