Skip to content

Instantly share code, notes, and snippets.

@Willy-Kimura
Last active November 20, 2017 11:17
Show Gist options
  • Save Willy-Kimura/1fb4a0ae0a915620a6095a594b0af419 to your computer and use it in GitHub Desktop.
Save Willy-Kimura/1fb4a0ae0a915620a6095a594b0af419 to your computer and use it in GitHub Desktop.
The Dashboard's form-loading event.
private void Dashboard_Load(object sender, EventArgs e)
{
// Add the TaskItems inside the panel control.
AddTasks();
// Let's now add a colorset for beautifying our charts.
BunifuDataViz1.colorSet.Add(Color.FromArgb(114, 203, 66));
BunifuDataViz1.colorSet.Add(Color.FromArgb(110, 89, 237));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment