parent
5918599acf
commit
f7ea60bc13
@ -246,7 +246,7 @@ class RelGraphReport(Report):
|
|||||||
label = "%s (%s)" % (label, fam_id)
|
label = "%s (%s)" % (label, fam_id)
|
||||||
color = ""
|
color = ""
|
||||||
fill = ""
|
fill = ""
|
||||||
style = ""
|
style = "solid"
|
||||||
if self.colorize == 'colored':
|
if self.colorize == 'colored':
|
||||||
color = self.colors['family']
|
color = self.colors['family']
|
||||||
elif self.colorize == 'filled':
|
elif self.colorize == 'filled':
|
||||||
@ -265,12 +265,13 @@ class RelGraphReport(Report):
|
|||||||
color = ""
|
color = ""
|
||||||
fill = ""
|
fill = ""
|
||||||
if gender == person.MALE:
|
if gender == person.MALE:
|
||||||
shape="box"
|
shape = "box"
|
||||||
|
style = "solid"
|
||||||
elif gender == person.FEMALE:
|
elif gender == person.FEMALE:
|
||||||
shape="box"
|
shape = "box"
|
||||||
style="rounded"
|
style = "rounded"
|
||||||
else:
|
else:
|
||||||
shape="hexagon"
|
shape = "hexagon"
|
||||||
if self.colorize == 'colored':
|
if self.colorize == 'colored':
|
||||||
if gender == person.MALE:
|
if gender == person.MALE:
|
||||||
color = self.colors['male']
|
color = self.colors['male']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user