[]
Gets whether the chart data table has outline borders.
The default value is true. This property indicates whether an outer
border is displayed around the chart data table.
bool HasBorderOutline { get; set; }
Property HasBorderOutline As Boolean
worksheet.Range["A1:C3"].Value = new object[,] {
{"Month", "Sales", "Profit"},
{"Jan", 100, 20},
{"Feb", 120, 25}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:C3"]);
chart.HasDataTable = true;
bool hasBorderOutline = chart.DataTable.HasBorderOutline;