function applyHSVPlotOpts(this,h,varargin)
%APPLYHSVPLOTOPTS  set hsvplot properties

%  Copyright 1986-2004 The MathWorks, Inc.
%  $Revision: 1.1.6.1 $   $Date: 2004/12/26 21:51:56 $

if isempty(varargin) 
    allflag = false;
else
    allflag = varargin{1};
end

% Set YScale
h.AxesGrid.YScale = this.YScale;
h.Options = struct(...
   'AbsTol',this.AbsTol,...
   'RelTol',this.RelTol,...
   'Offset',this.Offset);
  
% Call parent class apply options
if allflag
   applyPlotOpts(this,h);
end