Node without label

digraph G {
	bgcolor=green;
	node [shape=circle, style=filled, label=""]; // Assign empty string to label attribute
 
	a->b->c;
}