ICalendarSeries.SeriesRect
ICalendarSeries
function SeriesRect: TeeRect;
Type Library
TeeChartx
Description
The SeriesRect method returns the Bottom, Left, Right and Top pixel positions of the Calender series rectangle:
Example [Visual Basic]:
Private Sub Command3_Click()
With TChart1.Series(0).asCalendar
MsgBox .SeriesRect.Bottom & " " & .SeriesRect.Left & " " & .SeriesRect.Right & " " & .SeriesRect.Top
End With
End Sub