04-24-2008 10:58 AM
04-24-2008 03:46 PM
Make sure that autoscaling is OFF.
Property nodes for the graph can do all of that...
04-24-2008 04:01 PM
04-24-2008 04:49 PM
04-25-2008 08:57 AM
04-28-2008 04:44 PM
Hi Rut,
The main problem with what you have is that your graph is exceeding the range you have specified. In order to fix this you'll need to continually update the range of graph. But, the other thing is that you might want to try changing the update mode from Strip to Scope. You can change this by right clicking on the graph and selecting Advanced»Update Mode.
04-29-2008 09:35 AM
04-29-2008 09:54 AM
04-29-2008 10:03 AM
How do you mean that it has a higher priority?
Anything to do with graphics (such as changing values in a control) happens in the UI thread, regardless of where it is on your block diagram. Howeevr, having the seperate loops in your code does put tasks in seperates threads for processor sharing. SO the seperate tasks don't have to wait on the dataflow of others, therefore it is faster. Graphics tasks will always take longer than non-graphic tasks though because the UI thread is low priority.
Does that help?
04-29-2008 10:27 AM - edited 04-29-2008 10:31 AM