mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
19 lines
522 B
Plaintext
19 lines
522 B
Plaintext
---
|
|
// legend=true at call site is inert — Chart reads legend from chart data, not props.
|
|
import CardTitle from '@ui/CardTitle.astro';
|
|
import Chart from '@ui/Chart.astro';
|
|
import DropdownDays from '@ui/DropdownDays.astro';
|
|
---
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="d-flex">
|
|
<CardTitle>Social referrals</CardTitle>
|
|
<div class="ms-auto">
|
|
<DropdownDays id="social-referrals" label="Select time range for sales data" />
|
|
</div>
|
|
</div>
|
|
<Chart chartId="social-referrals" />
|
|
</div>
|
|
</div>
|