I use dot language to draw a simple graph which contains only one node and an edge point to this node. I came up with a way to do so:
digraph dot {
n0 [label= "", shape=none]
n0 -> n1
}
This implementation create a blank in the top of graph. So how to remove this blank? In other words, are there any better implementation?
height=0,width=0
(without the decimal points) gives the same result for me (i.e. without the blank) – Digitalism