Skip to content

enclose-rect & useBins

Compare
Choose a tag to compare
@emeeks emeeks released this 10 Jan 21:27
· 2422 commits to main since this release

Some minor new features:

  • enclose-rect: All frames now honor a new enclose-rect annotation type that surrounds the array of coordinates (for <ORFrame> or <XYFrame>) or the array of ids (for <NetworkFrame>) with a bounding box.
    screen shot 2018-01-10 at 1 26 51 pm

  • useBins: Bucketized summary types in <ORFrame> (violin, joy, histogram, heatmap) now honor a useBins prop in the passed summaryType. This defaults to true, so that under the hood the summary visualization still uses a binning function (D3's histogram) but if set to useBins: false it will assume that the passed array of data is a set of coordinates with which to draw the summaryType. This is useful for when you have precalculated positions for your summary visualizations.