Model.lineplot#

Model.lineplot(title, full_size)#

Generates a line plot.

Parameters:
  • title (hwString) – The title of the line plot.

  • full_size (int) –

    Determines whether the line plot fills the entire screen. Valid values are:

    0 - Use normal size.

    1 - Use full screen. Press a mouse button to return.

Example#

Generate a normal size line plot with the title “This is the title”#
import hm
import hm.entities as ent

model = hm.Model()

model.lineplot(title="This is the title", full_size=0)