combit List & Label 29 - .NET Help
combit.Reporting Namespace / LlChartType Enumeration
Example Example


In This Topic
    LlChartType Enumeration
    In This Topic

    With this enumeration the chart type can be defined. Every value of this enumeration represents one chart.

    Syntax
    'Declaration
     
    
    Public Enum LlChartType 
       Inherits System.Enum
    public enum LlChartType : System.Enum 
    public enum class LlChartType : public System.Enum 
    Members
    MemberDescription
    AreaSimple 
    AreaStacked 
    AreaStackedRelative 
    Bar2D

    Two-dimensional bar chart.

    Bar2DClustered

    Two-dimensional clustered bar chart.

    Bar2DStacked

    Two-dimensional stacked bar chart.

    Bar2DStackedRelative

    Two-dimensional relational stacked bar chart.

    Bar3D

    Three-dimensional bar chart

    Bar3DClustered

    Three-dimensional clustered bar chart.

    Bar3DMultiRow

    Three-dimensional multi-row bar chart.

    Bar3DStacked

    Three-dimensional stacked bar chart.

    Bar3DStackedRelative

    Three-dimensional relational stacked bar chart.

    BubbleScattered 
    BubbleSorted 
    Donut2D 
    Donut3D 
    FunnelHorizontal 
    FunnelVertical 
    LineMultiRow

    Multi-row line chart.

    LineSimple

    Simple line chart.

    LineStacked

    Stacked line chart.

    LineStackedRelative

    Relational stacked line chart.

    Pie2D

    Two-dimensional pie chart.

     

    Pie3D

    Three-dimensional pie chart.

    RadarClustered 
    RadarSimple 
    RadarStacked 
    RadarStackedRelative 
    Rscript 
    ShapeFile 
    TreeMapClustered 
    TreeMapSimple 
    Unknown 
    Example
    //**** Create a new three-dimensional pie chart **** 
     
    //Add a chart object to the container and name it.  
    SubItemChart chart = new SubItemChart(LlChartType.Pie3D, container.SubItems); 
     
    chart.Name = "3D chart pie"; 
     
    //Define the table from where the data should come from. The table "Order_Details" will be used.
    chart.SourceTablePath = "Employees.Orders(Employees2Orders).Order_Details(Orders2Order Details)";
     
    //To get access to the chart engine, you have to convert it to the corresponding type first.
    PropertyChartEnginePie3D engine = (PropertyChartEnginePie3D)chart.Definition.ChartEngine;
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             combit.Reporting.LlChartType

    Requirements

    Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
    .NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8

    See Also