We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
showTooltip does not accept false only {false}
false
{false}
Using docs site
<AreaMap data={la_zip_sales} areaCol=zip_code geoJsonUrl='/geo-json/ca_california_zip_codes_geo_1.min.json' geoId=ZCTA5CE10 value=sales showTooltip=false />
should hide the tooltip but does not
annoyance
Workaround: pass as boolean not string
<AreaMap data={la_zip_sales} areaCol=zip_code geoJsonUrl='/geo-json/ca_california_zip_codes_geo_1.min.json' geoId=ZCTA5CE10 value=sales showTooltip={false} />
The text was updated successfully, but these errors were encountered:
kwongz
No branches or pull requests
Describe the bug
showTooltip does not accept
false
only{false}
Steps to Reproduce
Using docs site
should hide the tooltip but does not
Severity
annoyance
Additional Information, or Workarounds
Workaround: pass as boolean not string
The text was updated successfully, but these errors were encountered: