Main Content

plottools

(Removed) Show or hide plot tools

    plottools has been removed. Use plotedit or the Property Inspector instead.

    Description

    plottools shows the plot tools on the current figure. If no current figure exists, plottools creates one.

    example

    plottools(state) changes the state of the plot tools on the figure. For example, plottools("on") shows the plot tools.

    plottools(state,tool) operates on the specified tool only.

    plottools(fig,___) operates on the specified figure instead of the current figure. The input fig can precede any of the input argument combinations in the previous syntaxes.

    Examples

    collapse all

    Show the plot tools by calling the plottools function. The tools open in the same configuration as last time you invoked the tools.

    plot(1:10);
    plottools

    Figure window with the Figure Palette to the left, Plot Browser to the right, and Property Editor below

    Input Arguments

    collapse all

    Plot tools state, specified as one of these values:

    • "on" — Show plot tools.

    • "off" — Hide plot tools.

    • "toggle" — Switch the plot tools state between the "on" and "off" states.

    Plot tool, specified as one of these values:

    • "figurepalette" — Operate on the Figure Palette.

    • "plotbrowser" — Operate on the Plot Browser.

    • "propertyeditor" — Operate on the Property Editor.

    Target figure, specified as a Figure object. Use fig to show or hide plot tools on a specific figure instead of the current figure.

    Version History

    Introduced before R2006a

    collapse all