indiespirit / react-native-chart-kit

đź“ŠReact Native Chart Kit: Line Chart, Bezier Line Chart, Progress Ring, Bar chart, Pie chart, Contribution graph (heatmap)

Home Page:https://expo.io/@indiespirit/react-native-chart-kit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to set the borderRadius of each square for the ContributionGraph

SegFault42 opened this issue · comments

I would like to have something like on github
Screenshot 2023-07-07 at 09 51 26

Is it possible to set the borderRadius ?

You can add tooltipDataAttrs and return rx ry form the function

<ContributionGraph
   ...
    tooltipDataAttrs={() => {
        return {rx: 4, ry: 4};
    }}
/>