update border for chart

This commit is contained in:
Nate Kelley 2025-02-26 17:55:42 -07:00
parent 71327e0c5d
commit 94d4d447a9
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 1 additions and 3 deletions

View File

@ -25,7 +25,6 @@ export const BusterChart: React.FC<BusterChartProps> = React.memo(
groupByMethod = 'sum', groupByMethod = 'sum',
loading = false, loading = false,
className = '', className = '',
bordered = true,
animate = true, animate = true,
animateLegend = true, animateLegend = true,
id, id,
@ -153,7 +152,7 @@ export const BusterChart: React.FC<BusterChartProps> = React.memo(
return ( return (
<BusterChartErrorWrapper> <BusterChartErrorWrapper>
<BusterChartWrapper id={id} className={className} bordered={bordered} loading={loading}> <BusterChartWrapper id={id} className={className} loading={loading}>
{SwitchComponent()} {SwitchComponent()}
</BusterChartWrapper> </BusterChartWrapper>
</BusterChartErrorWrapper> </BusterChartErrorWrapper>

View File

@ -6,7 +6,6 @@ export type BusterChartProps = {
groupByMethod?: 'sum' | 'average' | 'count'; groupByMethod?: 'sum' | 'average' | 'count';
loading?: boolean; loading?: boolean;
className?: string; className?: string;
bordered?: boolean;
animate?: boolean; animate?: boolean;
animateLegend?: boolean; animateLegend?: boolean;
id?: string; id?: string;