Forum Discussion
callum
Helper II
9 years agoOnly calling update when visual size has "settled"
I have a visual that performs a lot of calculations when the update() method is called. Normally this is fine, for example when I just click the refresh button it works fine. However, I reali...
- 9 years ago
Hey,
for me this worked quite nice
public update(options: VisualUpdateOptions){ if(options.type == VisualUpdateType.ResizeEnd) { // code here } }
MeQT
9 years agoFrequent Visitor
Hey,
for me this worked quite nice
public update(options: VisualUpdateOptions){
if(options.type == VisualUpdateType.ResizeEnd)
{
// code here
}
}