\n
\n
d.location),\n z: geoData.map((d) => d.z),\n text: geoData.map((d) => d.text),\n scrollZoom: true,\n displayModeBar: false,\n colorscale: 'Blackbody',\n reversescale: true,\n colorbar: {\n title: 'Temperature (°F)',\n },\n },\n ]}\n layout={{\n title: 'Current Temperature in Each US State',\n geo: {\n scope: 'usa',\n },\n autosize: true,\n\n paper_bgcolor: 'transparent',\n plot_bgcolor: 'transparent',\n font: {\n color: '#0489ae', // Change color here\n }, // Set the plotting area background color\n }}\n useResizeHandler={true}\n style={{ width: '100%', height: '100%' }}\n />\n \n \n
\n \n\n
\n row.abbreviation}\n rows={data}\n columns={columns}\n pagination\n autoPageSize\n disableSelectionOnClick\n getRowClassName={getRowClassName}\n sx={{\n '& .MuiDataGrid-columnHeaders': {\n backgroundColor: 'white', // Dark orange for warmth\n color: 'black',\n fontWeight: 'bold',\n },\n '& .MuiDataGrid-footerContainer': {\n backgroundColor: 'white', // Dark blue for coolness\n color: 'black',\n fontWeight: 'bold',\n },\n }}\n />\n
\n