Click or drag to resize

Aspose.Cells.Charts Namespace

Contains all classes of chart and sparkline.
Classes
  ClassDescription
Public classCode exampleAxis
Encapsulates the object that represents a chart's axis.
Public classAxisBins
Represents axis bins
Public classCode exampleChart
Encapsulates the object that represents a single Excel chart.
Public classCode exampleChartArea
Encapsulates the object that represents the chart area in the worksheet.
Public classCode exampleChartCollection
Encapsulates a collection of Chart objects.
Public classCode exampleChartDataTable
Represents a chart data table.
Public classChartFrame
Encapsulates the object that represents the frame object in a chart.
Public classChartGlobalizationSettings
Represents the globalization settings for chart.
Public classCode exampleChartPoint
Represents a single point in a series in a chart.
Public classCode exampleChartPointCollection
Represents a collection that contains all the points in one series.
Public classChartTextFrame
Encapsulates the object that represents the frame object which contains text.
Public classCode exampleDataLabels
Encapsulates a collection of all the DataLabel objects for the specified Series.
Public classCode exampleDisplayUnitLabel
Represents the display unit label.
Public classDropBars
Represents the up/down bars in a chart.
Public classCode exampleErrorBar
Represents error bar of data series.
Public classCode exampleFloor
Encapsulates the object that represents the floor of a 3-D chart.
Public classCode exampleLegend
Encapsulates the object that represents the chart legend.
Public classLegendEntry
Represents a legend entry in a chart legend.
Public classLegendEntryCollection
Represents a collection of all the LegendEntry objects in the specified chart legend.
Public classMarker
Represents the marker in a line chart, scatter chart, or radar chart.
Public classPivotOptions
Represents a complex type that specifies the pivot controls that appear on the chart
Public classPlotArea
Encapsulates the object that represents the plot area in a chart.
Public classCode exampleSeries
Encapsulates the object that represents a single data series in a chart.
Public classCode exampleSeriesCollection
Encapsulates a collection of Series objects.
Public classSeriesLayoutProperties
Public classCode exampleSparkline
A sparkline represents a tiny chart or graphic in a worksheet cell that provides a visual representation of data.
Examples
[C#]
 Workbook book = new Workbook(); 
 Worksheet sheet = book.Worksheets[0];

 sheet.Cells["A1"].PutValue(5);
 sheet.Cells["B1"].PutValue(2);
 sheet.Cells["C1"].PutValue(1);
 sheet.Cells["D1"].PutValue(3);

 // Define the CellArea
 CellArea ca = new CellArea();
 ca.StartColumn = 4;
 ca.EndColumn = 4;
 ca.StartRow = 0;
 ca.EndRow = 0;

 int idx = sheet.SparklineGroupCollection.Add(Aspose.Cells.Charts.SparklineType.Line, sheet.Name + "!A1:D1", false, ca);

 SparklineGroup group = sheet.SparklineGroupCollection[idx];
 idx = group.SparklineCollection.Add(sheet.Name + "!A1:D1", 0, 4);
 Sparkline line = group.SparklineCollection[idx];
 Console.WriteLine($"Saprkline data range:{line.DataRange}, row:{line.Row}, column:{line.Column}");
 line.ToImage("output.png", new ImageOrPrintOptions());
Public classCode exampleSparklineCollection
Encapsulates a collection of Sparkline objects.
Public classCode exampleSparklineGroup
Sparkline is organized into sparkline group. A SparklineGroup contains a variable number of sparkline items. A sparkline group specifies the type, display settings and axis settings for the sparklines.
Public classCode exampleSparklineGroupCollection
Encapsulates a collection of SparklineGroup objects.
Public classTickLabelItem
Include information of a Ticklabel item
Public classTickLabels
Represents the tick-mark labels associated with tick marks on a chart axis.
Public classCode exampleTitle
Encapsulates the object that represents the title of chart or axis.
Public classCode exampleTrendline
Represents a trendline in a chart.
Public classCode exampleTrendlineCollection
Represents a collection of all the Trendline objects for the specified data series.
Public classWalls
Encapsulates the object that represents the walls of a 3-D chart.
Enumerations
  EnumerationDescription
Public enumerationAxisType
Represents the axis type.
Public enumerationBackgroundMode
Represents the display mode of the background.
Public enumerationBar3DShapeType
Represents the shape used with the 3-D bar or column chart.
Public enumerationBubbleSizeRepresents
Represents what the bubble size represents on a bubble chart.
Public enumerationCategoryType
Represents the category axis type.
Public enumerationChartLineFormattingType
Represents line format type of chart line.
Public enumerationChartMarkerType
Represents the marker style in a line chart, scatter chart, or radar chart.
Public enumerationChartSplitType
Represents the way the two sections of either a pie of pie chart or a bar of pie chart are split.
Public enumerationChartTextDirectionType
Represents the text direction type of the chart.
Public enumerationChartType
Enumerates all chart types used in Excel.
Public enumerationCrossType
Represents the axis cross type.
Public enumerationDataLabelsSeparatorType
Represents the separator type of DataLabels.
Public enumerationDataLablesSeparatorType Obsolete.
Represents the separator type of DataLabels.
Public enumerationDisplayUnitType
Represents the type of display unit.
Public enumerationErrorBarDisplayType
Represents error bar display type.
Public enumerationErrorBarType
Represents error bar amount type.
Public enumerationFormattingType
Represents the type of formatting applied to an Area object or a Line object.
Public enumerationLabelPositionType
Represents data label position type.
Public enumerationLegendPositionType
Enumerates the legend position types.
Public enumerationMapChartLabelLayout
Represents the layout of map chart's labels.
Public enumerationMapChartProjectionType
Represents projection type of the map chart.
Public enumerationMapChartRegionType
Represents the region type of the map chart.
Public enumerationPlotDataByType
Represents the type of data plot by row or column.
Public enumerationPlotEmptyCellsType
Represents all plot empty cells type of a chart.
Public enumerationQuartileCalculationType
Represents quartile calculation methods.
Public enumerationSparklineAxisMinMaxType
Represents the minimum and maximum value types for the sparkline vertical axis.
Public enumerationSparklinePresetStyleType
Represents the preset style types for sparkline.
Public enumerationSparklineType
Represents the sparkline types.
Public enumerationTickLabelPositionType
Represents the position type of tick-mark labels on the specified axis.
Public enumerationTickMarkType
Represents the tick mark type for the specified axis.
Public enumerationTimeUnit
Represents the base unit for the category axis.
Public enumerationTrendlineType
Represents the trendline type.