Configures the series in charts.
Options to customizing animation for the series.
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.
Defaults to ‘Rectangle’
number
To render the column series points with particular column spacing. It takes value from 0 - 1.
Defaults to 0.1
number
Render the column series points with a particular column width.
Defaults to null
The data label for the series.
Object
| DataManager
Specifies the data source for the series. It can be an array of JSON objects or an instance of DataManager.
Defaults to ”
Chart3DEmptyPointSettingsModel
options to customize the empty points in series.
boolean
Enable tooltip for the chart series.
Defaults to true
string
The fill color for the series, which can accept values in hex or rgba as a valid CSS color string.
Defaults to null
string
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.
Defaults to ”
string
The URL for the Image that is to be displayed as a Legend icon. It requires legendShape
value to be an Image
.
Defaults to ”
The shape of the legend. Each series has its own legend shape, which can be one of the following:
Defaults to ‘SeriesType’
string
The name of the series as displayed in the legend.
Defaults to ”
number
The opacity of the series.
Defaults to 1
string
The DataSource field that contains the point colors.
Defaults to ”
Query
Specifies a query to select data from the DataSource. This property is applicable only when the DataSource is an ej.DataManager
.
Defaults to ”
string
The DataSource field that contains the size value of y
Defaults to ”
string
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.
Defaults to ”
string
Format of the tooltip content.
Defaults to ”
string
The data source field that contains the tooltip value.
Defaults to ”
Specifies the type of the series in the 3D chart. Available options include:
Defaults to ‘Column’
boolean
Specifies the visibility of series.
Defaults to true
string
The name of the horizontal axis associated with the series. It requires axes
of the chart.
Defaults to null
string
The DataSource field that contains the x value.
Defaults to ”
string
The name of the vertical axis associated with the series. It requires axes
of the chart.
Defaults to null
string
The DataSource field that contains the y value.
Defaults to ”
Finds the collection of Chart3DSeries associated with the given Chart3DColumn and Chart3DRow in the 3D chart.
Parameter | Type | Description |
---|---|---|
column | Chart3DColumn |
The Chart3DColumn object representing the column in the 3D chart. |
row | Chart3DRow |
The Chart3DRow object representing the row in the 3D chart. |
isStack | boolean |
Indicates whether the series should be stacked. |
Returns Chart3DSeries[]
Gets a range of values between the specified start and end points. This method returns a Chart3DRangeValues object representing the range of values between the given start and end points.
Parameter | Type | Description |
---|---|---|
start | number |
The starting point of the range. |
end | number |
The ending point of the range. |
Returns Chart3DRangeValues
Gets the side-by-side positioning information for the specified Chart3DSeries. This method calculates and returns the range values that define the position of the series in a side-by-side arrangement.
Parameter | Type | Description |
---|---|---|
series | Chart3DSeries |
The Chart3DSeries for which side-by-side positioning information is needed. |
Returns Chart3DRangeValues
Refreshes the axis labels in the chart. This method is responsible for updating and rendering the axis labels based on the chart’s current state.
Returns void
Refreshes the data manager for the 3D chart.
Parameter | Type | Description |
---|---|---|
chart | Chart3D |
The 3D chart for which the data manager is refreshed. |
Returns void
Sets values for an empty data point at the specified index.
Parameter | Type | Description |
---|---|---|
point | Chart3DPoint |
The Chart3DPoint object representing the empty data point. |
i | number |
The index of the empty data point. |
Returns void
Sets the style options for the specified Chart3DSeries. This method applies the style options to customize the appearance of the specified series.
Parameter | Type | Description |
---|---|---|
series | Chart3DSeries |
The Chart3DSeries for which the style options should be set. |
Returns Chart3DStyleOptions