SeriesDefaults
configurationThe default options for all series.
seriesDefaults
ObjectseriesDefaults.area
ObjectThe area chart series options. Accepts all values supported by the series option.
seriesDefaults.bar
ObjectThe bar chart series options. Accepts all values supported by the series option.
seriesDefaults.border
ObjectThe border of the series.
seriesDefaults.bubble
ObjectThe bubble chart series options. Accepts all values supported by the series option.
The candlestick chart series options. Accepts all values supported by the series option.
seriesDefaults.column
ObjectThe column chart series options. Accepts all values supported by the series option.
seriesDefaults.donut
ObjectThe donut chart series options. Accepts all values supported by the series option.
seriesDefaults.dynamicHeight
BooleanThe
dynamicHeightoption is supported when series.type is set to "funnel" or "pyramid".
When set to false all segments become with the same height, otherwise the height of each segment is based on its value.
Default: true
seriesDefaults.dynamicSlope
BooleanThe
dynamicSlopeoption is supported when series.type is set to "funnel".
When set to true the ratio of the bases of each segment is calculated based on the ratio of currentDataItem.value/nextDataItem.value The last element is always created like a rectangle since there is no following element.
Default: false
The focus highlight configuration options.
seriesDefaults.gap
NumberThe distance between category clusters.
Default: 1.5
seriesDefaults.labels
ObjectThe chart series label configuration.
The chart displays the series labels when the seriesDefaults.labels.visible option is set to
true.
The configuration of the Chart legend item for this series.
seriesDefaults.line
ObjectThe line chart series options. Accepts all values supported by the series option.
seriesDefaults.notes
ObjectThe seriesDefaults notes configuration.
seriesDefaults.ohlc
ObjectThe ohlc chart series options. Accepts all values supported by the series option.
seriesDefaults.overlay
ObjectThe chart series overlay options.
seriesDefaults.pie
ObjectThe pie chart series options. Accepts all values supported by the series option.
seriesDefaults.rangeArea
ObjectThe range area chart series options. Accepts all values supported by the series option.
seriesDefaults.scatter
ObjectThe scatter chart series options. Accepts all values supported by the series option.
The scatterLine chart series options. Accepts all values supported by the series option.
seriesDefaults.spacing
NumberThe space between the chart series as proportion of the series width.
The
spacingoption is supported when series.type is set to "bar", "column", "candlestick", "ohlc" and "candlestick".
Default: 0.4
seriesDefaults.stack
Boolean|ObjectA boolean value indicating if the series should be stacked.
The
stackoptions is supported when series.type is set to "bar", "column", "line", "area", "verticalLine", "verticalArea", "radarLine", "radarArea" and "radarColumn".
Default: false
The start angle (degrees) of the first donut or pie segment.
Angles increase clockwise and zero is to the left. Negative values are acceptable.
Default: 90
seriesDefaults.style
StringThe supported values are:
- "normal" - The values will be connected with straight line.
- "step" - The values will be connected with a line with right angle.
- "smooth" - The values will be connected with a smooth line.
The default value is "normal".
The
styleoption is supported when seriesDefaults.type is set to "line", "scatterLine", "radarLine" or "polarLine".
The
stepvalue is only supported when seriesDefaults.type is set to "line".
The
smoothoptions is not supported for stacked area series with missing values.
Default: "normal"
seriesDefaults.tooltip
ObjectThe chart series tooltip configuration options.
The chart series tooltip is displayed when the seriesDefaults.tooltip.visible option is set to
true.
seriesDefaults.type
StringThe default type of the series.
The supported values are:
areabarbubblebulletcandlestickcolumndonutfunnelpyramidheatmaphorizontalWaterfalllinelinearTrendlineexponentialTrendlinelogarithmicTrendlinepowerTrendlinepolynomialTrendlinemovingAverageTrendlineohlcpiepolarAreapolarLinepolarScatterradarArearadarColumnradarLinerangeArearangeBarrangeColumnscatterscatterLineverticalAreaverticalBoxPlotverticalBulletverticalLineverticalRangeAreawaterfall
The verticalArea chart series options. Accepts all values supported by the series option.
The verticalLine chart series options. Accepts all values supported by the series option.
The verticalRangeArea chart series options. Accepts all values supported by the series option.
seriesDefaults.visual
FunctionA function that can be used to create a custom visual for the points. Applicable for bar, column, pie, donut, funnel, pyramid, line, scatterLine, rangeBar, rangeColumn and waterfall series. The available argument fields are:
- rect - the
kendo.geometry.Rectthat defines where the visual should be rendered. - options - the point options.
- createVisual - a function that can be used to get the default visual.
- category - the point category.
- dataItem - the point dataItem.
- value - the point value.
- stackValue - the cumulative point value on the stack. Available only for stackable series.
- sender - the chart instance.
- series - the point series.
- percentage - the point value represented as a percentage value. Available only for donut, pie and 100% stacked charts.
- runningTotal - the sum of point values since the last "runningTotal" summary point. Available for waterfall series.
- total - the sum of all previous series values. Available for waterfall series.
- radius - the segment radius. Available for donut and pie series.
- innerRadius - the segment inner radius. Available for donut series.
- startAngle - the segment start angle. Available for donut and pie series.
- endAngle - the segment end angle. Available for donut and pie series.
- center - the segment center point. Available for donut and pie series.
- points - the segment points. Available for funnel, pyramid, line and scatterLine series.