SparklineCollection
Add Method (String, Int32, Int32)
|
Adds a sparkline to the specified row and column using the data from the given range.
Namespace:
Spire.Xls
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public Sparkline Add(
string dataRange,
int row,
int column
)
Public Function Add (
dataRange As String,
row As Integer,
column As Integer
) As Sparkline
public:
Sparkline^ Add(
String^ dataRange,
int row,
int column
)
member Add :
dataRange : string *
row : int *
column : int -> Sparkline
Parameters
-
dataRange
-
Type:
System
String
The range of cells containing the data for the sparkline.
-
row
-
Type:
System
Int32
The row index where the sparkline will be added.
-
column
-
Type:
System
Int32
The column index where the sparkline will be added.
Return Value
Type:
Sparkline
The Sparkline object that was added.
See Also