[]
Represents the settings for the horizontal and vertical axes of a group of sparklines.
Use this interface to access the axis settings associated with a sparkline group, including the ISparkHorizontalAxis and ISparkVerticalAxis objects.
public interface ISparkAxes
Public Interface ISparkAxes
worksheet.Range["A1:C1"].Value = new object[] {1, 3, 2};
ISparklineGroup sparklineGroup = worksheet.Range["D1"].SparklineGroups.Add(SparkType.Line, "A1:C1");
ISparkAxes sparkAxes = sparklineGroup.Axes;
ISparkHorizontalAxis horizontalAxis = sparkAxes.Horizontal;
ISparkVerticalAxis verticalAxis = sparkAxes.Vertical;
| Name | Description |
|---|---|
| Horizontal | Gets the ISparkHorizontalAxis object for this ISparkAxes object. Use the returned object to access and modify the horizontal axis settings of the sparkline group. |
| Vertical | Gets the ISparkVerticalAxis object associated with this ISparkAxes object. Use the returned ISparkVerticalAxis object to access or modify the vertical axis settings for the sparkline group. |