UNPKG
@quartic/bokehjs
Version:
latest (0.12.5)
0.12.5
Interactive, novel data visualization
github.com/bokeh/bokeh
bokeh/bokeh
@quartic/bokehjs
/
src
/
coffee
/
models
/
tools
/
actions
/
save_tool.coffee
12 lines
(8 loc)
•
292 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ActionTool, ActionToolView} from
"./action_tool"
export
class
SaveToolView
extends
ActionToolView
do
: () ->
@plot_view
.save(
"bokeh_plot.png"
) export
class
SaveTool
extends
ActionTool
default_view: SaveToolView type:
"SaveTool"
tool_name:
"Save"
icon:
"bk-tool-icon-save"