timeplotnode properties
Last updated: Feb 11, 2025
The Time Plot node displays one or more sets of time series data.
Typically, you would first use a Time Intervals node to create a TimeLabel field, which would
be used to label the x axis.
Example
stream = modeler.script.stream() typenode = stream.findByID("id42KW3MSA94B") node = stream.create("timeplot", "My node") stream.link(typenode, node) node.setPropertyValue("y_fields", ["Age", "Na", "K"]) node.setPropertyValue("panel", True) node.setPropertyValue("normalize", True) node.setPropertyValue("line", True) node.setPropertyValue("smoother", True) node.setPropertyValue("use_records_limit", True) node.setPropertyValue("records_limit", 2000) node.setPropertyValue("symbol_size", 2.0) node.run([])
properties |
Data type | Property description |
---|---|---|
|
|
|
|
flag | |
|
field | |
|
list | |
|
flag | |
|
flag | |
|
flag | |
|
flag | |
|
|
|
|
flag | You can add smoothers to the plot only if you set to
. |
|
flag | |
|
integer | |
|
number | Specifies a symbol size. |
|
|
|
|
boolean | Display grid lines. |
Was the topic helpful?
0/1000