I have an oriented graph, using the following example
ba <- sample_pa(n=100, power=1, m=1, directed=T)
V(ba)$color<-"yellow"
tkplot(ba , layout=layout.fruchterman.reingold(ba), canvas.width=1024,canvas.height=768)
I would like to find the way to display additional information when I rightclick on a vertex or having the display of the information using a tooltip that appears when i move the mouse on each of the vertex. I tried to set attributes to the vertex but I can't find the way to display them.