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.
 
 
 
 
 

141 lines
2.8 KiB

var option = {
title: {
left: '10%',
textStyle: {
fontWeight: 'normal',
color: '#fff', //标题颜色
},
text: '急救数据统计',
},
tooltip: { trigger: 'axis' },
legend: [
{
x: 'center',
y: 'top',
data: ['本年', '去年'],
textStyle: {
fontWeight: 'normal',
color: '#fff', //标题颜色
},
},
{
x: 'center',
y: 'bottom',
data: ['本年完成', '去年同期'],
textStyle: {
fontWeight: 'normal',
color: '#fff', //标题颜色
},
},
],
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
axisLabel: {
textStyle: {
fontWeight: 'normal',
color: '#fff', //标题颜色
},
},
},
yAxis: [
{
type: 'value',
interval: 200,
name: '人次',
axisTick: {
//y轴刻度线
show: false,
},
splitLine: {
show: true,
lineStyle: {
type: 'dashed',
color: '#666',
},
},
nameTextStyle: { color: '#fff' },
axisLabel: {
textStyle: {
fontWeight: 'normal',
color: '#fff', //标题颜色
},
},
},
{
type: 'value',
interval: 200,
name: '数量',
splitLine: {
show: true,
lineStyle: {
type: 'dashed',
color: '#666',
},
},
nameTextStyle: { color: '#fff' },
axisLabel: {
textStyle: {
fontWeight: 'normal',
color: '#fff', //标题颜色
},
},
},
],
series: [
{
name: '本年',
data: [120, 232, 301, 434, 590, 630, 720],
type: 'line',
color: 'red',
},
{
name: '去年',
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line',
color: '#E87C25',
},
{
name: '本年完成',
data: [120, 232, 301, 434, 590, 630, 720],
yAxisIndex: 1,
type: 'bar',
color: '#FCCE10',
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'top', //在上方显示
textStyle: {
//数值样式
color: 'white',
fontSize: 12,
},
},
},
},
},
{
name: '去年同期',
data: [820, 932, 901, 934, 1290, 1330, 1320],
yAxisIndex: 1,
type: 'bar',
color: '#B5C334',
itemStyle: {
normal: {
label: {
show: true, //开启显示
position: 'top', //在上方显示
textStyle: {
//数值样式
color: 'white',
fontSize: 12,
},
},
},
},
},
],
};
export default option;