Skip to content

Instantly share code, notes, and snippets.

@Willy-Kimura
Created November 20, 2017 11:14
Show Gist options
  • Save Willy-Kimura/1d417dd797c5e7d46e0fbbe0ecf9a6f0 to your computer and use it in GitHub Desktop.
Save Willy-Kimura/1d417dd797c5e7d46e0fbbe0ecf9a6f0 to your computer and use it in GitHub Desktop.
The Dashboard's form-loading event.
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