You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
3.8 KiB

3 years ago
// 单柱状
3 years ago
export default function histogram(dx=[],ds=[],color1='',direction=true) {
3 years ago
// direction true为垂直 false为水平
3 years ago
return {
tooltip: {
trigger: 'axis',
axisPointer: { // 坐标轴指示器,坐标轴触发有效
type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
},
confine: true
},
3 years ago
dataZoom: [{ //添加X轴滚动条
type: 'inside',
show: false,
start: 50,
end: 10,
3 years ago
handleSize: 10
3 years ago
}],
// legend: {
// x:'15',
// icon: 'rectangle',//data图标样式
// itemWidth: '10',//data图标大小
// itemHeight: '10',
// textStyle: {
// fontSize: '9'
// },
// data: data,
// },
3 years ago
//图表位置
grid: {
left: 20,
right: 20,
3 years ago
bottom: 10,
top: 20,
3 years ago
containLabel: true
},
3 years ago
xAxis: direction?[
3 years ago
{
type: 'category',
data: dx,
axisTick:{
show:false //去除刻度线
},
axisLine:{
show:false, //去除轴线
},
axisLabel: {
color: '#999999',//x轴文本颜色
textStyle: {
3 years ago
fontSize : 8
3 years ago
}
3 years ago
}
}
3 years ago
]:[
3 years ago
{
3 years ago
type: 'value',
3 years ago
axisTick:{
show:false //去除刻度线
},
axisLine:{
3 years ago
show:false //去除轴线
3 years ago
},
axisLabel: {
3 years ago
color: '#999999',//y轴文本颜色
3 years ago
textStyle: {
3 years ago
fontSize : 8
},
3 years ago
},
splitLine: { //分割线
// lineStyle:{
// // color:"#2d3436"
// }
show: true,
3 years ago
lineStyle: {
3 years ago
type: 'dashed',
color: '#E8E8E8',
}
3 years ago
}
}
3 years ago
],
yAxis:direction?[
3 years ago
{
type: 'value',
axisTick:{
show:false //去除刻度线
},
axisLine:{
show:false //去除轴线
},
axisLabel: {
color: '#999999',//y轴文本颜色
textStyle: {
fontSize : 9
3 years ago
},
formatter:(value) => {
if(value >= 10000){
value = (value / 10000) + '万';
}
return value;
}
3 years ago
},
splitLine: { //分割线
// lineStyle:{
// // color:"#2d3436"
// }
show: true,
lineStyle: {
type: 'dashed',
color: '#E8E8E8',
}
3 years ago
}
}
3 years ago
]:[
{
type: 'category',
data: dx,
axisTick:{
show:false //去除刻度线
},
axisLine:{
show:false, //去除轴线
},
axisLabel: {
color: '#999999',//x轴文本颜色
textStyle: {
fontSize : 9
}
}
}
3 years ago
],
3 years ago
series:{
3 years ago
type: 'bar',
data: ds,
3 years ago
barWidth : 24,
3 years ago
stack:"Search Engine",
3 years ago
emphasis: {//折线图的高亮状态。
focus: "series",//聚焦当前高亮的数据所在的系列的所有图形。
},
3 years ago
itemStyle: {
normal:{
color: color1,
3 years ago
// lineStyle: {
// color: color1
// }
3 years ago
}
}
}
3 years ago
}
3 years ago
}
3 years ago
// function columar(data=[],ds=[],color1=''){
// // MS判断多条数据还是单条数据 true为单条false为多条
// let list=[]
// for (let i = 0; i < 1; i++) {
// list.push({
// })
// }
// return list
// }
3 years ago