此文章来源vue 常用的 Echarts 示例_秦浩铖-CSDN博客
echarts配置项官网:Documentation - Apache ECharts
多条柱形图
option = {
animation: false,
title: {
text: '本周主煤流系统启动平均时长',
textAlign: 'left',
x: 'center',
y: 'top',
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 14
}
},
color: ['#0d81f7', '#0fb42c'],
tooltip: {},
legend: {
show: true,
top: 18,
right: 0,
data: ["主煤流系统手动启动时长", "主煤流智能启动时长"],
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 10
},
itemWidth: 10,
itemHeight: 10
},
xAxis: {
axisTick: {
show: false
},
axisLine: {
lineStyle: {
color: '#0092D5'
}
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
data: ['2020-01','2020-02','2020-03','2020-04','2020-05','2020-06'],
},
yAxis: {
name: "(分钟)",
nameTextStyle: {
color: 'rgba(255, 255, 255, 0.8)',
align: 'right'
},
splitLine: {
lineStyle: {
type: 'dashed',
color: '#0092D5',
opacity: 0.3
}
},
axisLine: {
show: false,
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
},
grid: {
top: '35%',
bottom: '17%',
left: '7%',
right: '2%'
},
series: [{
name: "主煤流系统手动启动时长",
barWidth: 15,
type: 'bar',
data: [1,2,3,4,5,6],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideLeft', //在上方显示
offset: [-8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10
}
},
color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{
offset: 0,
color: "#0069F5" // 0% 处的颜色
}, {
offset: 1,
color: "#35C3FF" // 100% 处的颜色
}], false)
}
},
}, {
name: "主煤流系统智能启动时长",
barWidth: 15,
type: 'bar',
data: [2,3,4,5,6,7],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideRight', //在上方显示
offset: [8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10
}
},
color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{
offset: 0,
color: "#03AC32" // 0% 处的颜色
}, {
offset: 1,
color: "#69EF00" // 100% 处的颜色
}], false)
}
},
}]
};
多条曲线图
option = {
color: ['#1890FF', '#FF7D00'],
tooltip: {},
legend: {
show: true,
top: 15,
right: 0,
align: 'left',
x: 'center',
y: 'top',
icon: 'rect',
itemHeight: 5,
itemWidth: 15,
data: ["智能配煤","非智能配煤"],
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 12
},
},
xAxis: {
axisTick: {
show: false
},
axisLine: {
lineStyle: {
color: '#0092D5'
}
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
data: ['2020-01','2020-02','2020-03','2020-04','2020-05','2020-06']
},
yAxis: {
name: "(万元)",
nameTextStyle: {
color: 'rgba(255, 255, 255, 0.8)',
align: 'right'
},
splitLine: {
lineStyle: {
type: 'dashed',
color: '#0092D5',
opacity: 0.3
}
},
axisLine: {
show: false,
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
},
grid: {
top: '25%',
bottom: '10%',
left: '10%',
right: '2%'
},
series: [{
name: "智能配煤",
barWidth: 15,
type: 'line',
smooth: true,
data: [1,2,3,4,5,6],
}, {
name: "非智能配煤",
barWidth: 15,
type: 'line',
smooth: true,
data: [3,4,5,6,7,8],
}]
};
柱形图配折线图
option = {
title: {
text: '近一周全矿井产量',
textAlign: 'left',
x: 'center',
y: 'top',
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 14
}
},
color: ['#0d81f7', '#0fb42c', '#e97507'],
tooltip: {},
legend: {
show: true,
top: 3,
right: 0,
data: ["综采1","综采2", "总计"],
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 12
},
itemWidth: 12,
itemHeight: 12
},
xAxis: {
axisTick: {
show: false
},
axisLine: {
lineStyle: {
color: '#0092D5'
}
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
data: ['2020-01','2020-02','2020-03','2020-04','2020-05','2020-06']
},
yAxis: {
name: "(吨)",
nameTextStyle: {
color: 'rgba(255, 255, 255, 0.8)',
align: 'right'
},
splitLine: {
lineStyle: {
type: 'dashed',
color: '#0092D5',
opacity: 0.3
}
},
axisLine: {
show: false,
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
},
grid: {
top: '20%',
bottom: '10%',
left: '10%',
right: '2%'
},
series: [{
name: "综采1",
barWidth: 15,
type: 'bar',
data: [1,2,3,4,5,6],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideLeft', //在上方显示
offset: [-8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10
}
},
color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{
offset: 0,
color: "#0069F5" // 0% 处的颜色
}, {
offset: 1,
color: "#35C3FF" // 100% 处的颜色
}], false)
}
},
}, {
name: "综采2",
barWidth: 15,
type: 'bar',
data: [3,4,5,6,7,8],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideRight', //在上方显示
offset: [8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10
}
},
color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{
offset: 0,
color: "#03AC32" // 0% 处的颜色
}, {
offset: 1,
color: "#69EF00" // 100% 处的颜色
}], false)
}
},
}, {
name: "总计",
barWidth: 15,
type: 'line',
color: '#f67a03',
data: [8,9,10,11,12,13],
}]
};
柱形图堆积
option = {
color: ['#acff02', '#fac800', '#ff7d00', '#0fb42c'],
tooltip: {
trigger: 'axis',
axisPointer: { // Use axis to trigger tooltip
type: 'shadow' // 'shadow' as default; can also be 'line' or 'shadow'
}
},
legend: {
show: true,
top: 15,
right: 0,
x: 'center',
y: 'top',
data: ["生产队1","生产队2","生产队3", "总计"],
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 12
},
itemWidth: 12,
itemHeight: 12
},
xAxis: {
axisTick: {
show: false
},
axisLine: {
lineStyle: {
color: '#0092D5'
}
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
data: ['2020-01','2020-02','2020-03','2020-04','2020-05','2020-06']
},
yAxis: {
name: "(吨)",
nameTextStyle: {
color: 'rgba(255, 255, 255, 0.8)',
align: 'right'
},
splitLine: {
lineStyle: {
type: 'dashed',
color: '#0092D5',
opacity: 0.3
}
},
axisLine: {
show: false,
},
axisLabel: {
color: 'rgba(255, 255, 255, 0.8)'
},
},
grid: {
top: '25%',
bottom: '10%',
left: '12%',
right: '2%'
},
series: [{
name: "生产队1",
barWidth: 15,
type: 'bar',
stack: 'total',
emphasis: {
focus: 'series'
},
data: [1,2,3,4,5,6],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideRight', //在上方显示
offset: [-8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10
}
},
}
},
},
{
name: "生产队2",
barWidth: 15,
type: 'bar',
stack: 'total',
emphasis: {
focus: 'series'
},
data:[2,3,4,5,6,7],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideRight', //在上方显示
offset: [-8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10,
}
},
}
},
},
{
name: "生产队3",
barWidth: 15,
type: 'bar',
stack: 'total',
emphasis: {
focus: 'series'
},
data:[5,6,7,8,9,10],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideRight', //在上方显示
offset: [-8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10
}
},
}
},
}, {
name: '总计',
barWidth: 15,
type: 'bar',
data: [21,22,23,34,25,25],
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'insideLeft', //在上方显示
offset: [8, 0],
textStyle: { //数值样式
color: '#fff',
fontSize: 10
}
},
color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{
offset: 0,
color: "#0069F5" // 0% 处的颜色
}, {
offset: 1,
color: "#35C3FF" // 100% 处的颜色
}], false)
}
},
}]
};
饼图
option = {
title: {
text: '各生产队工效',
textAlign: 'left',
x: 'center',
y: 'top',
top: '7%',
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 12
}
},
tooltip: {},
legend: {
orient: 'vertical',
top: '50%',
left: '15%',
textStyle: {
color: 'rgba(255, 255, 255, 0.8)',
fontSize: 12
},
itemWidth: 12,
itemHeight: 12
},
grid: {
top: '20%',
bottom: '10%',
left: '10%',
right: '10%'
},
series: [{
name: '功效',
type: 'pie',
radius: [15, 70],
center: ['68%', '60%'],
// roseType: 'area',
itemStyle: {
borderRadius: 2
},
label: {
position: 'inside',
formatter: '{c}吨/人天',
fontWeight: 600,
color: '#fff'
},
data: [{
value:12,
name: "生产队1"
},{
value:34,
name: "生产队2"
},{
value:23,
name: "生产队3"
}]
}]
};
进度环形图
option = {
color: ['#414f5b', '#1890ff'],
series: [
{
name: '任务进度',
type: 'pie',
radius: ['75%', '100%'],
avoidLabelOverlap: false,
hoverAnimation: false,
labelLine: {
normal: {
show: false
}
},
data: [{
value: 25,
label: {
normal: {
show: false,
}
}
}, { // 数据值
value: 75,
// 数据项名称
name: "采煤机开机率",
//该数据项是否被选中
selected: false,
// 单个扇区的标签配置
label: {
// 是显示标签
show: true,
position: 'center',
fontSize: 14,
color: '#fff',
lineHeight: 15,
formatter: '\n{b}\n\n ' + `{a| {c} }` + '\n\n%',
rich: {
a: {
color: '#1890ff',
fontSize: 30,
fontWeight: 600,
}
}
},
}]
}
]
};
雷达图
option = {
color: ['#fa0145', '#02f8f9'],
tooltip: {
show: true
},
radar: {
nameGap: 7,
axisLine: {
lineStyle: {
color: '#0781c0',
type: 'dashed'
}
},
name: {
color: '#fff'
},
splitLine: {
lineStyle: {
color: '#0781c0',
type: 'dashed'
}
},
splitArea: {
show: false,
areaStyle: {
color: 'rgba(255,0,0,0)', // 图表背景的颜色
},
},
indicator: ["人员","设备","环境","管理"]
},
series: [{
name: '',
type: 'radar',
data: [
{
value: //[4200, 3000, 20000, 35000],
name: '',
areaStyle: {
color: '#fa0145',
opacity: 0.1,
},
itemStyle: { // 折线拐点标志的样式。
normal: { // 普通状态时的样式
lineStyle: {
width: 1
},
opacity: 0.2
},
emphasis: { // 高亮时的样式
lineStyle: {
width: 5
},
opacity: 1
}
},
},
{
value: [6200, 2000, 30000, 25000],
name: '风险评估',
areaStyle: {
color: '#02f8f9',
opacity: 0.1,
},
itemStyle: { // 折线拐点标志的样式。
normal: { // 普通状态时的样式
lineStyle: {
width: 1
},
opacity: 0.2
},
emphasis: { // 高亮时的样式
lineStyle: {
width: 5
},
opacity: 1
}
},
}
]
}]
};
标线、柱形图重叠
option = {
title: {
text: 'World Population'
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
legend: {},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'value',
boundaryGap: [0, 0.01]
},
yAxis: {
type: 'category',
data: ['Brazil', 'Indonesia', 'USA', 'India', 'China', 'World']
},
series:[
{
name: '2011',
type: 'bar',
data: [18203, 23489, 29034, 104970, 131744, 630230],
barGap: '-50%',
z: 3,
markLine: {
data: [{
name: 'X 轴值为 100 的竖直线',
xAxis: 123456
}],
silent: true,
symbolSize: 'minorSplitLine',
}
},
{
name: '2012',
type: 'bar',
data: [19325, 23438, 31000, 121594, 134141, 681807]
}
]
};
仪表盘
option = {
backgroundColor: "#000",
tooltip: {
formatter: "{b}{c}"
},
series: [{
tooltip: {
show: false
},
name: 'wrap',
type: 'pie',
hoverAnimation: false,
legendHoverLink: false,
center: ['50%','60%'],
radius: ['0%', '7%'],
z: 5,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: false
}
},
labelLine: {
normal: {
show: false
}
},
data: [{
value: 100,
itemStyle: {
normal: {
color: "#072B79"
},
emphasis: {
color: "#072B79"
}
}
}]
}, {
tooltip: {
show: false
},
name: 'wrap',
type: 'pie',
hoverAnimation: false,
legendHoverLink: false,
center: ['50%','60%'],
radius: ['6%', '8%'],
z: 5,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: false
}
},
labelLine: {
normal: {
show: false
}
},
data: [{
value: 100,
itemStyle: {
normal: {
color: "#24D8E7"
},
emphasis: {
color: "#24D8E7"
}
}
}]
}, {
tooltip: {
show: false
},
name: '刻度',
type: 'gauge',
radius: '83%',
z: 1,
min: 0,
max: 1,
center: ['50%','60%'],
splitNumber: 5, //刻度数量
startAngle: 180,
endAngle: 0,
axisLine: {
show: true,
lineStyle: {
width: 5,
color: [
[0.12, '#E71A6D'],
[0.35, '#F88168'],
[0.63, '#FBF76B'],
[0.8, '#7AD4DF'],
[1, '#70C27E'],
]
}
}, //仪表盘轴线
axisLabel: {
show: false
}, //刻度标签。
axisTick: {
show: true,
lineStyle: {
color: 'auto',
width: 0
},
length: -15
}, //刻度样式
splitLine: {
show: true,
length: 0,
lineStyle: {
color: 'auto',
width: 2
}
}, //分隔线样式
detail: {
show: false
},
pointer: {
show: false
}
}, {
name: '本期',
type: 'gauge',
radius: '80%',
min: 0,
max: 1,
center: ['50%','60%'],
data: [{
value: 0.89,
name: '本期'
}],
splitNumber: 12, //刻度数量
startAngle: 180,
endAngle: 0,
z: 5,
axisLine: {
show: true,
lineStyle: {
width: 0,
color: [
[0.12, '#E71A6D'],
[0.35, '#F88168'],
[0.63, '#FBF76B'],
[0.8, '#7AD4DF'],
[1, '#70C27E'],
]
}
}, //仪表盘轴线
axisLabel: {
show: true,
color: '#fff',
fontSize:20,
distance: -70,
formatter:function(params){
var value = params.toFixed(2)
if(value == 0.00){
return '危'
}else if(value == 0.25){
return '差'
}else if(value == 0.50){
return '中'
}else if(value == 0.75){
return '良'
}else if(value == 1.00){
return '优'
}else{
return ''
}
}
}, //刻度标签。
axisTick: {
splitNumber: 10,
show: true,
lineStyle: {
color: 'auto',
width: 2
},
length: 20,
}, //刻度样式
splitLine: {
show: true,
length: 25,
lineStyle: {
color: 'auto',
width: 5
}
}, //分隔线样式
itemStyle: {
normal: {
color: "#24D8E7" //指针颜色
}
},
pointer: {
width: 10,
length: '80%'
},
detail: {
formatter: function(params){
return (params*100).toFixed(0) + '%'
},
fontSize: 35,
color: "#fff",
offsetCenter: ['0%', '-35%']
},
title: {
offsetCenter: ['0', '-60%'],
fontSize: 25,
color: "#fff",
show: true
},
}]
};
散点图
option = {
legend: {
data: ["图例一", "图例二"],
left: "3%",
top: "1%",
icon: "circle",
itemWidth: 8,
itemHeight: 8,
textStyle: {
color: `rgba(44, 53, 66, 0.65)`,
fontSize: 12,
fontFamily: "Alibaba PuHuiTi",
},
},
grid: {
left: "3%",
right: "4%",
bottom: "3%",
containLabel: true,
},
xAxis: {
axisLine: {
lineStyle: {
color: `rgba(65, 97, 128, 0.45)`,
},
},
splitLine: {
lineStyle: {
color: `rgba(65, 97, 128, 0.151934)`,
},
},
axisLabel: {
color: "rgba(44, 53, 66, 0.6)",
},
},
yAxis: {
splitLine: {
lineStyle: {
color: `rgba(65, 97, 128, 0.151934)`,
},
},
axisLine: {
lineStyle: {
color: `rgba(65, 97, 128, 0.45)`,
},
},
axisLabel: {
color: "rgba(44, 53, 66, 0.6)",
},
},
series: [
{
name: "图例一",
symbolSize: 10,
data: [
[10.0, 8.04],
[8.07, 6.95],
[13.0, 7.58],
[9.05, 8.81],
[11.0, 8.33],
[14.0, 7.66],
[13.4, 6.81],
[10.0, 6.33],
[14.0, 8.96],
[12.5, 6.82],
[9.15, 7.2],
[11.5, 7.2],
[3.03, 4.23],
[12.2, 7.83],
[2.02, 4.47],
[1.05, 3.33],
[4.05, 4.96],
[6.03, 7.24],
[12.0, 6.26],
[12.0, 8.84],
[7.08, 5.82],
[5.02, 5.68],
],
type: "scatter",
itemStyle: {
color: "#5B8FF9",
},
},
{
name: "图例二",
symbolSize: 10,
data: [
[9.0, 8.04],
[7.07, 6.95],
[13.0, 8.58],
[7.05, 8.81],
[9.0, 8.33],
[12.0, 7.66],
[11.4, 6.81],
[7.0, 6.33],
[9.0, 7.96],
[7.5, 6.82],
[8.15, 5.2],
[9.5, 10.2],
[4.03, 5.23],
[6.2, 7.83],
[3.02, 4.47],
[2.05, 4.33],
[3.05, 1.96],
[7.03, 6.24],
[9.0, 8.26],
[10.0, 4.84],
[5.08, 6.82],
[3.02, 2.68],
],
type: "scatter",
itemStyle: {
color: "#6ADFAF",
},
},
],
};