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


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

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Multiply( _
   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.Multiply(lhs, rhs)
C# 
public static Series Multiply( 
   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 multiplied based on element names. This means that only elements with the same name will be computed.

See Also

© 2010 All Rights Reserved.