Created
November 21, 2017 11:26
-
-
Save Willy-Kimura/712c66ea866c3e06d57cac798145adc1 to your computer and use it in GitHub Desktop.
Timer event for charts-generation.
This file contains hidden or 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
private void Timer1_Tick(object sender, EventArgs e) | |
{ | |
// Stop the Timer component after the first interval - 100 Milliseconds. | |
Timer1.Stop(); | |
// Then Generate the charts with the method we created. | |
GenerateCharts(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment