Exemplo n.º 1
0
 void PieGraphLeftClick(BaseGraph sender, object key, object value)
 {
     label2.Content = "\n\n\nClick on a piece of the pie to read its information.\n\n\nKey: " + key.ToString() + "\nValue: " + value.ToString();
 }
Exemplo n.º 2
0
 void BarGraphMouseOver(BaseGraph sender, object key, object value)
 {
     label1.Content = "Mouse over a bar to read its information.\n\n\nKey: " + key.ToString() + "\nValue: " + value.ToString();
 }