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',
|
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>
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue