Model.xyplotcoloroverride#
- Model.xyplotcoloroverride(color)#
Sets the override color for xy plots.
- Parameters:
color (int) – Set to the color which should be used to plot all of the xy plot information on the screen (1-15)
Note
If the color is set with this function, all of the entities on an xy plot are plotted in that color. If color is set to zero, the color of each of the entities on the xy plot is used.
Example#
Set the colors for xy plots to blue#import hm import hm.entities as ent model = hm.Model() model.xyplotcoloroverride(color=9)