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

%% Overloaded createView which creates tsgui sublasses of specview and
%% wavepack.freqdata

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

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