[]
Gets or sets the location of a single sparkline.
Returns the IRange object that represents the cell where the sparkline is displayed.
IRange Location { get; set; }
Property Location As IRange
worksheet.Range["A1:B2"].Value = new object[,] {
{10, 20},
{30, 40}
};
ISparkline sparkline = worksheet.Range["D1"].SparklineGroups.Add(SparkType.Line, "A1:B1")[0];
IRange location = sparkline.Location;