Last active
November 20, 2017 11:17
-
-
Save Willy-Kimura/1fb4a0ae0a915620a6095a594b0af419 to your computer and use it in GitHub Desktop.
The Dashboard's form-loading event.
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 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