How can I show / hide Max / Min results on a contour plot?
Ayush Kumar
Member, Moderator, Employee Posts: 468
✭✭✭✭
Best Answer
-
graphics = ExtAPI.DataModel.InternalObject["ds"].Graphics graphics.ResultPrefs.MaxOn = True graphics.ResultPrefs.MinOn = False graphics.Refresh()
9
Answers
-
This is not working anymore in v2023 R2
0 -
@aaazzzxxxx ,
How about this:ExtAPI.Graphics.ViewOptions.ResultPreference.ShowMaximum
ExtAPI.Graphics.ViewOptions.ResultPreference.ShowMinimum0