@@ -130,7 +130,7 @@ def plot(self,
130
130
hi_var : str = None ,
131
131
hi_value : List [str ] = None ,
132
132
color : List [str ] = None ,
133
- default_color = "blue " ,
133
+ default_color = "lightskyblue " ,
134
134
# Manipulating Spacing and Layout
135
135
bar_width : float = 1. ,
136
136
min_bar_width : float = .05 ,
@@ -218,7 +218,7 @@ def plot(self,
218
218
self .hi_value .append (self .missing_data_placeholder )
219
219
else :
220
220
self .hi_value = [self .missing_data_placeholder ]
221
- colors = ["red" , "green" , "yellow" , "lightblue " , "orange" , "gray" , "brown" , "olive" , "pink" , "cyan" , "magenta" ]
221
+ colors = ["red" , "green" , "yellow" , "purple " , "orange" , "gray" , "brown" , "olive" , "pink" , "cyan" , "magenta" ]
222
222
self .color_lst = [color for color in color_lst ] if color_lst else (
223
223
colors [:len (self .hi_value )] if hi_var else None )
224
224
if hi_var :
@@ -325,8 +325,8 @@ def plot(self,
325
325
left_center_pts .append (left_coordinate )
326
326
right_center_pts .append (right_coordinate )
327
327
328
- label_rectangle = True
329
- label_rectangle_default_color = 'lightgreen'
328
+ label_rectangle = True if self . label else False
329
+ label_rectangle_default_color = default_color
330
330
label_rectangle_widths = []
331
331
label_rectangle_total_obvs = {}
332
332
if label_rectangle :
0 commit comments