Hi there,
I am using the Hierarchial Diagram to display data linked together.
Is it possible to add more than 1 text label to each node?
I tried adding a Label but this does not work.
Label testLabel = new Label()
{
FontColor = "White",
FontSize = 12,
Text = "Test",
};
model.DefaultSettings.Node.Labels.Add(testLabel);
I can add the required text to the JSON string I'm using but don't know how to attach it to the node.
Thanks
Neill