I want to draw the diagram shown in the image shown below. I want to use Mathematica's Graph tool.
I evaluated
Graph[
{6 \[DirectedEdge] 7, 5 \[DirectedEdge] 7, 3 \[DirectedEdge] 6,
3 \[DirectedEdge] 5, 4 \[DirectedEdge] 6, 2 \[DirectedEdge] 5,
1 \[DirectedEdge] 4, 1 \[DirectedEdge] 3, 1 \[DirectedEdge] 2},
VertexStyle -> White, VertexSize -> 0.1, VertexLabels -> "Name",
EdgeStyle -> Black]
and the result was
What can I do to make Mathematica produce a graph that looks like the one that I want?


VertexStyle,VertexLabels,VertexFunctionetc? – Feyre Dec 23 '16 at 17:14VertexCoordinatesas george2079 said, or tryGraphLayout -> {"LayeredDigraphEmbedding", "Orientation" -> Left}. – Dec 23 '16 at 21:26