From 94d4d447a9fc649ec237cc3db744dc81b8971eef Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Wed, 26 Feb 2025 17:55:42 -0700 Subject: [PATCH] update border for chart --- web/src/components/ui/charts/BusterChart.tsx | 3 +-- web/src/components/ui/charts/interfaces/interfaces.ts | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/web/src/components/ui/charts/BusterChart.tsx b/web/src/components/ui/charts/BusterChart.tsx index 8fe67a81d..f08270084 100644 --- a/web/src/components/ui/charts/BusterChart.tsx +++ b/web/src/components/ui/charts/BusterChart.tsx @@ -25,7 +25,6 @@ export const BusterChart: React.FC = React.memo( groupByMethod = 'sum', loading = false, className = '', - bordered = true, animate = true, animateLegend = true, id, @@ -153,7 +152,7 @@ export const BusterChart: React.FC = React.memo( return ( - + {SwitchComponent()} diff --git a/web/src/components/ui/charts/interfaces/interfaces.ts b/web/src/components/ui/charts/interfaces/interfaces.ts index 6fdd37b06..0e94c0ab4 100644 --- a/web/src/components/ui/charts/interfaces/interfaces.ts +++ b/web/src/components/ui/charts/interfaces/interfaces.ts @@ -6,7 +6,6 @@ export type BusterChartProps = { groupByMethod?: 'sum' | 'average' | 'count'; loading?: boolean; className?: string; - bordered?: boolean; animate?: boolean; animateLegend?: boolean; id?: string;