|
@@ -724,7 +724,8 @@ const initBarData = (data: { XEdbIdValue: number[]; YDataList: any; EdbInfoList:
|
|
|
return setBarChart()
|
|
|
}
|
|
|
const setBarChart = () => {
|
|
|
- const {barDateList,barXIdData,chartLimit,barEdbData,chartInfo} = barChartRenderData.value;
|
|
|
+ const {barDateList,barXIdData,barEdbData,chartInfo} = barChartRenderData.value;
|
|
|
+ const { chartLimit } = state;
|
|
|
let seriesData: { data: any; type: string; yAxis: number; name: any; color: any; chartType: string; }[] = [];
|
|
|
const data = _.cloneDeep(barDateList);
|
|
|
|
|
@@ -1597,7 +1598,8 @@ const setRadarChart = () => {
|
|
|
categories,
|
|
|
labels: {
|
|
|
allowOverlap: true,
|
|
|
- autoRotationLimit: 40,
|
|
|
+ // autoRotationLimit: 40,
|
|
|
+ distance: 10,
|
|
|
style: {
|
|
|
...chartTheme&&chartTheme.xAxisOptions.style
|
|
|
}
|
|
@@ -1830,7 +1832,8 @@ const setAxisPlotLines = (axis: number, axisType: any = null) => {
|
|
|
let markerValue:number;
|
|
|
if (isXDateAxis) {
|
|
|
//季节图x轴额外拼个年份
|
|
|
- let nowYear = new Date().getFullYear();
|
|
|
+ let nowYear = ChartType===2 ? new Date(state.dataList[0].DataList[1].DataList
|
|
|
+ [0].DataTimestamp).getFullYear() : '';
|
|
|
markerValue =
|
|
|
ChartType === 2
|
|
|
? new Date(`${nowYear}-${_.value}`).getTime()
|
|
@@ -1871,7 +1874,8 @@ const setAxisPlotAreas = (axis: number, axisType: any = null) => {
|
|
|
let fromMarkerValue:number, toMarkerValue:number;
|
|
|
if (isXDateAxis) {
|
|
|
//季节图x轴额外拼个年份
|
|
|
- let nowYear = new Date().getFullYear();
|
|
|
+ let nowYear = ChartType===2 ? new Date(state.dataList[0].DataList[1].DataList
|
|
|
+ [0].DataTimestamp).getFullYear() : '';
|
|
|
fromMarkerValue =
|
|
|
ChartType === 2
|
|
|
? new Date(`${nowYear}-${_.fromValue}`).getTime()
|