Class ChartDataTable
Namespace: Aspose.Cells.Charts
Assembly: Aspose.Cells.dll (25.2.0)
Represents a chart data table.
public class ChartDataTable
Inheritance
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Examples
csharp
[C#]
//Instantiating a Workbook object
Workbook workbook = new Workbook();
//Obtaining the reference of the first worksheet
Worksheet worksheet = workbook.Worksheets[0];
//Adding a sample value to "A1" cell
worksheet.Cells["A1"].PutValue(50);
//Adding a sample value to "A2" cell
worksheet.Cells["A2"].PutValue(100);
//Adding a sample value to "A3" cell
worksheet.Cells["A3"].PutValue(150);
//Adding a sample value to "B1" cell
worksheet.Cells["B1"].PutValue(60);
//Adding a sample value to "B2" cell
worksheet.Cells["B2"].PutValue(32);
//Adding a sample value to "B3" cell
worksheet.Cells["B3"].PutValue(50);
//Adding a chart to the worksheet
int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 25, 10);
//Accessing the instance of the newly added chart
Chart chart = worksheet.Charts[chartIndex];
//Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
chart.NSeries.Add("A1:B3", true);
chart.ShowDataTable = true;
//Getting Chart Table
ChartDataTable chartTable = chart.ChartDataTable;
//Setting Chart Table Font Color
chartTable.Font.Color = System.Drawing.Color.Red;
//Setting Legend Key VisibilityOptions
chartTable.ShowLegendKey = false;
//Saving the Excel file
workbook.Save("book1.xls");
'Instantiating a Workbook object
Dim workbook As Workbook = New Workbook()
'Obtaining the reference of the first worksheet
Dim worksheet As Worksheet = workbook.Worksheets(0)
'Adding a sample value to "A1" cell
worksheet.Cells("A1").PutValue(50)
'Adding a sample value to "A2" cell
worksheet.Cells("A2").PutValue(100)
'Adding a sample value to "A3" cell
worksheet.Cells("A3").PutValue(150)
'Adding a sample value to "B1" cell
worksheet.Cells("B1").PutValue(60)
'Adding a sample value to "B2" cell
worksheet.Cells("B2").PutValue(32)
'Adding a sample value to "B3" cell
worksheet.Cells("B3").PutValue(50)
'Adding a chart to the worksheet
Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.Column, 5, 0, 25, 10)
'Accessing the instance of the newly added chart
Dim chart As Chart = worksheet.Charts(chartIndex)
'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
chart.NSeries.Add("A1:B3", True)
chart.ShowDataTable = True
'Getting Chart Table
Dim chartTable As ChartDataTable = chart.ChartDataTable
'Setting Chart Table Font Color
chartTable.Font.Color = System.Drawing.Color.Red
'Setting Legend Key VisibilityOptions
chartTable.ShowLegendKey = False
'Saving the Excel file
workbook.Save("book1.xls")
Properties
AutoScaleFont
True if the text in the object changes font size when the object size changes. The default value is True.
public bool AutoScaleFont { get; set; }
Property Value
BackgroundMode
Gets and sets the display mode of the background
public BackgroundMode BackgroundMode { get; set; }
Property Value
Border
Returns a Border object that represents the border of the object
public Line Border { get; }
Property Value
Font
Gets a Aspose.Cells.Charts.ChartDataTable.Font object which represents the font setting of the specified chart data table.
public Font Font { get; }
Property Value
HasHorizontalBorder
True if the chart data table has horizontal cell borders
public bool HasHorizontalBorder { get; set; }
Property Value
HasOutlineBorder
True if the chart data table has outline borders
public bool HasOutlineBorder { get; set; }
Property Value
HasVerticalBorder
True if the chart data table has vertical cell borders
public bool HasVerticalBorder { get; set; }
Property Value
ShowLegendKey
True if the data label legend key is visible.
public bool ShowLegendKey { get; set; }