dotnetCHARTING Send comments on this topic.
Add(Series,Series) Method
See Also 
dotnetCHARTING Namespace > Series Class > Add Method : Add(Series,Series) Method


lhs
Left hand side Series.
rhs
Right hand side Series.
Adds two Series objects together.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Add( _
   ByVal lhs As Series, _
   ByVal rhs As Series _
) As Series
Visual Basic (Usage)Copy Code
Dim lhs As Series
Dim rhs As Series
Dim value As Series
 
value = Series.Add(lhs, rhs)
C# 
public static Series Add( 
   Series lhs,
   Series rhs
)

Parameters

lhs
Left hand side Series.
rhs
Right hand side Series.

Remarks

All element values such as YValue, XValue etc. are added based on element names. This means that only elements with the same name will be computed.

See Also

© 2010 All Rights Reserved.