mirror of https://github.com/buster-so/buster.git
update border for chart
This commit is contained in:
parent
71327e0c5d
commit
94d4d447a9
|
@ -25,7 +25,6 @@ export const BusterChart: React.FC<BusterChartProps> = React.memo(
|
|||
groupByMethod = 'sum',
|
||||
loading = false,
|
||||
className = '',
|
||||
bordered = true,
|
||||
animate = true,
|
||||
animateLegend = true,
|
||||
id,
|
||||
|
@ -153,7 +152,7 @@ export const BusterChart: React.FC<BusterChartProps> = React.memo(
|
|||
|
||||
return (
|
||||
<BusterChartErrorWrapper>
|
||||
<BusterChartWrapper id={id} className={className} bordered={bordered} loading={loading}>
|
||||
<BusterChartWrapper id={id} className={className} loading={loading}>
|
||||
{SwitchComponent()}
|
||||
</BusterChartWrapper>
|
||||
</BusterChartErrorWrapper>
|
||||
|
|
|
@ -6,7 +6,6 @@ export type BusterChartProps = {
|
|||
groupByMethod?: 'sum' | 'average' | 'count';
|
||||
loading?: boolean;
|
||||
className?: string;
|
||||
bordered?: boolean;
|
||||
animate?: boolean;
|
||||
animateLegend?: boolean;
|
||||
id?: string;
|
||||
|
|
Loading…
Reference in New Issue