I am using graph builder with a large data table to plot part performance using variables X and Y to create individual plots for each part. The data table is: ~824 KB, ~14.5M rows, containing data for 726 different parts. Each part has ~20k data points that are used to generate each plot. Using the below Graph Builder script yields plots for ~100 individual parts.
Graph Builder(
Size( 570, 50000 ),
Variables( X( :X ), Y( :Y ), Page( Part# ) ),
Elements( Line( X, Y, Legend( 9 ) ) )
);
I was expecting to get a graph for all 726 individual parts. Is there a data table size limit for Graph Builder?
Thank you!