|
@@ -631,8 +631,12 @@ func BarChartData(mappingList []*models.ChartEdbInfoMapping, edbDataListMap map[
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ yDate := "0000-00-00"
|
|
|
+ if !maxDate.IsZero() {
|
|
|
+ yDate = maxDate.Format(utils.FormatDate)
|
|
|
+ }
|
|
|
yDataList = append(yDataList, models.YData{
|
|
|
- Date: maxDate.Format(utils.FormatDate),
|
|
|
+ Date: yDate,
|
|
|
Value: findDataList,
|
|
|
Color: barChartInfoDate.Color,
|
|
|
Name: barChartInfoDate.Name,
|