Im trying to modify the toolbar
so it only shows the save tool. I want other tools enabled, just not displayed on the chart.
I tried creating a custom toolBarBox, but I could not figure out how to add it to my plot. eg:
toolBarBox = ToolbarBox()
toolBarBox.toolbar = Toolbar(tools=[SaveTool()])
toolBarBox.toolbar_location = "left"
p.add_layout(toolBarBox) #this line does not work
And tips/direction would be much appreciated!