Docs
Line
Line
Displays a callout for user attention.
Installation
Only works with Vue >3.3
Run the following command
bash
npx shadcn-vue@latest add chart-line
Update css
Add the following tooltip styling to your tailwind.css
file:
css
@layer base {
:root {
/* ... */
--vis-tooltip-background-color: none !important;
--vis-tooltip-border-color: none !important;
--vis-tooltip-text-color: none !important;
--vis-tooltip-shadow-color: none !important;
--vis-tooltip-backdrop-filter: none !important;
--vis-tooltip-padding: none !important;
}