I used the answer of this question :
Color a particular node in Networkx and Graphviz
but its not working, this is basically how i am using it :
myGraph.add_node(name , color="blue" , style='filled',fillcolor='blue', shape='square')
nx.draw(myGraph, with_labels=True, font_weight='bold')
plt.show()
but the output graph doesn't have any color at all, what am i doing wrong? it doesn't work with add_edge either, no color at all. i am using python 2.7 ( i cant use 3+)
and i don't want to add colors all at the same time, i need to add colors as i add nodes/edges one at a time.
