Instead of
<Tooltip header={(data) => formatDate(data.date, "eee, MMMM do")} let:data>
<TooltipItem label="value" value={data.value} />
</Tooltip>
a better structure
<Tooltip.Root let:data>
<Tooltip.Header>{formatDate(data.date, "eee, MMMM do")}</Tooltip.Header>
<Tooltip.List>
<Tooltip.Item label="value" value={data.value} />
</Tooltip.List>
</Tooltip.Root>
With this structure, TooltipHeader will need to use col-span-full since it will be within the default slots's grid
Instead of
a better structure
With this structure,
TooltipHeaderwill need to usecol-span-fullsince it will be within the default slots'sgrid