|
@@ -564,14 +564,14 @@ function setStatisticFrequency(e){
|
|
|
|
|
|
let series_item = {
|
|
|
data: item.Value.map(_ =>[_.X,_.Y]),
|
|
|
- dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
|
|
|
- type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
|
|
|
+ dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
|
|
|
+ type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
|
|
|
yAxis: index,
|
|
|
name: item.Name,
|
|
|
nameZh: item.Name,
|
|
|
nameEn: item.NameEn||item.Name,
|
|
|
color: item.Color,
|
|
|
- lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth)||3,
|
|
|
+ lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth)||3,
|
|
|
chartType: 'linear',
|
|
|
zIndex:1
|
|
|
}
|
|
@@ -654,17 +654,23 @@ function setSplineOpt(e){
|
|
|
dataGrouping:{
|
|
|
enabled:false
|
|
|
},
|
|
|
- type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
|
|
|
- dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
|
|
|
+ type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
|
|
|
+ dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
|
|
|
yAxis:index,
|
|
|
name:temName,
|
|
|
nameZh:temName,
|
|
|
nameEn:temNameEN,
|
|
|
color: item.ChartColor,
|
|
|
- lineWidth: Number(item.ChartWidth)||(chartTheme&&chartTheme.lineOptions.lineWidth)||1,
|
|
|
+ lineWidth: Number(item.ChartWidth)||(chartTheme&&chartTheme.lineOptionList[index].lineWidth)||1,
|
|
|
visible:true,
|
|
|
LatestDate:item.LatestDate,
|
|
|
LatestValue:item.LatestValue,
|
|
|
+ marker: {
|
|
|
+ enabled:chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none',
|
|
|
+ symbol: chartTheme.lineOptionList[index].markType || 'circle',
|
|
|
+ fillColor:chartTheme.lineOptionList[index].markColor,
|
|
|
+ radius: chartTheme.lineOptionList[index].markSize
|
|
|
+ },
|
|
|
...predict_params
|
|
|
}
|
|
|
item.DataList = item.DataList || [];
|
|
@@ -843,13 +849,19 @@ function setSeasonOpt(e){
|
|
|
dataGrouping:{
|
|
|
enabled:false
|
|
|
},
|
|
|
- type: (chartTheme&&chartTheme.lineOptions.lineType) || data.ChartStyle,
|
|
|
- dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
|
|
|
+ type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || data.ChartStyle,
|
|
|
+ dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
|
|
|
yAxis:0,
|
|
|
name:item.ChartLegend,
|
|
|
- lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 1,
|
|
|
+ lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 1,
|
|
|
color:colorsArr.slice(-chartDataHandle.length)[index],
|
|
|
visible:true,
|
|
|
+ marker: {
|
|
|
+ enabled:chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none',
|
|
|
+ symbol: chartTheme.lineOptionList[index].markType || 'circle',
|
|
|
+ fillColor:chartTheme.lineOptionList[index].markColor,
|
|
|
+ radius: chartTheme.lineOptionList[index].markSize
|
|
|
+ },
|
|
|
...predict_params
|
|
|
}
|
|
|
item.DataList=item.DataList||[]
|
|
@@ -1371,7 +1383,7 @@ function setScatterOptions(data){
|
|
|
visible:true,
|
|
|
chartType: 'linear',
|
|
|
marker: {
|
|
|
- radius: (chartTheme&&chartTheme.lineOptions.radius)||5,
|
|
|
+ radius: (chartTheme&&chartTheme.lineOptionList[0].radius)||5,
|
|
|
},
|
|
|
}
|
|
|
real_data.forEach(_ => {
|
|
@@ -1591,21 +1603,21 @@ const setCommodityChart = (leftMin,leftMax) => {
|
|
|
}
|
|
|
|
|
|
//数据列
|
|
|
- data.forEach(item => {
|
|
|
+ data.forEach((item,index) => {
|
|
|
//处理首或/尾全是无效数据的以null填充
|
|
|
let filterData = filterInvalidData(item)
|
|
|
|
|
|
let serie_item = {
|
|
|
data: filterData,
|
|
|
- type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
|
|
|
- dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
|
|
|
+ type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
|
|
|
+ dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
|
|
|
yAxis: 0,
|
|
|
name: item.Name,
|
|
|
nameZh: item.Name,
|
|
|
nameEn: item.NameEn,
|
|
|
color: item.Color,
|
|
|
chartType: 'linear',
|
|
|
- lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 3,
|
|
|
+ lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 3,
|
|
|
visible: true,
|
|
|
marker: {
|
|
|
enabled: false
|
|
@@ -1789,18 +1801,18 @@ function initRelevanceChart(data){
|
|
|
|
|
|
//处理series
|
|
|
let seriesData=[]
|
|
|
- data.YDataList.forEach(item=>{
|
|
|
+ data.YDataList.forEach((item,index)=>{
|
|
|
let serie_item = {
|
|
|
data: item.Value,
|
|
|
- type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
|
|
|
- dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
|
|
|
+ type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
|
|
|
+ dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
|
|
|
yAxis: 0,
|
|
|
name: data.ChartInfo.ChartName,
|
|
|
nameZh: data.ChartInfo.ChartName,
|
|
|
nameEn: data.ChartInfo.ChartNameEn,
|
|
|
color: item.Color,
|
|
|
chartType: 'linear',
|
|
|
- lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 3,
|
|
|
+ lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 3,
|
|
|
visible:true,
|
|
|
marker: {
|
|
|
enabled: false
|
|
@@ -1932,7 +1944,7 @@ function setSectionScatterChart({DataResp,ChartInfo}) {
|
|
|
|
|
|
//数据列
|
|
|
let series = [];
|
|
|
- DataList.forEach(item => {
|
|
|
+ DataList.forEach((item,index) => {
|
|
|
//数据列
|
|
|
let series_item = {
|
|
|
data: [],
|
|
@@ -1946,7 +1958,7 @@ function setSectionScatterChart({DataResp,ChartInfo}) {
|
|
|
zIndex:1,
|
|
|
visible: true,
|
|
|
marker: {
|
|
|
- radius: (chartTheme&&chartTheme.lineOptions.radius)||5,
|
|
|
+ radius: (chartTheme&&chartTheme.lineOptionList[index].radius)||5,
|
|
|
},
|
|
|
}
|
|
|
item.EdbInfoList.forEach(_ => {
|
|
@@ -2273,18 +2285,18 @@ function setRadarChart({DataResp,EdbInfoList,ChartInfo}) {
|
|
|
|
|
|
//系列
|
|
|
let series = [];
|
|
|
- YDataList.forEach(item => {
|
|
|
+ YDataList.forEach((item,index) => {
|
|
|
let serie_item = {
|
|
|
name: item.Name || item.Date,
|
|
|
nameZh: item.Name || item.Date,
|
|
|
nameEn: item.Date,
|
|
|
data: item.Value,
|
|
|
pointPlacement: 'on',
|
|
|
- type: (chartTheme&&chartTheme.lineOptions.lineType) || 'line',
|
|
|
- dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
|
|
|
+ type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'line',
|
|
|
+ dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
|
|
|
yAxis: 0,
|
|
|
color: item.Color,
|
|
|
- lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 1,
|
|
|
+ lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 1,
|
|
|
chartType: 'linear'
|
|
|
};
|
|
|
series.push(serie_item)
|