06-08-2010 05:53 AM
Hi all,
I have created a vi to generate random numbers and plotted on graph (totally max of 8 plots on waveform chart - based on user's selection) via normal labview project explorer window. It worked.. GREAT!!!
Same vi I tried to port to a mobile project (followed by selecting target device running WINCE on it).
ERROR what i got is "Too many plots; plots size >8".
Then i replaced the graph control with normal array indicator and build the application with the same mobile project.
It ran properly (showing correct values on array indicator).
So, i guessed chart's history was being saved and i tried to clear the history using property node. But vi shows broken arrow which implies usage of property nodes is not possible for vis under mobile project.
Also i tried using waveform graph instead of chart. Still I am getting same error message.
I need assistance for this issue. Please do help me.
Thanks,
Sriram N
08-12-2013 03:35 AM - edited 08-12-2013 03:37 AM
I ran into this post when searching for any documentation over the web (using Google) for this issue.
And I found out that there is no documentation for this issue except for this post......
and even it was from 2010 and probably not relevant anymore for Sriram_lyer I could not leave it without an answer.
This message "Too many plots; plots size (>8)" or 560301086 - see image attached,
is not documented anywhere (at least where I could find) and I am not sure if WinCE is the SW that is posting this Error.
It is probably not NI SW since there is no NI logo in the upper left corner of the message.
Specifically in my case, the data sent to the Graph indicator was 2-D array.
The issue was solved by performing Transpose 2D array before.
Apparently the code was trying to plot 1200 graphs of 4 samples instead of 4 graphs of 1200 samples each.
(using NI TPC-2106)