柱状图端点用散点图代替,并给柱状图点击事件
配置项如下
var data0 = [0, 0, 0, 0, 0, 0, 0]
var data = [60, 85, 110, 160, 90, 80, 190]
var xdata = ['06-02', '06-03', '06-04', '06-05', '06-06', '06-07', '06-08']
var color = ['#EAEAEA', '#454545', '#000000']
// 定义变量xIndex 表示X轴序号, Ymonth 表示柱状图的label值
var xIndex,Ymonth
option = {
backgroundColor: color[2],
// 关闭提示框, 替换为柱状图的点击事件
tooltip: {
trigger: "none"
},
title: {
text: "柱状图可点击(简约风格)",
subtext: '柱状图端点用散点图代替,并给柱状图点击事件',
textStyle: {
color: color[0],
fontSize: 26
},
subtextStyle: {
color: color[1],
fontSize: 14
},
left: 'center',
top: "15%"
},
grid: {
left: "10%",
top: "35%",
bottom: "15%",
right: "10%",
containLabel: true
},
xAxis: {
data: xdata,
type: 'category',
splitLine: {
show: false
},
axisLine: {
show: false
},
axisTick: {
show: false
},
axisLabel: {
color: color[1],
fontSize: 14,
margin: 20
}
},
yAxis: {
type: 'value',
splitNumber: 4,
interval: 50,
splitLine: {
show: true,
lineStyle: {
color: color[1],
type: 'dashed'
}
},
axisLine: {
show: false,
},
axisTick: {
show: false
},
axisLabel: {
color: color[1],
fontSize: 14
}
},
series: [{
type: 'bar',
barWidth: '20',
data: data,
color: color[0],
label: {
show: true,
position: 'top',
// 标签刻度值位置
offset: [0, -15],
fontSize: 16,
formatter: function(params) {
// 判断收益是否大于0, 或者是否对应当前数据
if(params.value === 0 || params.value !== Ymonth) {
return ''
} else {
return params.value
}
}
}
},
// 俩散点图作为圆柱端点
{
type: 'scatter',
symbolSize:'15',
itemStyle: {
borderWidth:5,
borderColor: color[0],
color: color[2],
opacity: 1
},
silent: true,
data: data0
},
{
type: 'scatter',
symbolSize:'15',
itemStyle: {
borderWidth:5,
borderColor: color[0],
color: color[2],
opacity: 1
},
silent: true,
data: data
}
]
}
// 给每条数据的热区增加点击事件
myChart.getZr().on('click', function(params) {
var pointInPixel= [params.offsetX, params.offsetY]
if (myChart.containPixel('grid', pointInPixel)) {
var pointInGrid = myChart.convertFromPixel({seriesIndex: 0}, pointInPixel)
// X轴序号
xIndex = pointInGrid[0]
// 获取当前图表的option
var op = myChart.getOption()
// 获得图表中我们想要的数据
Ymonth = op.series[0].data[xIndex]
// console.log('点击了第' + xIndex + '条数据')
myChart.setOption({
xAxis: [{
axisLabel: {
color: function(value, index) {
return index === xIndex ? color[0] : color[1]
}
}
}]
})
}
})