[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IDataTable.HasBorderVertical

HasBorderVertical Property

HasBorderVertical

Gets whether the chart data table has vertical cell borders.

The default value is true. This property indicates whether vertical border lines are displayed between cells in the chart data table.

Declaration
bool HasBorderVertical { get; set; }
Property HasBorderVertical As Boolean
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Month", "Sales"},
    {"Jan", 100},
    {"Feb", 120}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["B1:B3"], RowCol.Columns, true, true);
chart.HasDataTable = true;
chart.DataTable.HasBorderVertical = false;
bool hasBorderVertical = chart.DataTable.HasBorderVertical;