[]
Returns the associated ISparkAxes.
ISparkAxes Axes { get; }
ReadOnly Property Axes As ISparkAxes
worksheet.Range["A1:C1"].Value = new object[,] {{10, 15, 8}};
ISparklineGroup group = worksheet.Range["D1"].SparklineGroups.Add(SparkType.Line, "A1:C1");
ISparkAxes axes = group.Axes;
ISparkHorizontalAxis horizontalAxis = axes.Horizontal;