Skip to content

Instantly share code, notes, and snippets.

@Willy-Kimura
Created November 21, 2017 11:26
Show Gist options
  • Save Willy-Kimura/712c66ea866c3e06d57cac798145adc1 to your computer and use it in GitHub Desktop.
Save Willy-Kimura/712c66ea866c3e06d57cac798145adc1 to your computer and use it in GitHub Desktop.
Timer event for charts-generation.
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