@progress/kendo-charts 1.28.0 → 1.29.0-dev.202305230938

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.
@@ -15,7 +15,7 @@ import { COLUMN, DONUT, PIE, FUNNEL, BAR, LINE, VERTICAL_LINE, AREA, VERTICAL_AR
15
15
  RANGE_BAR, WATERFALL, HORIZONTAL_WATERFALL, SCATTER, SCATTER_LINE, BUBBLE,
16
16
  POLAR_AREA, POLAR_LINE, POLAR_SCATTER, RADAR_AREA, RADAR_COLUMN, RADAR_LINE, CATEGORY,
17
17
  RANGE_AREA, VERTICAL_RANGE_AREA, X_ERROR_LOW_FIELD, X_ERROR_HIGH_FIELD, Y_ERROR_LOW_FIELD, Y_ERROR_HIGH_FIELD,
18
- ERROR_LOW_FIELD, ERROR_HIGH_FIELD, HEATMAP } from './constants';
18
+ ERROR_LOW_FIELD, ERROR_HIGH_FIELD, HEATMAP, DRILLDOWN_FIELD } from './constants';
19
19
  import { X, Y, VALUE } from '../common/constants';
20
20
 
21
21
  const COLOR = "color";
@@ -48,25 +48,25 @@ PlotAreaFactory.current.register(HeatmapPlotArea, [ HEATMAP ]);
48
48
 
49
49
  SeriesBinder.current.register(
50
50
  [ BAR, COLUMN, LINE, VERTICAL_LINE, AREA, VERTICAL_AREA ],
51
- [ VALUE ], [ CATEGORY, COLOR, NOTE_TEXT, ERROR_LOW_FIELD, ERROR_HIGH_FIELD ]
51
+ [ VALUE ], [ CATEGORY, COLOR, NOTE_TEXT, ERROR_LOW_FIELD, ERROR_HIGH_FIELD, DRILLDOWN_FIELD ]
52
52
  );
53
53
 
54
54
  SeriesBinder.current.register(
55
55
  [ RANGE_COLUMN, RANGE_BAR, RANGE_AREA, VERTICAL_RANGE_AREA ],
56
- [ FROM, TO ], [ CATEGORY, COLOR, NOTE_TEXT ]
56
+ [ FROM, TO ], [ CATEGORY, COLOR, NOTE_TEXT, DRILLDOWN_FIELD ]
57
57
  );
58
58
 
59
59
  SeriesBinder.current.register(
60
60
  [ WATERFALL, HORIZONTAL_WATERFALL ],
61
- [ VALUE ], [ CATEGORY, COLOR, NOTE_TEXT, SUMMARY_FIELD ]
61
+ [ VALUE ], [ CATEGORY, COLOR, NOTE_TEXT, SUMMARY_FIELD, DRILLDOWN_FIELD ]
62
62
  );
63
63
 
64
- SeriesBinder.current.register([ POLAR_AREA, POLAR_LINE, POLAR_SCATTER ], [ X, Y ], [ COLOR ]);
65
- SeriesBinder.current.register([ RADAR_AREA, RADAR_COLUMN, RADAR_LINE ], [ VALUE ], [ COLOR ]);
64
+ SeriesBinder.current.register([ POLAR_AREA, POLAR_LINE, POLAR_SCATTER ], [ X, Y ], [ COLOR, DRILLDOWN_FIELD ]);
65
+ SeriesBinder.current.register([ RADAR_AREA, RADAR_COLUMN, RADAR_LINE ], [ VALUE ], [ COLOR, DRILLDOWN_FIELD ]);
66
66
 
67
67
  SeriesBinder.current.register(
68
68
  [ FUNNEL ],
69
- [ VALUE ], [ CATEGORY, COLOR, "visibleInLegend", "visible" ]
69
+ [ VALUE ], [ CATEGORY, COLOR, "visibleInLegend", "visible", DRILLDOWN_FIELD ]
70
70
  );
71
71
 
72
72
  DefaultAggregates.current.register(
@@ -111,7 +111,7 @@ DefaultAggregates.current.register(
111
111
 
112
112
  SeriesBinder.current.register(
113
113
  [ BOX_PLOT, VERTICAL_BOX_PLOT ],
114
- [ "lower", "q1", "median", "q3", "upper", "mean", "outliers" ], [ CATEGORY, COLOR, NOTE_TEXT ]
114
+ [ "lower", "q1", "median", "q3", "upper", "mean", "outliers" ], [ CATEGORY, COLOR, NOTE_TEXT, DRILLDOWN_FIELD ]
115
115
  );
116
116
 
117
117
  DefaultAggregates.current.register(
@@ -122,7 +122,7 @@ DefaultAggregates.current.register(
122
122
 
123
123
  SeriesBinder.current.register(
124
124
  [ BULLET, VERTICAL_BULLET ],
125
- [ "current", "target" ], [ CATEGORY, COLOR, "visibleInLegend", NOTE_TEXT ]
125
+ [ "current", "target" ], [ CATEGORY, COLOR, "visibleInLegend", NOTE_TEXT, DRILLDOWN_FIELD ]
126
126
  );
127
127
 
128
128
  DefaultAggregates.current.register(
@@ -132,5 +132,5 @@ DefaultAggregates.current.register(
132
132
 
133
133
  SeriesBinder.current.register(
134
134
  [ PIE, DONUT ],
135
- [ VALUE ], [ CATEGORY, COLOR, "explode", "visibleInLegend", "visible" ]
135
+ [ VALUE ], [ CATEGORY, COLOR, "explode", "visibleInLegend", "visible", DRILLDOWN_FIELD ]
136
136
  );
@@ -158,7 +158,14 @@ class ScatterChart extends ChartElement {
158
158
 
159
159
  evalPointOptions(options, value, fields) {
160
160
  const { series, seriesIx } = fields;
161
- const state = { defaults: series._defaults, excluded: [ "data", "tooltip", "content", "template", "visual", "toggle", "_outOfRangeMinPoint", "_outOfRangeMaxPoint" ] };
161
+ const state = {
162
+ defaults: series._defaults,
163
+ excluded: [
164
+ "data", "tooltip", "content", "template", "visual", "toggle",
165
+ "_outOfRangeMinPoint", "_outOfRangeMaxPoint",
166
+ "drilldownSeriesFactory"
167
+ ]
168
+ };
162
169
 
163
170
  let doEval = this._evalSeries[seriesIx];
164
171
  if (!defined(doEval)) {
@@ -322,4 +329,4 @@ deepExtend(ScatterChart.prototype, ClipAnimationMixin, {
322
329
  _bindPoint: CategoricalChart.prototype._bindPoint
323
330
  });
324
331
 
325
- export default ScatterChart;
332
+ export default ScatterChart;