Class Chart3DSeries
Inheritance
Namespace: Syncfusion.EJ2.Charts
Assembly: Syncfusion.EJ2.dll
Syntax
public class Chart3DSeries : EJTagHelper
Constructors
Chart3DSeries()
Declaration
public Chart3DSeries()
Properties
Animation
Options to customizing animation for the series.
Declaration
public Chart3DAnimation Animation { get; set; }
Property Value
Type | Description |
---|---|
Chart3DAnimation | The default value is null |
ColumnFacet
Defines the shape of the data in a column and bar chart. Rectangle: Displays the data in a column and bar chart in a rectangle shape. Cylinder: Displays the data in a column and bar chart in a cylinder shape.
Declaration
public ShapeType ColumnFacet { get; set; }
Property Value
Type | Description |
---|---|
ShapeType | The default value is ShapeType.Rectangle |
ColumnSpacing
To render the column series points with particular column spacing. It takes value from 0 - 1.
Declaration
public double ColumnSpacing { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The default value is 0.1 |
ColumnWidth
Render the column series points with a particular column width.
Declaration
public double ColumnWidth { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The default value is Double.NaN |
DataLabel
The data label for the series.
Declaration
public Chart3DDataLabelSettings DataLabel { get; set; }
Property Value
Type | Description |
---|---|
Chart3DDataLabelSettings | The default value is null |
DataSource
Specifies the data source for the series. It can be an array of JSON objects or an instance of DataManager.
Declaration
public object DataSource { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The default value is null |
EmptyPointSettings
options to customize the empty points in series.
Declaration
public Chart3DEmptyPointSettings EmptyPointSettings { get; set; }
Property Value
Type | Description |
---|---|
Chart3DEmptyPointSettings | The default value is null |
EnableTooltip
Enable tooltip for the chart series.
Declaration
public bool EnableTooltip { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is true |
Fill
The fill color for the series, which can accept values in hex or rgba as a valid CSS color string.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
GroupName
Defines the name that specifies the chart series are mutually exclusive and can be overlaid. The axis in the same group shares the same baseline and location on the corresponding axis.
Declaration
public string GroupName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
LegendImageUrl
The URL for the Image that is to be displayed as a Legend icon. It requires legendShape
value to be an Image
.
Declaration
public string LegendImageUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
LegendShape
The shape of the legend. Each series has its own legend shape, which can be one of the following: Circle Rectangle Triangle Diamond Cross HorizontalLine VerticalLine Pentagon InvertedTriangle SeriesType Image
Declaration
public LegendShape LegendShape { get; set; }
Property Value
Type | Description |
---|---|
LegendShape | The default value is LegendShape.SeriesType |
Name
The name of the series as displayed in the legend.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Opacity
The opacity of the series.
Declaration
public double Opacity { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The default value is 1 |
PointColorMapping
The DataSource field that contains the point colors.
Declaration
public string PointColorMapping { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Query
Specifies a query to select data from the DataSource. This property is applicable only when the DataSource is an ej.DataManager
.
Declaration
public string Query { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Size
The DataSource field that contains the size value of y
Declaration
public string Size { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
StackingGroup
This property allows grouping series in stacked column / bar
charts.
Any string value can be provided to the stackingGroup property.
If any two or above series have the same value, those series will be grouped together.
Declaration
public string StackingGroup { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
TooltipFormat
Format of the tooltip content.
Declaration
public string TooltipFormat { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
TooltipMappingName
The data source field that contains the tooltip value.
Declaration
public string TooltipMappingName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Type
Specifies the type of the series in the 3D chart. Available options include:
- Column
- Bar
- StackingColumn
- StackingBar
- StackingColumn100
- StackingBar100
Declaration
public Chart3DSeriesType Type { get; set; }
Property Value
Type | Description |
---|---|
Chart3DSeriesType | The default value is Chart3DSeriesType.Column |
Visible
Specifies the visibility of series.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is true |
XAxisName
The name of the horizontal axis associated with the series. It requires axes
of the chart.
Declaration
public string XAxisName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
XName
The DataSource field that contains the x value.
Declaration
public string XName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
YAxisName
The name of the vertical axis associated with the series. It requires axes
of the chart.
Declaration
public string YAxisName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
YName
The DataSource field that contains the y value.
Declaration
public string YName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |