update
This commit is contained in:
		@@ -43,7 +43,7 @@ function FanInfo(props) {
 | 
			
		||||
    ],
 | 
			
		||||
    oddRowBGC: "#042444",
 | 
			
		||||
    evenRowBGC: "#042c4c",
 | 
			
		||||
    columnWidth: [50, 144],
 | 
			
		||||
    columnWidth: [50, 136],
 | 
			
		||||
    rowNum,
 | 
			
		||||
    hoverPause: false,
 | 
			
		||||
    data: attachStyle(data),
 | 
			
		||||
 
 | 
			
		||||
@@ -64,7 +64,6 @@ function FaultTotal(props) {
 | 
			
		||||
export default FaultTotal;
 | 
			
		||||
 | 
			
		||||
function preHandleStatisticData(data, legend) {
 | 
			
		||||
  console.table(data);
 | 
			
		||||
  const obj = {};
 | 
			
		||||
  data.forEach((item) => {
 | 
			
		||||
    obj[item.name] = {};
 | 
			
		||||
@@ -86,17 +85,18 @@ function preHandleStatisticData(data, legend) {
 | 
			
		||||
      data: [],
 | 
			
		||||
    }));
 | 
			
		||||
 | 
			
		||||
  const seriesData = [];
 | 
			
		||||
  legend.forEach((item, index) => {
 | 
			
		||||
    series[index].name = item;
 | 
			
		||||
    data.forEach((d, index) => {
 | 
			
		||||
      if (index == 0) {
 | 
			
		||||
        series[index].label = {
 | 
			
		||||
          show: true,
 | 
			
		||||
          position: "top",
 | 
			
		||||
          distance: 10,
 | 
			
		||||
          color: "#fffc",
 | 
			
		||||
        };
 | 
			
		||||
      }
 | 
			
		||||
    data.forEach((d, idx) => {
 | 
			
		||||
      // if (index == 0) {
 | 
			
		||||
      //   series[index].label = {
 | 
			
		||||
      //     show: true,
 | 
			
		||||
      //     position: "top",
 | 
			
		||||
      //     distance: 10,
 | 
			
		||||
      //     color: "#fffc",
 | 
			
		||||
      //   };
 | 
			
		||||
      // }
 | 
			
		||||
      series[index].data.push(obj[d.name][item] || 0);
 | 
			
		||||
    });
 | 
			
		||||
  });
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@
 | 
			
		||||
    place-items: center;
 | 
			
		||||
    background: #fff;
 | 
			
		||||
    position: fixed;
 | 
			
		||||
    bottom: 0;
 | 
			
		||||
    bottom: -5vh;
 | 
			
		||||
    opacity: 0;
 | 
			
		||||
    left: 50%;
 | 
			
		||||
    transform: translateX(-50%);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user