|
@@ -665,12 +665,12 @@ function setSplineOpt(e){
|
|
|
visible:true,
|
|
|
LatestDate:item.LatestDate,
|
|
|
LatestValue:item.LatestValue,
|
|
|
- marker: {
|
|
|
- enabled:chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none',
|
|
|
+ marker:chartTheme && chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none'?{
|
|
|
+ enabled:true,
|
|
|
symbol: chartTheme.lineOptionList[index].markType || 'circle',
|
|
|
fillColor:chartTheme.lineOptionList[index].markColor,
|
|
|
radius: chartTheme.lineOptionList[index].markSize
|
|
|
- },
|
|
|
+ }:{},
|
|
|
...predict_params
|
|
|
}
|
|
|
item.DataList = item.DataList || [];
|
|
@@ -856,12 +856,12 @@ function setSeasonOpt(e){
|
|
|
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',
|
|
|
+ marker:chartTheme && chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none'?{
|
|
|
+ enabled:true,
|
|
|
symbol: chartTheme.lineOptionList[index].markType || 'circle',
|
|
|
fillColor:chartTheme.lineOptionList[index].markColor,
|
|
|
radius: chartTheme.lineOptionList[index].markSize
|
|
|
- },
|
|
|
+ }:{},
|
|
|
...predict_params
|
|
|
}
|
|
|
item.DataList=item.DataList||[]
|