Skip to content

Added renderLegendBlock prop

Compare
Choose a tag to compare
@grubersjoe grubersjoe released this 30 Aug 20:27
· 96 commits to main since this release

Added the renderColorLegend render prop to allow customizing how the color legend elements are rendered. For example, useful to add tooltips (compare the renderBlock prop): Story.

Thanks @AliceLeyou for the contribution!

<ActivityCalendar
  data={data}
  renderColorLegend={(block, level) => (
    <MuiTooltip title={`Level: ${level}`}>{block}</MuiTooltip>
  )}
/>