<div dir="ltr">Dear FieldTrip Community,<br><br>I am Chengyuan Wu from Ningbo Kangning Hospital, reaching out for guidance on an issue I've encountered while working with EEG topographical mapping with ft_topoplotER function, specifically using the EGI 129 electrode system.<br><br>My current challenge is with electrodes positioned outside the brain contour on the topoplot. While the electrode positions relative to the brain are correct, those located outside the brain contour do not display their corresponding values, appearing as blank areas on the map.<br><br>To provide some context, here is a segment of my code:<br><div><br></div><div>cfg = [];<br>cfg.layout = 'F:\eeg_ningbo\fieldtrip-20211209\template\electrode\AdultAverageNet128_v1.sfp'; <br>[layout, ~] = ft_prepare_layout(cfg);<br>% Scaling layout to avoid electrodes clustering in the center of the brain<br>layout.pos(:,1) = layout.pos(:,1) * 1.7;<br>layout.pos(:,2) = layout.pos(:,2) * 1.7;<br>cfg = [];<br>cfg.parameter = 'avg';<br>cfg.xlim = [0.35 0.35];<br>cfg.channel = data.label;<br>cfg.layout = layout;<br>cfg.marker = 'labels';<br>cfg.zlim = [-3 3];<br>cfg.style = 'straight';<br>cfg.colormap = '*RdBu';<br>cfg.shading = 'interp';<br>cfg.gridscale = 300;<br>figure; ft_topoplotER(cfg, data);<br></div><div><br></div><div>I have scaled the layout to prevent all electrodes from clustering at the center of the brain. This adjustment has allowed for a more accurate representation of electrode positions relative to the brain. However, the electrodes located outside the brain contour do not display their values.<br><br>So I am seeking advice on the following points:<br><br>Is there a way to modify the cfg parameters or adjust the layout in FieldTrip to enable the visualization of electrode colors outside the brain contour on the topographical map? If direct cfg adjustments within ft_topoplotER are not feasible, how should I alter the layout variable for this purpose?<br><br>Thank you in advance for your time and assistance.<br><br>Best regards,<br><br>Chengyuan Wu<br>Ningbo Kangning Hospital<br></div></div>