So, I want to create some Silverlight charts from some data on my ASP.NET web page. The way to do this, either using Visifire (my current thing) or the upcoming Silverlight
I could be wrong - coming at this question as a WPF developer rather than a SilverLight developer, but in WPF you can create and insert controls into the XAML in code.
Label myLabel = new Label(); // Create a new control
myLabel.Text = "Hello Wirral"; // Change some of its properties
MyContainingPanel.Children.Add(myLabel); // Add it to an existing container