or
<chartView:LineSeries Stroke="Red" StrokeThickness="2" ItemsSource="{Binding ListValue}" ValueBinding="Value" CategoryBinding="Category">private List<SampleClass> tempList;public List<SampleClass> ListValue{ : :}public void GetData(string tempValue){ SampleClass item = new SampleClass (); item.Value= tempValue; item.Category = m_counter++; tempList.Add(item); ListValue= tempList;}