Dear all,
i like to set up some wafer maps within graph builder, where i put the "charge number" on page and the "wafer number" on wrap. The graph can bee seen below.
The issus is that only some wafers have data in the table, therefore most of the cells are empty. Is there a way to only show cells, which are not empty?
Here is the code:
Graph Builder(
Size( 1337, 27833 ),
Show Control Panel( 0 ),
Variables(
X( :PosX ),
Y( :PosY ),
Page( :Charge ),
Wrap( :Wafer ),
Color( :Name( "Resistance" ) )
),
Elements( Points( X, Y, Legend( 4 ) ) ),
Local Data Filter(
Add Filter(
columns( :Bauelementetyp ),
Where( :Bauelementetyp == 38 ),
Display( :Bauelementetyp, Size( 160, 60 ), List Display )
)
),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
4,
Properties(
0,
{gradient( {Width( 12 ), Range Type( "Middle 90%" )} )}
)
)}
)
)
);
Thank you!