Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ansys/dpf/core/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,9 @@ def plot_chart(self, fields_container):
substr = fields_container[0].name.split("_")
pyplot.ylabel(substr[0] + fieldMin.unit)
pyplot.title(substr[0] + ": min/max values over time")
return pyplot.legend()
pyplot.legend()
pyplot.show()
return pyplot.gcf()

def plot_contour(
self,
Expand Down