-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
WithoutCaps
committed
May 19, 2017
1 parent
831a373
commit 1bdf4de
Showing
14 changed files
with
358 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Drawing; | ||
using System.Data; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace LimitlessUISample.Childs | ||
{ | ||
public partial class Chart_UC : UserControl | ||
{ | ||
public Chart_UC() | ||
{ | ||
InitializeComponent(); | ||
timer1.Start(); | ||
chart_WOC2.addSerie(Color.Green, "serie1", true); | ||
chart_WOC2.addSerie(Color.Red, "serie2", false); | ||
legend_WOC2.notifySeriesChanged(); | ||
} | ||
|
||
|
||
private void timer1_Tick(object sender, EventArgs e) | ||
{ | ||
Random r = new Random(); | ||
int val = r.Next(100); | ||
chart_WOC2.addValue(0, val); | ||
chart_WOC2.addValue(1, val + 10); | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.