[]
Gets or sets the IRange object that represents the location of the sparkline group.
The returned range identifies the cells where the sparklines in this group are displayed.
IRange Location { get; set; }
Property Location As IRange
worksheet.Range["A1:C1"].Value = new object[] {1, 3, 2};
ISparklineGroup group = worksheet.Range["D1"].SparklineGroups.Add(SparkType.Line, "A1:C1");
IRange location = group.Location;