|
@@ -122,7 +122,6 @@ export const getAreaOptions = ({ xAxisData, seriesList }) => {
|
|
|
show: true,
|
|
|
textStyle: {
|
|
|
color: '#1F2328',
|
|
|
- // align: 'right',
|
|
|
padding: 0
|
|
|
},
|
|
|
formatter: function (value) {
|
|
@@ -152,10 +151,51 @@ export const getOrderAreaOptions = ({ xAxisData, yAxisData }) => {
|
|
|
'#8B4513',
|
|
|
];
|
|
|
|
|
|
+ const commonYAxisOptions = {
|
|
|
+ name: '',
|
|
|
+ nameTextStyle: {
|
|
|
+ fontSize: 12,
|
|
|
+ align: 'right',
|
|
|
+ padding: [10, 5],
|
|
|
+ },
|
|
|
+ min: 0,
|
|
|
+ splitLine: {
|
|
|
+ show: true,
|
|
|
+ lineStyle: {
|
|
|
+ type: 'dashed',
|
|
|
+ },
|
|
|
+ },
|
|
|
+ axisLine: {
|
|
|
+ show: false,
|
|
|
+ lineStyle: {
|
|
|
+ color: "#233653"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ axisLabel: {
|
|
|
+ show: true,
|
|
|
+ color: '#666',
|
|
|
+ padding: 0,
|
|
|
+ formatter: function (value) {
|
|
|
+ return value
|
|
|
+ }
|
|
|
+ },
|
|
|
+ axisTick: {
|
|
|
+ show: false,
|
|
|
+ },
|
|
|
+ }
|
|
|
+
|
|
|
const series = [];
|
|
|
|
|
|
+ const arrKey = yAxisData.map(item => item.key);
|
|
|
+ const isIncludeAssignKey = arrKey.includes('csSlq') || arrKey.includes('jsSlq');
|
|
|
+ const isOneSelfKey = isIncludeAssignKey && arrKey.length === 1;
|
|
|
+
|
|
|
yAxisData.map((item, index) => {
|
|
|
const itemColor = color[index];
|
|
|
+ let yAxisIndex = Number(item.key === 'csSlq' || item.key === 'jsSlq')
|
|
|
+
|
|
|
+ if ( isOneSelfKey ) yAxisIndex = 0;
|
|
|
+
|
|
|
series.push({
|
|
|
name: item.title,
|
|
|
type: 'line',
|
|
@@ -163,6 +203,7 @@ export const getOrderAreaOptions = ({ xAxisData, yAxisData }) => {
|
|
|
showAllSymbol: true,
|
|
|
smooth: true,
|
|
|
symbolSize: 5,
|
|
|
+ yAxisIndex,
|
|
|
lineStyle: {
|
|
|
width: 2,
|
|
|
color: itemColor,
|
|
@@ -189,9 +230,9 @@ export const getOrderAreaOptions = ({ xAxisData, yAxisData }) => {
|
|
|
},
|
|
|
backgroundColor: '#fff',
|
|
|
grid: {
|
|
|
- top: 30,
|
|
|
- left: 40,
|
|
|
- right: 40,
|
|
|
+ top: 40,
|
|
|
+ // left: 40,
|
|
|
+ // right: 50,
|
|
|
bottom: 30,
|
|
|
},
|
|
|
legend: {
|
|
@@ -212,7 +253,7 @@ export const getOrderAreaOptions = ({ xAxisData, yAxisData }) => {
|
|
|
},
|
|
|
},
|
|
|
right: '4',
|
|
|
- top: '6',
|
|
|
+ top: '10',
|
|
|
},
|
|
|
xAxis: [{
|
|
|
type: "category",
|
|
@@ -239,37 +280,18 @@ export const getOrderAreaOptions = ({ xAxisData, yAxisData }) => {
|
|
|
boundaryGap: false,
|
|
|
data: xAxisData
|
|
|
}],
|
|
|
- yAxis: [{
|
|
|
- name: '',
|
|
|
- nameTextStyle: {
|
|
|
- fontSize: 12,
|
|
|
- align: 'right',
|
|
|
- padding: [10, 5],
|
|
|
+ yAxis: [
|
|
|
+ {
|
|
|
+ ...commonYAxisOptions,
|
|
|
+ position: 'left'
|
|
|
},
|
|
|
- min: 0,
|
|
|
- splitLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- type: 'dashed',
|
|
|
- },
|
|
|
- },
|
|
|
- axisLine: {
|
|
|
- show: false,
|
|
|
- lineStyle: {
|
|
|
- color: "#233653"
|
|
|
+ {
|
|
|
+ ...commonYAxisOptions,
|
|
|
+ position: 'right',
|
|
|
+ splitLine: {
|
|
|
+ show: false
|
|
|
}
|
|
|
- },
|
|
|
- axisLabel: {
|
|
|
- show: true,
|
|
|
- color: '#666',
|
|
|
- padding: 0,
|
|
|
- formatter: function (value) {
|
|
|
- return value
|
|
|
- }
|
|
|
- },
|
|
|
- axisTick: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
- }],
|
|
|
+ }
|
|
|
+ ],
|
|
|
}
|
|
|
}
|