saha23412 commented on issue #35029:
URL: https://github.com/apache/superset/issues/35029#issuecomment-3266049422
Thanks, I fixed the code block in the file
superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/transformProps.ts
where null was passed instead of legend margin
It was like that:
` const chartPadding = getPadding(
showLegend,
legendOrientation,
addYAxisTitleOffset,
zoomable,
null,
addXAxisTitleOffset,
yAxisTitlePosition,
yAxisTitleCalculatedMargin,
xAxisTitleCalculatedMargin,
);`
Corrected to:
` const chartPadding = getPadding(
showLegend,
legendOrientation,
addYAxisTitleOffset,
zoomable,
legendMargin,
addXAxisTitleOffset,
yAxisTitlePosition,
yAxisTitleCalculatedMargin,
xAxisTitleCalculatedMargin,
);`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]