Hi
I am using Visual Studio C# to create a simple windows phone app
and I am wanting to add a simple line chart using sfChart
This is what I have done so far:
I drop a sfChart onto the form and name it chart
then from a button click I have
LineSeries lineChart = new LineSeries();
double[] valueList = new double[10];
valueList[0] = 0.5;
valueList[1] = 0.6;
valueList[2] = 0.7;
valueList[3] = 0.8;
lineChart.ItemsSource = valueList;
chart.Series.Add(lineChart);
but I run it and click on the button nothing happens....i.e the graph still looks like default...i.e x scale is 0 to 1 and y scale is 0 to 1 and no line is drawn
I must be missing something simple
thanks for any help!
Brian