cphill11,
No, I am able to get MapTips for each "flare" without any coding. The problem I was having and what my code addresses is a way to handle the click event for an individual "flare" within a cluster. I needed a way to figure out which "flare" within a cluster was clicked, and currently, the ArcGIS Silverlight API does not provide any means with which to accomplish this. None of the Graphic object mouse events (other then MouseLeave) work for objects contained within a GraphicsClusterer, so a workaround was necessary. The Map_MouseLeftButtonDown event suggested by ESRI engineers earlier in this thread only results in a collection of Graphics at the point clicked being returned, but it did not provide a way to know which "flare" was clicked. What I did was create a custom FlareClusterer so I could add attributes the the Graphics in the GraphicCollection that will allow me to match the "flare" clicked with its underlying Graphic.
Hopefully this clarifies what problem I was addressing.
Regards,
Kyle