Ordinal Brushing
Features
- OrdinalFrame when sent an interaction prop that doesn't specify
columnsBrush
will now enable snapped brushing of the entire frame. So send something like this:
<OrdinalFrame
{...otherProps}
interaction={{
extent: ["Jason", "Betty"],
end: e => {
console.info("e", e)
},
during: e => {
console.info("during e", e)
}
}}
Will get you something like this:
Fixes
heatmap
areaType would sometimes create an extra row or column on the bottom and/or right. This should be fixed now