dotnetCHARTING Send comments on this topic.
TotalSeries Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : TotalSeries Property


Return the total number of series in the seriesCollection. This property usually used in conjunction with SplitByLimit.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property TotalSeries As Integer
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As Integer
 
value = instance.TotalSeries
C# 
public int TotalSeries {get;}

Example

C#Copy Code
int pageSize=3;
   
int totalPage = Chart.Total%pageSize==0?Chart.Total/pageSize:(Chart.Total/pageSize)+1;
   
if(totalPage>currentPage)
   {
       
//Display "Next" button.
   }
    
Visual BasicCopy Code
Dim pageSize As Integer = 3
    Dim totalPage As Integer = Chart.Total / pageSize;
    If Chart.Total Mod pageSize > 0 Then
        totalPage = totalPage + 1)
    End If
    If totalPage > currentPage Then
        'Display "Next" button.
    End If

See Also

© 2010 All Rights Reserved.