Click here to Skip to main content
15,881,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi guys i am making a time line view to show project duration and details,like gaant chart.I want to show project details when the mouse goes to a colored cell.I have attached the timeline view that i created.

ImageShack - timerange.png[^]

This is how the table cells are created.

<pre lang="c#">
protected void fillRange(int i,int id, String StartDate, String EndDate, Panel panelName)
{

DateTime startDate = Convert.ToDateTime(StartDate);
int startNo = Int32.Parse(startDate.ToString("yyyy") + startDate.ToString("MM"));

DateTime endDate = Convert.ToDateTime(EndDate);
int endNo = Int32.Parse(endDate.ToString("yyyy") + endDate.ToString("MM"));

if (i >= startNo && i <= endNo)
{

panelName.Controls.Add(new LiteralControl(" "));

}
else
{

panelName.Controls.Add(new LiteralControl(" "));
}

}

What I have tried:

I tried bootstrap tooltip.But its not the tooltip i want.
Posted
Comments
Christiaan van Bergen 2-Apr-18 3:57am    
Why is the Bootstrap Tooltip not working for you? Is it because of styling? Or is it because....?
Please elaborate on that. Specify what kind of tooltip you need.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900