Skip to content

Commit

Permalink
Fixed issue with groupLabelFontSize.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Hummersone committed Aug 18, 2017
1 parent 141c288 commit 11f8077
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions +iosr/+statistics/boxPlot.m
Original file line number Diff line number Diff line change
Expand Up @@ -1785,11 +1785,12 @@ function drawGlobalGraphics(obj)
set(obj.handles.means,'markersize',obj.meanSize);
end

% sample size
if obj.sampleSize && isfield(obj.handles,'groupsTxt')
% set group label font size
if isfield(obj.handles,'groupsTxt')
set(obj.handles.groupsTxt,'FontSize',obj.groupLabelFontSize);
end

% set additional percentile font size
if ~isempty(obj.addPrctiles) && isfield(obj.handles,'addPrctilesTxt')
set(obj.handles.addPrctilesTxt,'FontSize',obj.addPrctilesTxtSize);
end
Expand Down

0 comments on commit 11f8077

Please sign in to comment.