[]
Gets or sets whether the associated sparkline marker or horizontal axis is visible.
This property indicates whether the corresponding sparkline point marker or horizontal axis is displayed.
bool Visible { get; set; }
Property Visible As Boolean
worksheet.Range["A1:C3"].Value = new object[,] {
{1, 3, 2},
{4, 2, 5},
{3, 6, 4}
};
ISparklineGroup group = worksheet.Range["D1:D3"].SparklineGroups.Add(SparkType.Line, "A1:C3");
group.Points.Markers.Visible = true;
bool visible = group.Points.Markers.Visible;