ISSUE: for a taxonomy term, say "first second" the " " space character in the title is not recognised, and I get one more node in the graph, "second" that should not be there.
ISSUE: for a taxonomy term, say "first second" the " " space character in the title is not recognised, and I get one more node in the graph, "second" that should not be there.
Comments
Comment #1
naught101 commenteddeltab, can you please post the offending dot file here? if you look in the global settings page, you'll notice there are some new options to allow you to display any combination of the dot file or the graph.
cheers
ned
Comment #2
deltab commented/*
* @command = neato
* @formats = png
* @imagemap = true
*/
digraph NodeRefMap {
graph [ labelloc="t", splines=true, fontname="monospace", size="9,12", overlap=scale, rankdir=LR, compound=true ];
node [ fontsize=7.0, style=filled, fillcolor="#EEEEEE", color="#005884", border=1 ];
edge [ title="", color="#005884", penwidth=1, fontsize=7.0 ];
subgraph cluster_First Second Third {
label = "First Second Third"
}
};
Only two ovals show, "second' and "third". "First" is entirely missing from the image.
Comment #3
naught101 commentedright, I think the problem is that the line
subgraph cluster_First Second Third {should read
subgraph "cluster_First Second Third" {I'll fix it when I get home this arvo..
Comment #4
naught101 commentedThis should be fixed now.
Comment #5
deltab commentedLooks fixed.