ICalendarSeries.Rows
ICalendarSeries
function Rows: Integer;
Type Library
TeeChartx
Description
The Rows method returns the number of Rows present in the Calender Series.
Example [Visual Basic]:
Private Sub Command3_Click()
With TChart1.Series(0).asCalendar
MsgBox .Rows
End With
End Sub