Main Content

showplottool

(Removed) Show or hide specified plot tool

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

    Description

    showplottool(tool) shows the specified plot tool on the current figure. If no current figure exists, showplottool creates one.

    example

    showplottool(state,tool) changes the state of the specified plot tool on the current figure.

    showplottool(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 Property Editor on a figure by calling the showplottool function. The tool opens in the same configuration as last time you invoked the tool.

    plot(1:10);
    showplottool("propertyeditor")

    Property Editor tool below a figure window

    Input Arguments

    collapse all

    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.

    Plot tool state, specified as one of these values:

    • "on" — Show plot tool.

    • "off" — Hide plot tool.

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

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

    Version History

    Introduced before R2006a

    collapse all