function [data, view, dataprops] = createdataview(this, Nresp)

%% Overloaded createView which creates tsgui sublasses of timeview and
%% timedata

for ct = Nresp:-1:1
  % Create @respdata objects
  data(ct,1) = tsguis.timedata;
  
  % Create @respview objects
  view(ct,1) = tsguis.timeview;
  view(ct).AxesGrid = this.AxesGrid;
end

% Return list of data-related properties of data object
dataprops = [data(1).findprop('Time'); data(1).findprop('Amplitude')];
