End-Date Value of a Gantt
Posted: Thu Jan 15, 2009 8:35 am
Hello,
I'm using the Webchart (3.5.3274.30663) with 7 gantt-Series.
To add values to the gantt-Series I use the following code in a loop:
With the SeriesHotspot-Tool I show some detailed information on a MouseOver Event (The Start- and the End-Time of the Gantt for example).
I found the Values for StartTime of every gantt in "e.Series.XValues.Value[e.PointPolygon.ValueIndex]".
But where can I find the EndTime of my Gantt-Series to display it using the SeriesHotSpot-Tool.
Best regards.
Michael
I'm using the Webchart (3.5.3274.30663) with 7 gantt-Series.
To add values to the gantt-Series I use the following code in a loop:
Code: Select all
condGanttBar[i].Add(startTime, endTime, LeftAxisValue, ganttColor[0]);
Code: Select all
private void hotspotTool_GetHTMLMap_Mark(Steema.TeeChart.Tools.SeriesHotspot sender, Steema.TeeChart.Tools.SeriesHotspotEventArgs e)
{
e.PointPolygon.Title := ...
}
But where can I find the EndTime of my Gantt-Series to display it using the SeriesHotSpot-Tool.
Best regards.
Michael