J'utilise ce script pour avoir le constructeur des graphiques, j'ai essayé d'intégrer l'option "fill graph" mais rien de concluant cela ne fonctionne pas correctement.
 
 
Names Default To Here(1);
folder_of_interest = Convert File Path("image");
filenames = Files In Directory(folder_of_interest);
dt = current data table();
swap_img = Expr(
	frame = Report(gb)[FrameBox(1)];
	Try(
		cur_img = frame << FindSeg(PictSeg(1));
		cur_img << remove;
		wait ( 1 );
		cur_img << fill graph;
	);
	img = New Image(folder_of_interest || cur_file);
	frame << Add Image(
		Image(img),
		bounds(frame << fill graph);
	);
);
nw = new window("Image référence vs défauts",
	H List Box(
		rb = Radio Box(filenames, << Set Function(function({this},
			cur_file = (this << get selected);
			swap_img;
		))),
		gb = dt << Graph Builder(
			Size( 567, 494 ),
			Show Control Panel( 0 ),
			Variables( X( :COORDXD ), Y( :COORDYD ) ),
			Elements( Points( X, Y, Legend( 6 ) ) ),
			Local Data Filter(
				Add Filter(
					columns( :NUMP, :NUMIMAGE ),
					Where( :NUMP == "x" ),
					Where( :NUMIMAGE == x ),
					Display( :NUMP, N Items( 15 ), Find( Set Text( "" ) ) ),
					Display( :NUMIMAGE, N Items( 15 ) )
				)
			),
			SendToReport(
				Dispatch(
					{},
					"400",
					ScaleBox,
					{Legend Model(
						6,
						Properties( 0, {Line Color( 51 )}, Item ID( "COORDYD", 1 ) )
					)}
				)
			)
		);	
	)
);