shadcn-vue/apps/www/src/content/docs/charts/bar.md
2023-12-05 19:18:29 +08:00

729 B

title description label
Bar Displays a callout for user attention. Alpha

Installation

Only works with Vue >3.3

Run the following command

npx shadcn-vue@latest add chart-bar

Update css

Add the following tooltip styling to your tailwind.css file:

@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;
  }