to export svg images for the paper, had to add the below lines:
config = {
'toImageButtonOptions': {
'format': 'svg', # one of png, svg, jpeg, webp
'filename': 'custom_image',
'height': 500,
'width': 700,
'scale': 6 # Multiply title/legend/axis/canvas sizes by this factor
}
}
self._fig_DSV_surface.show(config=config)
to export svg images for the paper, had to add the below lines: