# Heatmap
The heatmap is a representation of day-wise data (similar to the GitHub Contribution Graph). It spaces out data values linearly, across 5 levels (zero data kept exclusive).
In this case, our chart has four parts,
<v-frappe-chart
type="heatmap"
:data="{
'1461744959': 20,
'1463673055': 113,
'1476892421': 57,
}"
:start="startDate"
:end="endDate"
/>
Copy
If you wish you can configure the radius of heat squares using,
:radius="2" // default 0
6 radius
Copy
Setting discreteDomains
to 0
allows for a continous distribution of heat squares (as on GitHub), rather than showing the month-wise separation. A different set of colors can also be specified.
Copy