How can the display of graphs using GraphData be customized?
For example, how can we customize the vertex style, color, edge thickness of the output toGraphData["TetrahedralGraph"]?
How can the display of graphs using GraphData be customized?
For example, how can we customize the vertex style, color, edge thickness of the output toGraphData["TetrahedralGraph"]?
Use GraphPlot and the many options there.
Specifically for your question the options are VertexRenderingFunction and EdgeRenderingFunction.
Example:
GraphPlot[GraphData["TetrahedralGraph"],
EdgeRenderingFunction -> ({Red, Thickness[.01], Line[#1]} &),
VertexRenderingFunction -> ({Blue, PointSize[.03], Point[#1]} &)
]
SetPropertyand the newGraphobjects (since v8) instead of the deprecatedGraphPlot. – Szabolcs Sep 09 '15 at 08:29