Plot Container Solution 6945617 02
Plot Container Solution 6945617 02
The aim of this solution is to be able to create container that contains any kind of plots
using Python script in Techlog.
Python script explanation
The first line of the Python script create the container. Then the second line will create
plot (here for example a Cross-plot). Last line will insert the plot inside the container.
containerID=plot.containerCreate("Workspace
_name", "Test")
crossplot1ID=plot.crossPlotCreate("ok","Well.d
ataset.variable"," Well.dataset.variable
","","","",containerID)
plot.containerAddCell(containerID,
crossplot1ID,0,0)
Example of Python script