@progress/kendo-charts 2.12.3-develop.4 → 2.13.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/npm/api-types/axis-range.interface.d.ts +14 -0
- package/dist/npm/api-types/chart-axis.interface.d.ts +50 -0
- package/dist/npm/api-types/chart-pane.interface.d.ts +16 -0
- package/dist/npm/api-types/chart-plotarea.interface.d.ts +16 -0
- package/dist/npm/api-types/event-axis-options.interface.d.ts +9 -0
- package/dist/npm/api-types/event-series-options.interface.d.ts +19 -0
- package/dist/npm/api-types/series-point.interface.d.ts +46 -0
- package/dist/npm/api-types.d.ts +7 -0
- package/dist/npm/argument-types/axis-label-content-args.interface.d.ts +41 -0
- package/dist/npm/argument-types/axis-label-visual-args.interface.d.ts +52 -0
- package/dist/npm/argument-types/axis-note-content-args.interface.d.ts +19 -0
- package/dist/npm/argument-types/axis-note-visual-args.interface.d.ts +32 -0
- package/dist/npm/argument-types/error-bars-value-args.interface.d.ts +29 -0
- package/dist/npm/argument-types/error-bars-visual-args.interface.d.ts +37 -0
- package/dist/npm/argument-types/highlight-toggle-args.interface.d.ts +41 -0
- package/dist/npm/argument-types/highlight-visual-args.interface.d.ts +63 -0
- package/dist/npm/argument-types/legend-item-visual-args.interface.d.ts +43 -0
- package/dist/npm/argument-types/legend-labels-content-args.interface.d.ts +31 -0
- package/dist/npm/argument-types/markers-visual-args.interface.d.ts +47 -0
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.d.ts +32 -0
- package/dist/npm/argument-types/series-labels-content-args.interface.d.ts +54 -0
- package/dist/npm/argument-types/series-labels-visual-args.interface.d.ts +77 -0
- package/dist/npm/argument-types/series-note-content-args.interface.d.ts +29 -0
- package/dist/npm/argument-types/series-note-visual-args.interface.d.ts +52 -0
- package/dist/npm/argument-types/series-visual-args.interface.d.ts +95 -0
- package/dist/npm/argument-types/title-visual-args.interface.d.ts +32 -0
- package/dist/npm/chart-options.d.ts +226 -0
- package/dist/npm/chart.d.ts +4 -3
- package/dist/npm/field-types/auto-base-unit-steps.interface.d.ts +62 -0
- package/dist/npm/field-types/axis-labels-position.d.ts +62 -0
- package/dist/npm/field-types/axis-line.interface.d.ts +41 -0
- package/dist/npm/field-types/axis-ticks.interface.d.ts +45 -0
- package/dist/npm/field-types/axis-title-position.d.ts +62 -0
- package/dist/npm/field-types/base-unit.d.ts +82 -0
- package/dist/npm/field-types/border.interface.d.ts +19 -4
- package/dist/npm/field-types/bullet-target-line.interface.d.ts +9 -0
- package/dist/npm/field-types/bullet-target.interface.d.ts +23 -0
- package/dist/npm/field-types/category-base-unit.d.ts +113 -0
- package/dist/npm/field-types/dash-type.d.ts +87 -5
- package/dist/npm/field-types/date-formats.interface.d.ts +47 -0
- package/dist/npm/field-types/drag-action.interface.d.ts +17 -0
- package/dist/npm/field-types/error-bar-line.interface.d.ts +16 -0
- package/dist/npm/field-types/grid-lines.interface.d.ts +47 -0
- package/dist/npm/field-types/highlight-line.interface.d.ts +27 -0
- package/dist/npm/field-types/label-connectors.interface.d.ts +19 -0
- package/dist/npm/field-types/label-rotation.interface.d.ts +24 -0
- package/dist/npm/field-types/legend-labels.interface.d.ts +37 -0
- package/dist/npm/field-types/line-style.d.ts +90 -0
- package/dist/npm/field-types/lock-axis.d.ts +19 -0
- package/dist/npm/field-types/margin.interface.d.ts +15 -5
- package/dist/npm/field-types/marker-type.d.ts +94 -0
- package/dist/npm/field-types/modifier-key.d.ts +30 -0
- package/dist/npm/field-types/mousewheel-select.interface.d.ts +17 -0
- package/dist/npm/field-types/mousewheel-zoom.interface.d.ts +21 -0
- package/dist/npm/field-types/negative-bubble-values.interface.d.ts +15 -0
- package/dist/npm/field-types/note-label-position.d.ts +107 -0
- package/dist/npm/field-types/note-line.interface.d.ts +26 -0
- package/dist/npm/field-types/note-position.d.ts +104 -0
- package/dist/npm/field-types/overlay.interface.d.ts +15 -0
- package/dist/npm/field-types/padding.interface.d.ts +11 -1
- package/dist/npm/field-types/plot-band-label.interface.d.ts +100 -0
- package/dist/npm/field-types/plot-band.interface.d.ts +53 -0
- package/dist/npm/field-types/series-labels-alignment.d.ts +16 -0
- package/dist/npm/field-types/series-labels-position.d.ts +28 -0
- package/dist/npm/field-types/series-line.interface.d.ts +32 -0
- package/dist/npm/field-types/series-mean.interface.d.ts +26 -0
- package/dist/npm/field-types/series-median.interface.d.ts +26 -0
- package/dist/npm/field-types/series-pattern.interface.d.ts +77 -67
- package/dist/npm/field-types/series-stack.interface.d.ts +19 -0
- package/dist/npm/field-types/series-type.d.ts +244 -0
- package/dist/npm/field-types/series-whiskers.interface.d.ts +26 -0
- package/dist/npm/field-types/trendline-forecast.interface.d.ts +14 -0
- package/dist/npm/field-types/week-start-day.enum.d.ts +49 -0
- package/dist/npm/field-types.d.ts +46 -6
- package/dist/npm/main.d.ts +4 -0
- package/dist/npm/option-types/axis-crosshair-tooltip.interface.d.ts +49 -0
- package/dist/npm/option-types/axis-defaults/crosshair.interface.d.ts +43 -0
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/axis-defaults/labels.interface.d.ts +69 -0
- package/dist/npm/option-types/axis-defaults/title.interface.d.ts +63 -0
- package/dist/npm/option-types/axis-defaults.interface.d.ts +101 -0
- package/dist/npm/option-types/category-axis-item/crosshair.interface.d.ts +40 -0
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/category-axis-item/labels.interface.d.ts +115 -0
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/category-axis-item/notes.interface.d.ts +40 -0
- package/dist/npm/option-types/category-axis-item/notes.label.interface.d.ts +55 -0
- package/dist/npm/option-types/category-axis-item/range-labels.interface.d.ts +28 -0
- package/dist/npm/option-types/category-axis-item/select.interface.d.ts +35 -0
- package/dist/npm/option-types/category-axis-item/title.interface.d.ts +65 -0
- package/dist/npm/option-types/category-axis-item.interface.d.ts +195 -0
- package/dist/npm/option-types/chart-area.interface.d.ts +36 -0
- package/dist/npm/option-types/legend/inactive-items.interface.d.ts +12 -0
- package/dist/npm/option-types/legend/item.interface.d.ts +124 -0
- package/dist/npm/option-types/legend/legend-title.interface.d.ts +67 -0
- package/dist/npm/option-types/legend/markers.interface.d.ts +34 -0
- package/dist/npm/option-types/legend.interface.d.ts +120 -0
- package/dist/npm/option-types/navigator/hint-content-args.interface.d.ts +15 -0
- package/dist/npm/option-types/navigator/hint.interface.d.ts +27 -0
- package/dist/npm/option-types/navigator/select.interface.d.ts +22 -0
- package/dist/npm/option-types/navigator.interface.d.ts +56 -0
- package/dist/npm/option-types/pane/title.interface.d.ts +65 -0
- package/dist/npm/option-types/pane-defaults/title.interface.d.ts +51 -0
- package/dist/npm/option-types/pane-defaults.interface.d.ts +53 -0
- package/dist/npm/option-types/pane.interface.d.ts +53 -0
- package/dist/npm/option-types/plot-area.interface.d.ts +33 -0
- package/dist/npm/option-types/series-defaults/labels.from.interface.d.ts +54 -0
- package/dist/npm/option-types/series-defaults/labels.interface.d.ts +78 -0
- package/dist/npm/option-types/series-defaults/labels.to.interface.d.ts +57 -0
- package/dist/npm/option-types/series-defaults/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/series-defaults/notes.interface.d.ts +31 -0
- package/dist/npm/option-types/series-defaults/notes.label.interface.d.ts +58 -0
- package/dist/npm/option-types/series-defaults/tooltip.interface.d.ts +54 -0
- package/dist/npm/option-types/series-defaults.interface.d.ts +218 -0
- package/dist/npm/option-types/series-item/error-bars.interface.d.ts +60 -0
- package/dist/npm/option-types/series-item/extremes.interface.d.ts +32 -0
- package/dist/npm/option-types/series-item/highlight.interface.d.ts +64 -0
- package/dist/npm/option-types/series-item/labels.from.interface.d.ts +73 -0
- package/dist/npm/option-types/series-item/labels.interface.d.ts +104 -0
- package/dist/npm/option-types/series-item/labels.to.interface.d.ts +74 -0
- package/dist/npm/option-types/series-item/markers-highlight.interface.d.ts +22 -0
- package/dist/npm/option-types/series-item/markers.interface.d.ts +59 -0
- package/dist/npm/option-types/series-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/series-item/notes.interface.d.ts +35 -0
- package/dist/npm/option-types/series-item/notes.label.interface.d.ts +59 -0
- package/dist/npm/option-types/series-item/outliers.interface.d.ts +32 -0
- package/dist/npm/option-types/series-item/tooltip.interface.d.ts +59 -0
- package/dist/npm/option-types/series-item/trendline.interface.d.ts +31 -0
- package/dist/npm/option-types/series-item.interface.d.ts +645 -0
- package/dist/npm/option-types/subtitle.interface.d.ts +74 -0
- package/dist/npm/option-types/title.interface.d.ts +75 -0
- package/dist/npm/option-types/tooltip-border.interface.d.ts +12 -0
- package/dist/npm/option-types/tooltip.interface.d.ts +65 -0
- package/dist/npm/option-types/value-axis-item/crosshair.interface.d.ts +36 -0
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/value-axis-item/labels.interface.d.ts +101 -0
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/value-axis-item/notes.interface.d.ts +39 -0
- package/dist/npm/option-types/value-axis-item/notes.label.interface.d.ts +60 -0
- package/dist/npm/option-types/value-axis-item/title.interface.d.ts +64 -0
- package/dist/npm/option-types/value-axis-item.interface.d.ts +148 -0
- package/dist/npm/option-types/x-axis-item/crosshair.interface.d.ts +33 -0
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/x-axis-item/labels.interface.d.ts +109 -0
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/x-axis-item/notes.interface.d.ts +40 -0
- package/dist/npm/option-types/x-axis-item/notes.label.interface.d.ts +58 -0
- package/dist/npm/option-types/x-axis-item/title.interface.d.ts +65 -0
- package/dist/npm/option-types/x-axis-item.interface.d.ts +165 -0
- package/dist/npm/option-types/y-axis-item/crosshair.interface.d.ts +36 -0
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +6 -0
- package/dist/npm/option-types/y-axis-item/labels.interface.d.ts +107 -0
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.d.ts +32 -0
- package/dist/npm/option-types/y-axis-item/notes.interface.d.ts +40 -0
- package/dist/npm/option-types/y-axis-item/notes.label.interface.d.ts +58 -0
- package/dist/npm/option-types/y-axis-item/title.interface.d.ts +65 -0
- package/dist/npm/option-types/y-axis-item.interface.d.ts +154 -0
- package/dist/npm/option-types/zoomable.interface.d.ts +16 -0
- package/dist/npm/property-types.d.ts +151 -0
- package/dist/npm/sankey.d.ts +5 -3
- package/package.json +4 -2
|
@@ -0,0 +1,645 @@
|
|
|
1
|
+
import { drawing } from '@progress/kendo-drawing';
|
|
2
|
+
import { SeriesErrorBars } from './series-item/error-bars.interface';
|
|
3
|
+
import { SeriesExtremes } from './series-item/extremes.interface';
|
|
4
|
+
import { SeriesHighlight } from './series-item/highlight.interface';
|
|
5
|
+
import { SeriesLabels } from './series-item/labels.interface';
|
|
6
|
+
import { SeriesMarkers } from './series-item/markers.interface';
|
|
7
|
+
import { SeriesNotes } from './series-item/notes.interface';
|
|
8
|
+
import { SeriesOutliers } from './series-item/outliers.interface';
|
|
9
|
+
import { SeriesTooltip } from './series-item/tooltip.interface';
|
|
10
|
+
import { Border, BulletTarget, DashType, LabelConnectors, LegendItem, SeriesTrendline } from '../property-types';
|
|
11
|
+
import {
|
|
12
|
+
Margin,
|
|
13
|
+
NegativeBubbleValues,
|
|
14
|
+
Overlay,
|
|
15
|
+
SeriesLine,
|
|
16
|
+
SeriesType,
|
|
17
|
+
SeriesWhiskers
|
|
18
|
+
} from '../property-types';
|
|
19
|
+
import { LineStyle, SeriesStack, SeriesVisualArgs } from '../property-types';
|
|
20
|
+
import { SeriesMedian } from '../field-types/series-median.interface';
|
|
21
|
+
import { SeriesPattern } from '../field-types/series-pattern.interface';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Represents the configuration options of the series.
|
|
25
|
+
*/
|
|
26
|
+
export interface Series {
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Specifies the aggregate function for the date series.
|
|
30
|
+
* Apply this function when a category (year, month, or other) contains two or more points.
|
|
31
|
+
* The Chart displays the return value of the function instead of the individual points.
|
|
32
|
+
* This option is supported for Categorical Chart axis only.
|
|
33
|
+
*
|
|
34
|
+
* Aggregate functions support the following values:
|
|
35
|
+
* - `"avg"`—Calculates the average of all values for the date period.
|
|
36
|
+
* - `"count"`—Counts the number of values for the date period.
|
|
37
|
+
* - `"max"`—Finds the highest value for the date period.
|
|
38
|
+
* - `"min"`—Finds the lowest value for the date period.
|
|
39
|
+
* - `"sum"`—Sums all values for the date period. Uses `0` when no data points are defined.
|
|
40
|
+
* - `"sumOrNull"`—Sums all values for the date period. Uses `null` when no data points are
|
|
41
|
+
* defined.
|
|
42
|
+
* - `"first"`—Uses the first value.
|
|
43
|
+
* - function (values, series, dataItems, category)—A user-defined aggregate function that returns a single
|
|
44
|
+
* value or a data item.
|
|
45
|
+
* - object (compound aggregate)—Applies to the Candlestick, Box Plot, and OHLC series.
|
|
46
|
+
* Sets the aggregate for each data item field.
|
|
47
|
+
*/
|
|
48
|
+
aggregate?: any;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Determines whether the Chart automatically scales down to fit the content area.
|
|
52
|
+
* Applicable for the Pie and Donut series.
|
|
53
|
+
* {% platform_content angular %}
|
|
54
|
+
* (See [Displaying Labels in Angular Donut Chart example](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/donut#displaying-labels-in-angular-donut-chart)).
|
|
55
|
+
* {% endplatform_content %}
|
|
56
|
+
*/
|
|
57
|
+
autoFit?: boolean;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Specifies the name of the value axis.
|
|
61
|
+
* This option is supported for Scatter plots. For more information on Scatter plots, refer to
|
|
62
|
+
* [`xAxis`]({% slug api_charts_xaxis %}) and [`yAxis`]({% slug api_charts_yaxis %}).
|
|
63
|
+
*/
|
|
64
|
+
axis?: string;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Specifies the border of the Chart series.
|
|
68
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to
|
|
69
|
+
* `"bar"`, `"column"`, `"donut"`, `"pie"`, `"bubble"`, `"boxPlot"`, `"candlestick"`, or `"ohlc"`.
|
|
70
|
+
*/
|
|
71
|
+
border?: Border;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Specifies the name of the category axis that the series uses.
|
|
75
|
+
* If you do not specify a [`categoryAxis`]({% slug api_charts_categoryaxis %}), the Chart uses the first axis.
|
|
76
|
+
*/
|
|
77
|
+
categoryAxis?: string;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Specifies the data item field which contains the category name or date.
|
|
81
|
+
* When the category is a date, renders the points in chronological order.
|
|
82
|
+
*/
|
|
83
|
+
categoryField?: string;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Specifies the data field that contains the `close` value.
|
|
87
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"candlestick"` or `"ohlc"`.
|
|
88
|
+
*/
|
|
89
|
+
closeField?: string;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Specifies the series base color.
|
|
93
|
+
*
|
|
94
|
+
* Accepts CSS color string (including HEX and RGB) and function (point). The function, which is user-defined and evaluated for each point, assumes the default series color when it returns `undefined`.
|
|
95
|
+
*/
|
|
96
|
+
color?: any;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Specifies the data item field which contains the series color.
|
|
100
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type)
|
|
101
|
+
* is set to `"bar"`, `"column"`, `"rangeBar"`, `"rangeColumn"`, `"bubble"`, `"donut"`, `"pie"`, `"candlestick"`,
|
|
102
|
+
* `"ohlc"`, or `"waterfall"`.
|
|
103
|
+
*/
|
|
104
|
+
colorField?: string;
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Specifies the label connectors options.
|
|
108
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"donut"` or `"pie"` and
|
|
109
|
+
* [`series.labels.visible`]({% slug api_charts_serieslabels %}#visible) is set to `true`.
|
|
110
|
+
*/
|
|
111
|
+
connectors?: LabelConnectors;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Specifies the data item field which contains the current value.
|
|
115
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bullet"` or `"verticalBullet"`.
|
|
116
|
+
*/
|
|
117
|
+
currentField?: string;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Specifies the dash type of line Chart.
|
|
121
|
+
* Use this option only when the [`series.type`]({% slug api_charts_series %}#type) option is set to `"line"`.
|
|
122
|
+
*/
|
|
123
|
+
dashType?: DashType;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Specifies the array of data items which represent the series data.
|
|
127
|
+
*
|
|
128
|
+
* You can set it to:
|
|
129
|
+
* - Array of objects. Each point is bound to the field specified through the [`series.field`]({% slug api_charts_series %}#field) option.
|
|
130
|
+
* - Array of numbers. Supported when the [`series.type`]({% slug api_charts_series %}#type) option is set to `"area"`, `"bar"`, `"column"`, `"donut"`, `"pie"`, `"line"`, or `"waterfall"`.
|
|
131
|
+
* - Array of arrays of numbers. Supported when the [`series.type`]({% slug api_charts_series %}#type) option is set to `"bubble"`, `"scatter"`, `"scatterLine"`, `"ohlc"`, `"polar"`, `"rangeBar"`, or `"rangeArea"`.
|
|
132
|
+
*
|
|
133
|
+
* Bubble series need arrays of three values—X value, Y value, and Size value—for example, `[1, 1, 10]`.
|
|
134
|
+
*
|
|
135
|
+
* Scatter and ScatterLine series need arrays of two values—X value and Y value.
|
|
136
|
+
*
|
|
137
|
+
* OHLC and Candlestick series need arrays of four values—open, high, low, and close.
|
|
138
|
+
*
|
|
139
|
+
* RangeBar and RangeArea series need arrays of two values—the from and to value.
|
|
140
|
+
*/
|
|
141
|
+
data?: any[];
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Specifies the series color when the open value is greater than the close value.
|
|
145
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"candlestick"`.
|
|
146
|
+
*/
|
|
147
|
+
downColor?: string;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Specifies the data field which contains the color that applies when the `open` value is greater than the `close` value.
|
|
151
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"candlestick"`.
|
|
152
|
+
*/
|
|
153
|
+
downColorField?: string;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Specifies the data field which contains the value to use to drill down into detailed data for the point.
|
|
157
|
+
* {% platform_content angular %}
|
|
158
|
+
* See [Drill Down](https://www.telerik.com/kendo-angular-ui/components/charts/drill-down) example.
|
|
159
|
+
* {% endplatform_content %}
|
|
160
|
+
* {% platform_content react %}
|
|
161
|
+
* See [Drill Down](https://www.telerik.com/kendo-react-ui/components/charts/drill-down) example.
|
|
162
|
+
* {% endplatform_content %}
|
|
163
|
+
*/
|
|
164
|
+
drilldownField?: string;
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Determines whether the segments have the same height.
|
|
168
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"funnel"` or `"pyramid"`.
|
|
169
|
+
* Setting it to `false` makes all segments have the same height.
|
|
170
|
+
* Setting it to `true` bases the height of each segment on its value.
|
|
171
|
+
*/
|
|
172
|
+
dynamicHeight?: boolean;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"funnel"`.
|
|
176
|
+
* Setting it to `true` makes the ratio of the bases of each segment calculate based on the ratio of
|
|
177
|
+
* `currentDataItem.value`/`nextDataItem.value`.
|
|
178
|
+
* Charts always create the last element as a rectangle since there is no following element.
|
|
179
|
+
*/
|
|
180
|
+
dynamicSlope?: boolean;
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Specifies the data item field which contains the [`series.errorBars`]({% slug api_charts_series %}#errorbars) high value.
|
|
184
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bar"`, `"column"`, `"line"`, or `"area"`.
|
|
185
|
+
*/
|
|
186
|
+
errorHighField?: string;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Specifies the data item field which contains the [`series.errorBars`]({% slug api_charts_series %}#errorbars) low value.
|
|
190
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bar"`, `"column"`, `"line"`, or `"area"`.
|
|
191
|
+
*/
|
|
192
|
+
errorLowField?: string;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Specifies the data item field which contains a Boolean value indicating whether the sector is exploded.
|
|
196
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"donut"` or `"pie"`.
|
|
197
|
+
*/
|
|
198
|
+
explodeField?: string;
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Specifies the data item field which contains the series value.
|
|
202
|
+
*/
|
|
203
|
+
field?: string;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Specifies the name of the parent series of the trendline.
|
|
207
|
+
*
|
|
208
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to
|
|
209
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
210
|
+
*/
|
|
211
|
+
for?: string;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Specifies the data item field which contains the series from value.
|
|
215
|
+
*/
|
|
216
|
+
fromField?: string;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Specifies the distance between the categories expressed as a percentage of the bar width.
|
|
220
|
+
* See the related spacing setting.
|
|
221
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bar"`, `"column"`, `"candlestick"`, `"ohlc"`,
|
|
222
|
+
* `"radarColumn"`, or `"waterfall"`.
|
|
223
|
+
*/
|
|
224
|
+
gap?: number;
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Specifies the data field which contains the high value.
|
|
228
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"candlestick"` or `"ohlc"`.
|
|
229
|
+
*/
|
|
230
|
+
highField?: string;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Specifies the diameter of the donut hole in pixels.
|
|
234
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"donut"`.
|
|
235
|
+
*/
|
|
236
|
+
holeSize?: number;
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* Specifies the Chart line configuration options.
|
|
240
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"area"`, `"candlestick"`, `"ohlc"`, or
|
|
241
|
+
* `"waterfall"`.
|
|
242
|
+
*/
|
|
243
|
+
line?: SeriesLine;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Specifies the data field containing the low value.
|
|
247
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"candlestick"` or `"ohlc"`.
|
|
248
|
+
*/
|
|
249
|
+
lowField?: string;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* Specifies the data item field which contains the series lower value.
|
|
253
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
254
|
+
*/
|
|
255
|
+
lowerField?: string;
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Specifies the margin around each donut series (ring). A numeric value sets all margins.
|
|
259
|
+
*/
|
|
260
|
+
margin?: Margin | number;
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Specifies the maximum size of the Chart bubble series marker.
|
|
264
|
+
*/
|
|
265
|
+
maxSize?: number;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* Specifies the configuration of the mean value indicator (line) for Box Plot series.
|
|
269
|
+
* This option is not supported by other series types.
|
|
270
|
+
* {% platform_content angular %}
|
|
271
|
+
* See [Box Plot Series](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/box-plot) example.
|
|
272
|
+
* {% endplatform_content %}
|
|
273
|
+
* {% platform_content react %}
|
|
274
|
+
* See [Box Plot Series](https://www.telerik.com/kendo-react-ui/components/charts/series-types/box-plot) example.
|
|
275
|
+
* {% endplatform_content %}
|
|
276
|
+
* {% platform_content vue %}
|
|
277
|
+
* See [Box Plot Series](https://www.telerik.com/kendo-vue-ui/components/charts/series-types/box-plot) example.
|
|
278
|
+
* {% endplatform_content %}
|
|
279
|
+
*/
|
|
280
|
+
mean?: SeriesMedian;
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* Specifies the data item field which contains the series mean value.
|
|
284
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
285
|
+
*/
|
|
286
|
+
meanField?: string;
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Specifies the configuration of the median value indicator (line) for Box Plot series.
|
|
290
|
+
* This option is not supported by other series types.
|
|
291
|
+
* {% platform_content angular %}
|
|
292
|
+
* See [Box Plot Series](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/box-plot) example.
|
|
293
|
+
* {% endplatform_content %}
|
|
294
|
+
* {% platform_content react %}
|
|
295
|
+
* See [Box Plot Series](https://www.telerik.com/kendo-react-ui/components/charts/series-types/box-plot) example.
|
|
296
|
+
* {% endplatform_content %}
|
|
297
|
+
* {% platform_content vue %}
|
|
298
|
+
* See [Box Plot Series](https://www.telerik.com/kendo-vue-ui/components/charts/series-types/box-plot) example.
|
|
299
|
+
* {% endplatform_content %}
|
|
300
|
+
*/
|
|
301
|
+
median?: SeriesMedian;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Specifies the data item field which contains the series median value.
|
|
305
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
306
|
+
*/
|
|
307
|
+
medianField?: string;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Specifies the minimum size of the Chart bubble series marker.
|
|
311
|
+
*/
|
|
312
|
+
minSize?: number;
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* Specifies the behavior for handling missing values.
|
|
316
|
+
* This option is available when [`series.type`]({% slug api_charts_series %}#type) is set to `"area"`, `"rangeArea"`, `"line"`, `"scatterLine"`,
|
|
317
|
+
* `"radarLine"`, `"radarArea"`, `"polarLine"`, or `"polarArea"`.
|
|
318
|
+
*
|
|
319
|
+
* Supports the following values:
|
|
320
|
+
* - `"gap"`—The plot stops before the missing point and continues after it.
|
|
321
|
+
* - `"interpolate"`—Interpolates the value from neighboring points. Represents the default value for all series except for the `"area"` and stacked series. Area and stacked series default to `"zero"`.
|
|
322
|
+
* - `"zero"`—Assumes the value to be zero.
|
|
323
|
+
*/
|
|
324
|
+
missingValues?: 'gap' | 'interpolate' | 'zero';
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* Specifies the name of the Chart series which is visible in the legend.
|
|
328
|
+
*/
|
|
329
|
+
name?: string;
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* Specifies the top-base/bottom-base ratio of the whole Funnel Chart. If the `neckRatio` is set to `3`,
|
|
333
|
+
* it means the top base is three times smaller than the bottom base.
|
|
334
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"funnel"` and `dynamicSlope` is set to `false`.
|
|
335
|
+
*/
|
|
336
|
+
neckRatio?: number;
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Specifies the color to use for the Bar, Column, or Waterfall series with negative values.
|
|
340
|
+
* Accepts valid CSS color string, including HEX and RGB.
|
|
341
|
+
*/
|
|
342
|
+
negativeColor?: string;
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* Specifies the options for displaying the Chart negative bubble values.
|
|
346
|
+
*/
|
|
347
|
+
negativeValues?: NegativeBubbleValues;
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* Specifies the data item field which contains the series note text.
|
|
351
|
+
*/
|
|
352
|
+
noteTextField?: string;
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* Specifies the opacity of the series. Series are opaque by default.
|
|
356
|
+
*/
|
|
357
|
+
opacity?: number;
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* Specifies the data field which contains the open value.
|
|
361
|
+
* This option is available when [`series.type`]({% slug api_charts_series %}#type) is set to `"candlestick"` or `"ohlc"`.
|
|
362
|
+
*/
|
|
363
|
+
openField?: string;
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* Specifies the data item field which contains the series outliers value.
|
|
367
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
368
|
+
*/
|
|
369
|
+
outliersField?: string;
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* Specifies the overlay options of the Chart series.
|
|
373
|
+
*/
|
|
374
|
+
overlay?: Overlay;
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* Specifies the padding around the Chart (equal on all sides).
|
|
378
|
+
* This option is available when [`series.type`]({% slug api_charts_series %}#type) is set to `"donut"` or `"pie"`.
|
|
379
|
+
*/
|
|
380
|
+
padding?: number;
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* Specifies the data item field which contains the series `q1` value.
|
|
384
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
385
|
+
*/
|
|
386
|
+
q1Field?: string;
|
|
387
|
+
|
|
388
|
+
/**
|
|
389
|
+
* Specifies the data item field which contains the series `q3` value.
|
|
390
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
391
|
+
*/
|
|
392
|
+
q3Field?: string;
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* Specifies the space in pixels between the different segments of the Funnel or Pyramid Chart.
|
|
396
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"funnel"` or `"pyramid"`.
|
|
397
|
+
*/
|
|
398
|
+
segmentSpacing?: number;
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* Specifies the radius of the Chart Donut series in pixels. When not set, Charts split the available space evenly
|
|
402
|
+
* between the series.
|
|
403
|
+
*/
|
|
404
|
+
size?: number;
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* Specifies the data field which contains the bubble size value.
|
|
408
|
+
*/
|
|
409
|
+
sizeField?: string;
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* Specifies the distance between series points within a category expressed as a percentage of the bar width.
|
|
413
|
+
* See the related `gap` setting.
|
|
414
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bar"`, `"column"`, `"candlestick"`, `"ohlc"`, or
|
|
415
|
+
* `"radarColumn"`.
|
|
416
|
+
*/
|
|
417
|
+
spacing?: number;
|
|
418
|
+
|
|
419
|
+
/**
|
|
420
|
+
* Determines whether the series stacks.
|
|
421
|
+
* Interprets a string value as [`series.stack.group`]({% slug api_charts_seriesstack %}#group).
|
|
422
|
+
*
|
|
423
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bar"`, `"column"`, `"line"`, `"area"`,
|
|
424
|
+
* `"verticalLine"`, `"verticalArea"`, `"radarLine"`, `"radarArea"`, and `"radarColumn"`.
|
|
425
|
+
* If not overridden, inherits the stack settings of the first series as a default value for the rest of the series.
|
|
426
|
+
*/
|
|
427
|
+
stack?: boolean | string | SeriesStack;
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* Specifies the start angle (in degrees) of the first Donut or Pie segment.
|
|
431
|
+
* Increases clockwise with zero to the left. You can use negative values.
|
|
432
|
+
*/
|
|
433
|
+
startAngle?: number;
|
|
434
|
+
|
|
435
|
+
/**
|
|
436
|
+
* Specifies the style options for the series.
|
|
437
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to
|
|
438
|
+
* `"line"`, `"scatterLine"`, `"radarLine"`, or `"polarLine"`.
|
|
439
|
+
*/
|
|
440
|
+
style?: LineStyle;
|
|
441
|
+
|
|
442
|
+
/**
|
|
443
|
+
* Specifies the data item field which contains the summary type for the Waterfall series.
|
|
444
|
+
* Discards the value (if any) of a data item marked as a summary point.
|
|
445
|
+
*
|
|
446
|
+
* Summary columns are optional and take one of two types:
|
|
447
|
+
*
|
|
448
|
+
* `"runningTotal"`—Displays the sum of all items since the last `"runningTotal"` point.
|
|
449
|
+
* `"total"`—Displays the sum of all previous items.
|
|
450
|
+
*/
|
|
451
|
+
summaryField?: string;
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* Specifies the configuration options of the target.
|
|
455
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bullet"` or `"verticalBullet"`.
|
|
456
|
+
*/
|
|
457
|
+
target?: BulletTarget;
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* Specifies the data item field which contains the series to value.
|
|
461
|
+
*/
|
|
462
|
+
toField?: string;
|
|
463
|
+
|
|
464
|
+
/**
|
|
465
|
+
* Specifies the type of the series.
|
|
466
|
+
*/
|
|
467
|
+
type?: SeriesType;
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* Specifies the data item field which contains the series upper value.
|
|
471
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
472
|
+
*/
|
|
473
|
+
upperField?: string;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* Specifies the visible property of a Chart series.
|
|
477
|
+
*/
|
|
478
|
+
visible?: boolean;
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* Determines whether to show the point category (for Funnel, Pyramid, Donut, and Pie series)
|
|
482
|
+
* or the series name (for other available series types) in the legend.
|
|
483
|
+
*/
|
|
484
|
+
visibleInLegend?: boolean;
|
|
485
|
+
|
|
486
|
+
/**
|
|
487
|
+
* Specifies the data item field which indicates whether to show the point category name in the legend.
|
|
488
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"funnel"`, `"pyramid"`, `"donut"`, or `"pie"`.
|
|
489
|
+
*/
|
|
490
|
+
visibleInLegendField?: string;
|
|
491
|
+
|
|
492
|
+
/**
|
|
493
|
+
* Specifies a function that creates a custom visual for the points. Applicable for the Bar, Column,
|
|
494
|
+
* Pie, Donut, Funnel, Pyramid, Range Bar, Range Column, Line, ScatterLine, and Waterfall series.
|
|
495
|
+
*/
|
|
496
|
+
visual?: (e: SeriesVisualArgs) => drawing.Element;
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* Specifies the line width.
|
|
500
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"line"`, `"scatterLine"`, `"radarLine"`, or
|
|
501
|
+
* `"polarLine"`.
|
|
502
|
+
*/
|
|
503
|
+
width?: number;
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Specifies the name of the X axis.
|
|
507
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bubble"`, `"scatter"`, `"scatterLine"`, or `"polar"` series.
|
|
508
|
+
* For the Polar series, Charts express the [`xAxis`]({% slug api_charts_xaxis %}) range in degrees.
|
|
509
|
+
*/
|
|
510
|
+
xAxis?: string;
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Specifies the data item field which contains the [`series.errorBars`]({% slug api_charts_series %}#errorbars) xAxis high value.
|
|
514
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"scatter"`, `"scatterLine"`, or
|
|
515
|
+
* `"bubble"`.
|
|
516
|
+
*/
|
|
517
|
+
xErrorHighField?: string;
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* Specifies the data item field which contains the [`series.errorBars`]({% slug api_charts_series %}#errorbars) xAxis low value.
|
|
521
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"scatter"`, `"scatterLine"`, or
|
|
522
|
+
* `"bubble"`.
|
|
523
|
+
*/
|
|
524
|
+
xErrorLowField?: string;
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* Specifies the data item field containing the x value.
|
|
528
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bubble"`, `"scatter"`, `"scatterLine"`, or
|
|
529
|
+
* `"polar"` series.
|
|
530
|
+
*/
|
|
531
|
+
xField?: string;
|
|
532
|
+
|
|
533
|
+
/**
|
|
534
|
+
* Specifies the name of the Y axis to use.
|
|
535
|
+
* Available for the Bubble, Scatter, Scatter Line, and Polar series.
|
|
536
|
+
*/
|
|
537
|
+
yAxis?: string;
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* Specifies the data item field which contains the [`series.errorBars`]({% slug api_charts_series %}#errorbars) yAxis high value.
|
|
541
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"scatter"`, `"scatterLine"`, or
|
|
542
|
+
* `"bubble"`.
|
|
543
|
+
*/
|
|
544
|
+
yErrorHighField?: string;
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* Specifies the data item field which contains the [`series.errorBars`]({% slug api_charts_series %}#errorbars) yAxis low value.
|
|
548
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"scatter"`, `"scatterLine"`, or
|
|
549
|
+
* `"bubble"`.
|
|
550
|
+
*/
|
|
551
|
+
yErrorLowField?: string;
|
|
552
|
+
|
|
553
|
+
/**
|
|
554
|
+
* Specifies the data item field containing the y value.
|
|
555
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bubble"`, `"scatter"`, or `"scatterLine"`.
|
|
556
|
+
*/
|
|
557
|
+
yField?: string;
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* Specifies an optional Z-index that changes the default stacking order of series.
|
|
561
|
+
* Series with the highest Z-index appear on top.
|
|
562
|
+
* Series with no Z-index use the default stacking order based on the series type.
|
|
563
|
+
* For example, Line series appear on top with the Bar and Area following after.
|
|
564
|
+
*/
|
|
565
|
+
zIndex?: number;
|
|
566
|
+
|
|
567
|
+
/**
|
|
568
|
+
* Specifies the error bars of the Chart series.
|
|
569
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"bar"`, `"column"`, `"line"`, `"area"`,
|
|
570
|
+
* `"scatter"`, `"scatterLine"`, or `"bubble"`.
|
|
571
|
+
*/
|
|
572
|
+
errorBars?: SeriesErrorBars;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Specifies the configuration of the Chart series extremes. Applies to extreme outliers.
|
|
576
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
577
|
+
*/
|
|
578
|
+
extremes?: SeriesExtremes;
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* Specifies the configuration of the Chart series highlight.
|
|
582
|
+
*/
|
|
583
|
+
highlight?: SeriesHighlight;
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* Specifies the configuration of the Chart series label.
|
|
587
|
+
* Displays the series labels when the [`series.labels.visible`]({% slug api_charts_serieslabels %}#visible) option is set to `true`.
|
|
588
|
+
*/
|
|
589
|
+
labels?: SeriesLabels;
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* Specifies the configuration of the Chart series marker.
|
|
593
|
+
* Displays the series labels when the [`series.markers.visible`]({% slug api_charts_seriesmarkers %}#visible) option is set to `true`.
|
|
594
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"area"`, `"rangeArea"`, `"line"`, `"scatter"`, `"scatterLine"`,
|
|
595
|
+
* `"radarLine"`, `"radarArea"`, `"polarLine"`, `"polarScatter"`, or `"polarArea"`.
|
|
596
|
+
*/
|
|
597
|
+
markers?: SeriesMarkers;
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* Specifies the configuration of the Chart legend item.
|
|
601
|
+
* Inherits the Legend item type and markers from the series by default.
|
|
602
|
+
*/
|
|
603
|
+
legendItem?: LegendItem;
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* Specifies the configuration of the series notes.
|
|
607
|
+
*/
|
|
608
|
+
notes?: SeriesNotes;
|
|
609
|
+
|
|
610
|
+
/**
|
|
611
|
+
* Specifies the configuration of the Chart series outliers. Applies to mild outliers.
|
|
612
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
613
|
+
*/
|
|
614
|
+
outliers?: SeriesOutliers;
|
|
615
|
+
|
|
616
|
+
/**
|
|
617
|
+
* Specifies the configuration options of the Chart series tooltip.
|
|
618
|
+
*/
|
|
619
|
+
tooltip?: SeriesTooltip;
|
|
620
|
+
|
|
621
|
+
/**
|
|
622
|
+
* Specifies the trendline configuration options.
|
|
623
|
+
*
|
|
624
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to
|
|
625
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
626
|
+
*/
|
|
627
|
+
trendline?: SeriesTrendline;
|
|
628
|
+
|
|
629
|
+
/**
|
|
630
|
+
* Specifies the configuration of the whiskers for the Chart series.
|
|
631
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"boxPlot"`.
|
|
632
|
+
*/
|
|
633
|
+
whiskers?: SeriesWhiskers;
|
|
634
|
+
|
|
635
|
+
/**
|
|
636
|
+
* Specifies the configuration options of the series pattern.
|
|
637
|
+
*/
|
|
638
|
+
pattern?: SeriesPattern | ((point: any) => SeriesPattern);
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
* Specifies the data item field which contains the series pattern.
|
|
642
|
+
* This option is supported when [`series.type`]({% slug api_charts_series %}#type) is set to `"pie"`, `"donut"`, `"funnel"`, `"heatmap"`, or `"pyramid"`.
|
|
643
|
+
*/
|
|
644
|
+
patternField?: string;
|
|
645
|
+
}
|