Charts / Heatmap
A grid where cell colour encodes a numeric value. Reveals patterns across two categorical axes.
Pass this structure to the
:data prop.
[
['x' => 'Mon', 'y' => '9am', 'value' => 74],
['x' => 'Mon', 'y' => '10am', 'value' => 55],
['x' => 'Tue', 'y' => '9am', 'value' => 90],
]
<x-tayo::chart
type="heatmap"
:data="$data"
:height="420"
colors="default"
/>