Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
beto-rodriguez authored Aug 1, 2016
1 parent 522b9c7 commit 945ae02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This is the logic you use in every chart, there are just some litle properties o
//create a new SeriesCollection
var seriesCollection = new SeriesCollection();

//create some LineSeries if ypu need so
//create some LineSeries if you need so, there are many supported series
var charlesSeries = new LineSeries
{
Title = "Charles",
Expand All @@ -69,13 +69,13 @@ var jamesSeries = new LineSeries
seriesCollection.Add(charlesSeries);
seriesCollection.Add(jamesSeries);

//now just assing this seriesCollectionto your chart
//now just assing this seriesCollection to your chart
//you can use wpf bindings if you need it
myChart.Series = seriesCollection

//create some labels if necessary
var labels = new string[] {"Jan", "Feb" , "Mar", "Apr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dec"};
myChart.AxixX.Labels = labels;
myChart.AxisX.Add(new Axis { Labels = labels});
```

### Is live charts what you are looking for? see these interesting examples.
Expand Down

0 comments on commit 945ae02

Please sign in to comment.