Hi,
I have a button on a tablet screen that pops up a graph when clicked on. The graph corresponds to some table values, and I want this graph to be covering the table when it appears. I can do this, however whenever I scroll / move the screen somewhere else, the graph follows.
Is there anyway that I can anchor the graph to stay in a fixed position? This is the script im using, it is not working:
system.perspective.openPopup(
id="pressureGraphPopup",
view="Furn/G/Views/tablet_PressureTempGraph",
title="Pressure & Temp Graph",
params={},
modal=False,
draggable=True,
resizable=True,
showCloseIcon=True,
position={"top": 170, "left": 65},
positioned=True
)