How can i change the label of a tree map bar using the UltraChart1_FillSceneGraph event. Please send some code snippets.
Regards,Shiju
.
private void ultraChart1_FillSceneGraph(object sender, FillSceneGraphEventArgs e) { foreach (Primitive p in e.SceneGraph) { Text t = p as Text; if (t != null) { t.SetTextString("hello"); } } }