Jump to content
Software FX Community

athaurgs

Members
  • Posts

    2
  • Joined

  • Last visited

athaurgs's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi All, Does anyone have a sample, wherein points are added continously to the chart. Also a sample that loads large amount of points somewhere around 20k. Thanks in advance
  2. I have downloaded your beta version. I am trying to bind a database with the chart. I am not able to do that. This is how my code look like DataSet dataset = new DataSet(); //Database Connectionstring ConnectionString = string.Format("Provider=Microsoft.Jet.OLEDB.4.0; Data Source={0}", "Northwind.mdb"); OleDbConnection Connection = new OleDbConnection(ConnectionString);OleDbCommand Command = new OleDbCommand("Select Top 10 * from [Products]", Connection); OleDbDataAdapter DataAdapter = new OleDbDataAdapter(Command); //Fill the datasetDataAdapter.Fill(dataset, "Product"); //Creating resource with the name MyDBSourcethis.Resources.Add("MyDBSource", dataset.Tables["Product"].Rows); InitializeComponent(); XAML < my:SeriesAttributes Fill="Crimson" Gallery="Line" GalleryAttributes="{x:Null}" BindingPathX="ProductID" ItemsSource="{StaticResource MyDBSource}" BindingPathFrom="UnitPrice"> When I try to run this application. it gives exception stating 'name' parameter not found. let me know what have to be changed in the code to make my chart work.
×
×
  • Create New...