Closed szhorvat closed 5 years ago
IGVertexMap with VertexShapeFunction leads to pinking.
IGVertexMap
VertexShapeFunction
g = CompleteGraph[4, VertexSize -> Large] // IGVertexMap[If[OddQ[#], "Square", "Circle"] &, VertexShapeFunction -> VertexList]
Uncompress@Compress[g]
IGEdgeMap is not affected:
IGEdgeMap
IGEdgeMap["DashedLine" &, EdgeShapeFunction -> EdgeList, CompleteGraph[4]]
The underlying cause:
g = CompleteGraph[4, VertexSize -> Large] result = SetProperty[g, Properties -> {1 -> {VertexShapeFunction -> "Square"}}] Uncompress@Compress[result]
This looks like a bug in Mathematica but it should be worked around.
Fixed by bf132c2b6984e15ada83af9f85db4c6408e6a6b7
IGVertexMap
withVertexShapeFunction
leads to pinking.IGEdgeMap
is not affected:The underlying cause:
This looks like a bug in Mathematica but it should be worked around.