Created
November 20, 2017 11:14
-
-
Save Willy-Kimura/1d417dd797c5e7d46e0fbbe0ecf9a6f0 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 Sub Dashboard_Load(sender As Object, e As EventArgs) Handles Me.Load | |
' 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)) | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment