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
Currently, the only way to reliably provide the same fill to an entire <Scatter /> is to provide a dataAccessor.fill. While <MultiScatter /> exposes fieldAccessors.color, relying on it depends on const fillValue = propResolver(datum, dataAccessors.fill || dataAccessors.x); resolving to a non-finite value. That's wonky!
Providing fieldAccessor.color should reliably determine fill for an entire <Scatter />.
The text was updated successfully, but these errors were encountered:
Currently, the only way to reliably provide the same fill to an entire
<Scatter />
is to provide adataAccessor.fill
. While<MultiScatter />
exposesfieldAccessors.color
, relying on it depends onconst fillValue = propResolver(datum, dataAccessors.fill || dataAccessors.x);
resolving to a non-finite value. That's wonky!Providing
fieldAccessor.color
should reliably determine fill for an entire<Scatter />
.The text was updated successfully, but these errors were encountered: