无法根据文本长度调整数据透视表的大小。
使用PivotTableChartPlugin超集打印数据透视表。
import PivotTableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table';
因此,现在无法直接编辑数据透视表。 因为超集不会自定义数据透视表组件。
所以我尝试更改ChartRenderer
的宽度。
prepareChartProps() {
const {
// N18016: width,
// N18016: height,
annotationData,
datasource,
filters,
formData,
queryResponse,
setControlValue,
} = this.props;
const width = 2000;
const height = 2000;
return this.createChartProps({
width,
height,
annotationData,
datasource,
filters,
formData,
onAddFilter: this.handleAddFilter,
onError: this.handleRenderFailure,
payload: queryResponse,
setControlValue,
setTooltip: this.setTooltip,
});
}
这是准备ChartRenderer道具的一部分。
但是没有用。 有没有办法使用ChartRenderer更改数据透视表的宽度?
要根据文本长度调整数据透视表的大小。