Save the plot to file. Calls the `holoviews.save` utility, refer to its documentation for a full description of the available kwargs. Parameters ---------- filename: string, pathlib.Path or IO object The path or BytesIO/StringIO object to save to
(self, filename, **kwargs)
| 837 | return args |
| 838 | |
| 839 | def save(self, filename, **kwargs): |
| 840 | """Save the plot to file. |
| 841 | |
| 842 | Calls the `holoviews.save` utility, refer to its documentation |
| 843 | for a full description of the available kwargs. |
| 844 | |
| 845 | Parameters |
| 846 | ---------- |
| 847 | filename: string, pathlib.Path or IO object |
| 848 | The path or BytesIO/StringIO object to save to |
| 849 | """ |
| 850 | _hv.save(self._hvplot, filename, **kwargs) |
| 851 | |
| 852 | def settings(self): |
| 853 | """Return a dictionary of the customized settings. |
no outgoing calls