You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you make a pie chart of a field in which some values are empty strings '', the empty-string values each appear in the pie chart as a single section with a label equal to the index of the value in the backend dataframe.
For example, using the countries data, there are four countries with an empty string in the Region field, which a pie chart of Regions shows as 66, 115, 134, and 214:
Expected behaviour:
Fields with empty strings should either be combined into one pie section with the label '' (preferred), or be omitted altogether (this is what happens in bar charts).
The text was updated successfully, but these errors were encountered:
Description:
If you make a pie chart of a field in which some values are empty strings
''
, the empty-string values each appear in the pie chart as a single section with a label equal to the index of the value in the backend dataframe.For example, using the
countries
data, there are four countries with an empty string in theRegion
field, which a pie chart ofRegions
shows as66
,115
,134
, and214
:Expected behaviour:
Fields with empty strings should either be combined into one pie section with the label
''
(preferred), or be omitted altogether (this is what happens in bar charts).The text was updated successfully, but these errors were encountered: