'DeclarationPublic Enum LlChartType Inherits System.Enum
public enum LlChartType : System.Enum
public enum class LlChartType : public System.Enum
With this enumeration the chart type can be defined. Every value of this enumeration represents one chart.
'DeclarationPublic Enum LlChartType Inherits System.Enum
public enum LlChartType : System.Enum
public enum class LlChartType : public System.Enum
| Member | Description |
|---|---|
| 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 |
//**** 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;
System.Object
System.ValueType
System.Enum
combit.Reporting.LlChartType
Platforms: Windows 10 (Version 21H2 - 22H2), Windows 11 (22H2 - 25H2), Windows Server 2016 - 2025
.NET: .NET Framework 4.8, .NET 8, .NET 9, .NET 10