Skip to content

Ordinal Brushing

Compare
Choose a tag to compare
@emeeks emeeks released this 21 Aug 17:09
· 1885 commits to main since this release

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:
itt_muse_3

Fixes

  • heatmap areaType would sometimes create an extra row or column on the bottom and/or right. This should be fixed now