As I am iterating through the days, I am changing the back color of those days with scheduled events on them. I would like to change the default tool tip to also show a subject from the event. Here is what I have so far. It shows the default tool tip of the date as I mouse over. Is there a way to change that?
| foreach(var row in rows) |
| { |
| e.Day.IsSelected = true; |
| e.Day.ToolTip = row["rSubject"].ToString(); |
| e.Cell.BackColor = System.Drawing.Color.LightGray; |
| } |