Use echarts map to select province highlight in react

I use echarts to configure China Map in react. The currently selected item cannot be highlighted

< ReactEcharts
option= {{

title: false,
tooltip: {
  trigger: "item",
},
legend: false,
visualMap: {
  min: 0,
  max: maxData,
  left: "left",
  top: "bottom",
  calculable: true,
  inRange: {
    color: ["-sharpCCEDF8", "-sharp99DCF1", "-sharp33B9E2"]
  },
},
toolbox: {
  show: false,
},
series: [
  {
    name: "",
    type: "map",
    mapType: "china",
    roam: false,
    zoom: 1.2, // 
    showLengendSymbol: false, // 
    label: {
      normal: {
        show: false,
        color: "-sharpfff",
      },
      emphasis: {
        show: true,
        color: "-sharpfff",
        areaColor: "-sharp00A7DB",
      },
    },
    itemStyle: {
      borderWidth: 0,
    },
    emphasis: {
      label: {
        show: true,
        color: "-sharpfff",
      },
      itemStyle: {
        show: true,
        areaColor: "-sharp00A7DB",
      },
    },
    data: dataLst
  }
]

}}
onEvents= {onEvents}
style= {{height: "295pxframes, width:" 100%"}
className= "react_for_echarts"
/ >
let onEvents= {
click: this.onChartClick,
}

I configured the map highlight color, but when I clicked, the page was refreshed and the selected province was not highlighted.

Apr.07,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b36cd5-2b7bd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b36cd5-2b7bd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?