SparklineCollection
Contents
[
Hide
]SparklineCollection class
Encapsulates a collection of Sparkline objects.
class SparklineCollection;
Methods
Method | Description |
---|---|
get(number) | Gets the Sparkline element at the specified index. |
add(string, number, number) | Add a sparkline. |
remove(object) | Removes the sparkline |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
get(number)
Gets the Sparkline element at the specified index.
get(index: number) : Sparkline;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The zero based index of the element. |
Returns
The element at the specified index.
add(string, number, number)
Add a sparkline.
add(dataRange: string, row: number, column: number) : number;
Parameters:
Parameter | Type | Description |
---|---|---|
dataRange | string | Specifies the new data range of the sparkline. |
row | number | The row index of the location. |
column | number | The column index of the location. |
remove(object)
Removes the sparkline
remove(o: object) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
o | object |
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;