[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparklineGroup.Location

Location Property

Location

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.

Declaration
IRange Location { get; set; }
Property Location As IRange
Examples
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;