Skip to content

Commit

Permalink
Updated example description.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johanna Laitila committed Mar 13, 2019
1 parent f489ccf commit dda045d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MultipleSeries_WF/Form1.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ------------------------------------------------------------------------------------------------------
// LightningChart® example code: Chart with Multiple Series Demo.
// LightningChart® example code: 2D Chart with Multiple PointLineSeries Demo.
//
// If you need any assistance, or notice error in this example code, please contact support@arction.com.
//
Expand Down
2 changes: 1 addition & 1 deletion MultipleSeries_WPF_NB/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ------------------------------------------------------------------------------------------------------
// LightningChart® example code: Chart with Multiple Series Demo.
// LightningChart® example code: 2D Chart with Multiple PointLineSeries Demo.
//
// If you need any assistance, or notice error in this example code, please contact support@arction.com.
//
Expand Down
7 changes: 2 additions & 5 deletions MultipleSeries_WPF_SB/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ------------------------------------------------------------------------------------------------------
// LightningChart® example code: Chart with Multiple Series Demo.
// LightningChart® example code: 2D Chart with Multiple PointLineSeries Demo.
//
// If you need any assistance, or notice error in this example code, please contact support@arction.com.
//
Expand All @@ -26,9 +26,6 @@ public MainWindow()
// This is done using XAML.
InitializeComponent();

// Create chart.
// This is done using XAML.

// Disable rendering before updating chart properties to improve performance
// and to prevent unnecessary chart redrawing while changing multiple properties.
chart.BeginUpdate();
Expand Down Expand Up @@ -58,7 +55,7 @@ public MainWindow()
data[i].Y = Math.Sin(i * 0.2) * 50 + 50;
}

// 2. Create an other PointLineSeries and set new color and line-pattern for it.
// 2. Create another PointLineSeries and set new color and line-pattern for it.
// This is done using XAML.

// 3. Set data-points into series.
Expand Down

0 comments on commit dda045d

Please sign in to comment.