Spread Windows Forms 12.0 Product Documentation
SpreadChart Constructor(String,Type,Point,Size)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Chart Namespace > SpreadChart Class > SpreadChart Constructor : SpreadChart Constructor(String,Type,Point,Size)
The formula.
Type of the series.
The location.
The size.
Initializes a new instance of the SpreadChart class.
Syntax
'Declaration
 
Public Function New( _
   ByVal formula As String, _
   ByVal seriesType As Type, _
   ByVal location As Point, _
   ByVal size As Size _
)
'Usage
 
Dim formula As String
Dim seriesType As Type
Dim location As Point
Dim size As Size
 
Dim instance As New SpreadChart(formula, seriesType, location, size)
public SpreadChart( 
   string formula,
   Type seriesType,
   Point location,
   Size size
)

Parameters

formula
The formula.
seriesType
Type of the series.
location
The location.
size
The size.
Remarks
The formula parameter is for the chart data. The seriesType parameter indicates which type of chart will be added. The location and size parameters specify the location and size (width and height) of the chart.
Example
This example creates a chart.
Point loc = new Point(20,30);
Size size = new Size(300,400);
FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart("Sheet1!$A$2:$A$7", typeof(FarPoint.Win.Chart.BarSeries),loc,size);
fpSpread1.Sheets[0].Charts.Add(chart);
Dim loc As New Point(20, 30)
Dim size As New Size(300, 400)
Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart("Sheet1!$A$2:$A$7", GetType(FarPoint.Win.Chart.BarSeries), loc, size)
fpSpread1.Sheets(0).Charts.Add(chart)
See Also

Reference

SpreadChart Class
SpreadChart Members
Overload List