Plot Workbench/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Mit dem Plot Arbeitsbereich kannst du den Arbeitsfläche, die Achsen, Beschriftungen, Titel, Linienstile und andere Elemente von Plots bearbeiten.")
(Created page with "==Werkzeuge==")
Line 18: Line 18:
The Plot workbench is an abstraction of the [https://matplotlib.org/ matplotlib] [[Python|Python]] library conveniently adapted for FreeCAD. To use the Plot functions, the version of {{incode|matplotlib}} installed in your system should match the Python version that FreeCAD uses, that is, if FreeCAD uses Python 2.7, you should have {{incode|matplotlib}} for the same version.
The Plot workbench is an abstraction of the [https://matplotlib.org/ matplotlib] [[Python|Python]] library conveniently adapted for FreeCAD. To use the Plot functions, the version of {{incode|matplotlib}} installed in your system should match the Python version that FreeCAD uses, that is, if FreeCAD uses Python 2.7, you should have {{incode|matplotlib}} for the same version.


==Tools==
==Werkzeuge==


* [[Image:Plot_Save.png|32px]] [[Plot_Save|Save plot]]: Saves the plot in several formats. You can select the output size and resolution too.
* [[Image:Plot_Save.png|32px]] [[Plot_Save|Save plot]]: Saves the plot in several formats. You can select the output size and resolution too.

Revision as of 15:39, 31 January 2020

Einleitung

Der Plot Arbeitsbereich ermöglicht es dem Anwender, von anderen Arbeitsbereichen und Werkzeugen erstellte Ausgabeplots zu bearbeiten und zu speichern.

Mit dem Plot Arbeitsbereich kannst du den Arbeitsfläche, die Achsen, Beschriftungen, Titel, Linienstile und andere Elemente von Plots bearbeiten.

The Plot workbench is an abstraction of the matplotlib Python library conveniently adapted for FreeCAD. To use the Plot functions, the version of matplotlib installed in your system should match the Python version that FreeCAD uses, that is, if FreeCAD uses Python 2.7, you should have matplotlib for the same version.

Werkzeuge

  • Save plot: Saves the plot in several formats. You can select the output size and resolution too.
  • Axes: Add, remove or edit plot axes.
  • Series: Edit series title and styling.
  • Grid: Show/hide grid.
  • Legend: Show/hide legend.
  • Labels: Edit labels.
  • Positions: Set elements positions.

Scripting

Since Plot module is a layer over matplotlib, you are free to use all matplotlib commands over plot instances. See scripting examples section to see examples.

Tutorial