You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From unknown CodePlex user on Friday, 20 June 2014 17:26:02
Code from GraphvizColor.cs:
public byte A { get { return this.a; } }
public byte R { get { return this.a; } }
public byte G { get { return this.a; } }
public byte B { get { return this.a; } }
change it to:
public byte A { get { return this.a; } }
public byte R { get { return this.r; } }
public byte G { get { return this.g; } }
public byte B { get { return this.b; } }
The text was updated successfully, but these errors were encountered:
Form unknown CodePlex user on Friday, 05 February 2016 02:21:54
Another issue with this: it seems that these colors are formatted as "#RRGGBBAA" in the generated .dot file, but from what I can tell, Graphviz doesn't understand the "AA" part, so it doesn't render the color. I tweaked it to format the colors as "#RRGGBB" (as well as fixing the original bug described above) and it started working.
From unknown CodePlex user on Friday, 20 June 2014 17:26:02
Code from GraphvizColor.cs:
change it to:
The text was updated successfully, but these errors were encountered: