fix(LineChart): remove unused fillWidth prop
This commit is contained in:
parent
2ea185b710
commit
df9664624f
@ -20,7 +20,6 @@ export type LineChartProps = {
|
||||
|
||||
export function LineChart({
|
||||
data,
|
||||
fullWidth = false,
|
||||
title = '',
|
||||
xAxis,
|
||||
xAxisType = 'temporal',
|
||||
@ -89,6 +88,6 @@ export function LineChart({
|
||||
<LoadingSpinner />
|
||||
</div>
|
||||
) : (
|
||||
<VegaLite fullWidth={fullWidth} data={vegaData} spec={spec} />
|
||||
<VegaLite data={vegaData} spec={spec} />
|
||||
);
|
||||
}
|
||||
|
||||
@ -35,10 +35,6 @@ Must be an object with one of the following properties: `url` or `values` \n\n \
|
||||
yAxisType: {
|
||||
description: 'Type of the Y-axis',
|
||||
},
|
||||
fullWidth: {
|
||||
description:
|
||||
'Whether the component should be rendered as full bleed or not',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user