<!-- I am trying and failing to remove the legend from my geo chart. Any gurus out there that can help fix this? ` if ( typeof ChartGeo !== "undefined" && chartType === ChartGeo.ChoroplethController.id ) { options.scales = { projection: { axis: "x", projection: "equalEarth", }, color: { axis: "x", range: isDarkMode ? MAP_COLOR_SCALE_DARK : MAP_COLOR_SCALE_LIGHT, missing: isDarkMode ? "#2a2a2a" : "#e0e0e0", interpolate: false, quantize: 5, legend: { display: false }, }, }; options.onClick = (evt, elems) => { if (elems && elems.length > 0) { const elem = elems[0].element.$context.raw; console.log( "Clicked on map area:", elem?.feature?.properties?.name || elem?.feature?.properties?.ADMIN, "Value:", elem?.value, ); } }; } return options; } `