You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the controller of a component,
if I want to hide the button 'Download SVG', I need to disable BOTH SVG and PNG editorOptions: { data: $ctrl.dataPackage, enableSvgDownload: false, enablePngDownload: false }
If I specify only enableSvgDownload: false, the button is created.
Is it an expected behavior ?
if yes, it is a bit confusing because of the labels "svg download" <-> "download svg" Suggestion:
1> change the button title to "download figures" that will list both options "... as SVG" and "... as PNG"
2> or create 2 distinct buttons to mirror the 2 distinct options to disable.
The text was updated successfully, but these errors were encountered:
Technically the buttons are supposed to represent "Download SVG as SVG" and "Download SVG as PNG". This feature will not download not SVG based figures. If the title were "Download figures" it may be just a confusing when SVG figures are not found.
hmm but (basic) user don't know that the figure are in SVG or not ... he just want to download the pict in the middle of the screen lol ...
do you have some figure not in SVG ?
in the controller of a component,
if I want to hide the button 'Download SVG', I need to disable BOTH SVG and PNG
editorOptions: { data: $ctrl.dataPackage, enableSvgDownload: false, enablePngDownload: false }
If I specify only
enableSvgDownload: false
, the button is created.Is it an expected behavior ?
if yes, it is a bit confusing because of the labels "svg download" <-> "download svg"
Suggestion:
1> change the button title to "download figures" that will list both options "... as SVG" and "... as PNG"
2> or create 2 distinct buttons to mirror the 2 distinct options to disable.
The text was updated successfully, but these errors were encountered: