Interface for a class AccumulationSeries
Options for customizing the animation for series.
Options for customizing the border of the series.
AccumulationDataLabelSettingsModel
The data label for the series.
Object
| DataManager
Specifies the dataSource for the series. It can be an array of JSON objects or an instance of DataManager.
<div id='Pie'></div>
let dataManager: DataManager = new DataManager({
url: 'http://mvc.syncfusion.com/Services/Northwnd.svc/Tasks/'
});
let query: Query = new Query().take(50).where('Estimate', 'greaterThan', 0, false);
let pie: AccumulationChart = new AccumulationChart({
...
series: [{
dataSource: dataManager,
xName: 'Id',
yName: 'Estimate',
query: query
}],
...
});
pie.appendTo('#Pie');
options to customize the empty points in series.
boolean
To enable or disable tooltip for a series.
number
End angle for a series.
boolean
If set true, series points will be exploded on mouse click or touch.
boolean
If set true, all the points in the series will get exploded on load.
number
Index of the point, to be exploded on load.
string
Distance of the point from the center, which takes values in both pixels and percentage.
number
Defines the distance between the segments of a funnel/pyramid series. The range will be from 0 to 1
AccumulationSeries y values less than groupMode are combined into single slice named others.
string
AccumulationSeries y values less than groupTo are combined into single slice named others.
string
Defines the height of the funnel/pyramid with respect to the chart area.
string
When the innerRadius value is greater than 0 percentage, a donut will appear in pie series. It takes values only in percentage.
string
The URL for the Image that is to be displayed as a Legend icon. It requires legendShape
value to be an Image
.
The shape of the legend. Each series has its own legend shape. They are
string
Specifies the series name
string
Defines the height of the funnel neck with respect to the chart area.
string
Defines the width of the funnel neck with respect to the chart area.
number
The opacity of the series.
string[]
Palette for series points.
string
The DataSource field that contains the color value of point It is applicable for series
Defines how the values have to be reflected, whether through height/surface of the segments.
Query
Specifies Query to select data from dataSource. This property is applicable only when the dataSource is ej.DataManager
.
string
Radius of the pie series and its values in percentage.
string
Custom style for the selected series or points.
number
Start angle for a series.
string
The provided value will be considered as a Tooltip Mapping name.
Specify the type of the series in accumulation chart.
boolean
Specifies the series visibility.
string
Defines the width of the funnel/pyramid with respect to the chart area.
string
The DataSource field which contains the x value.
string
The DataSource field which contains the y value.