Xceed Words for .NET v5.1 Documentation
Xceed.Document.NET Assembly / Xceed.Document.NET Namespace / SeriesChartType Enumeration


In This Topic
    SeriesChartType Enumeration
    In This Topic
    Contains the various types of Series used in a Chart.
    Syntax
    'Declaration
     
    Public Enum SeriesChartType 
       Inherits System.Enum
    'Usage
     
    Dim instance As SeriesChartType
    public enum SeriesChartType : System.Enum 
    Members
    MemberDescription
    Area

    A classic AreaChart.

     

    Area_Stacked

    Piles up the AreaSeries to show how values stack at specific points on the CategoryAxis.

     

    Area_Stacked_100

    Piles up the AreaSeries to show their contribution in attaining a value of 100% on the ValueAxis, which means that how values stack at specific points on the CategoryAxis visually represents the percentage each AreaSeries takes in said 100%.

     

    Bar

    A classic BarChart.

     

    Bar_Clustered

    Bars from the various Series are positioned side by side, in groups, so they can easily be compared.

     

    Bar_Stacked

    Bars from the various Series are stacked on top of each other.

     

    Bar_Stacked_100

    Bars from the various Series are stacked on top of each other & each bar represents a percentage equal to a fraction of each Series' final 100%.

     

    Column_Clustered

    Columns from the various Series are positioned side by side, in groups, so they can easily be compared.

     

    Column_Stacked

    Columns from the various Series are stacked on top of each other.

     

    Column_Stacked_100

    Columns from the various Series are stacked on top of each other & each bar represents a percentage equal to a fraction of each Series' final 100%.

     

    Doughnut

    A classic DoughnutChart.

    Line

    LineSeries are drawn using a single line.

     

    Line_Markers

    LineSeries are drawn using a single line & each data point is identified with a Marker.

     

    Line_Markers_Stacked

    LineSeries are drawn using a single line & their values are stacked on top of each other; each data point is identified with a Marker.

     

    Line_Markers_Stacked_100

    LineSeries are drawn using a single line & their values are stacked to represent a percentage equal to their part in attaining the final 100% of each LineSeries; each data point is identified with a Marker.

     

    Line_Stacked

    LineSeries are drawn using a single line & their values are stacked on top of each other. 

     

    Line_Stacked_100

    LineSeries are drawn using a single line & their values are stacked to represent a percentage equal to their part in attaining the final 100% of each LineSeries.

     

    Pie

    A classic PieChart.

    Pie_Bar

    Shows a bar representing some of the values from the PieChart's main pie.

     

    PieOfPie

    Shows a second pie representing some of the values from the PieChart's main pie.

     

    Radar

    A classic RadarChart, where the RadarSeries will be drawn using single lines.

    Radar_Filled

    The RadarSeries will be drawn & their inside will be filled.

     

    Radar_Markers

    The RadarSeries will be drawn using single lines & Markers will identify the Series values.

     

    Scatter

    Draws the ScatterSeries using points.

     

    Scatter_Line

    Draws the ScatterSeries using lines joining invisible points.

     

    Scatter_Line_Markers

    Draws the ScatterSeries using lines joining Markers.

     

    Scatter_Markers

    Draws the ScatterSeries using points, which also acts as Markers.

    Scatter_SmoothedLine

    Draws the ScatterSeries using smooth lines joining invisible points.

     

    Scatter_SmoothedLine_Markers

    Draws the ScatterSeries using smooth lines joining Markers.

     

    Remarks

    Each member corresponds to a type of Chart that can be rendered in Microsoft Word using OpenXML.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Document.NET.SeriesChartType

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows 11, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also