Hi ,
I am using swimlanes with graph model for diagram , below is my code
data.nodearray = [
{ // this is the information needed for the headers of the bands
key: “_BANDS”,
category: “Bands”,
itemArray: [
{ text: “band 1”},
{ text:“band 2” },
{ text: “band 3” },
{ text: “band 4” },
{ text: “band 5” },
{ text: “band 6” }
]
}
];
data.linkarray = [
{ to: "oneB", from: "root" },
{ to: "twoA", from: "oneB" },
{ to: "twoC", from: "root" },
{ to: "threeC", from: "twoC" },
{ to: "threeD", from: "twoC" },
{ to: "fourB", from: "threeD" },
{ to: "fourB", from: "fourC" },
{ to: "fourC", from: "twoC" },
{ to: "fourD", from: "fourB" },
{ to: "twoD", from: "root" }
];
I would like to define which data appears in which band , eg: I want to say “threeC” will be appear under band 3, is there a possiblity to do that ? If yes, can you share a sample ? .