@progress/kendo-react-chart-wizard 13.3.0 → 13.4.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.
Files changed (40) hide show
  1. package/ChartWizard.d.ts +15 -0
  2. package/ChartWizard.mjs +10 -10
  3. package/components/ChartComponent.d.ts +18 -0
  4. package/components/FormField.d.ts +19 -0
  5. package/components/FormFieldSet.d.ts +17 -0
  6. package/components/SeriesGrid.d.ts +18 -0
  7. package/components/SeriesGrid.mjs +3 -3
  8. package/components/SeriesGridCells.d.ts +54 -0
  9. package/components/SeriesTypeButton.d.ts +21 -0
  10. package/components/SeriesTypesWrap.d.ts +14 -0
  11. package/components/panels/BarChartPanel.d.ts +16 -0
  12. package/components/panels/CategoryAxisPanel.d.ts +16 -0
  13. package/components/panels/CategoryAxisPanel.mjs +13 -13
  14. package/components/panels/ChartAreaPanel.d.ts +16 -0
  15. package/components/panels/ColumnChartPanel.d.ts +16 -0
  16. package/components/panels/ConfigurationPanel.d.ts +16 -0
  17. package/components/panels/LegendPanel.d.ts +16 -0
  18. package/components/panels/LegendPanel.mjs +1 -1
  19. package/components/panels/LineChartPanel.d.ts +16 -0
  20. package/components/panels/PieChartPanel.d.ts +16 -0
  21. package/components/panels/ScatterChartPanel.d.ts +16 -0
  22. package/components/panels/SeriesPanel.d.ts +16 -0
  23. package/components/panels/SeriesPanel.mjs +3 -3
  24. package/components/panels/TitlePanel.d.ts +16 -0
  25. package/components/panels/TitlePanel.mjs +6 -6
  26. package/components/panels/ValueAxisPanel.d.ts +16 -0
  27. package/components/panels/ValueAxisPanel.mjs +1 -1
  28. package/dist/cdn/js/kendo-react-chart-wizard.js +1 -1
  29. package/grid-integration/get-grid-selected-rows.d.ts +36 -0
  30. package/grid-integration/get-wizard-data-from-grid-selection.d.ts +36 -0
  31. package/grid-integration/index.d.ts +9 -0
  32. package/index.d.mts +7 -237
  33. package/index.d.ts +7 -237
  34. package/messages.d.ts +551 -0
  35. package/package.json +14 -14
  36. package/types/ChartWizardHandle.d.ts +24 -0
  37. package/types/ChartWizardPanelProps.d.ts +15 -0
  38. package/types/ChartWizardProps.d.ts +47 -0
  39. package/types/export.d.ts +65 -0
  40. package/utils.d.ts +147 -0
package/messages.d.ts ADDED
@@ -0,0 +1,551 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ declare const messages: {
12
+ readonly windowTitle: string;
13
+ readonly exportButton: string;
14
+ readonly exportPDFButton: string;
15
+ readonly exportSVGButton: string;
16
+ readonly exportPNGButton: string;
17
+ readonly tabChart: string;
18
+ readonly tabData: string;
19
+ readonly tabFormat: string;
20
+ readonly barChart: string;
21
+ readonly barChartBar: string;
22
+ readonly barChartStackedBar: string;
23
+ readonly barChart100StackedBar: string;
24
+ readonly pieChart: string;
25
+ readonly pieChartPie: string;
26
+ readonly columnChart: string;
27
+ readonly columnChartColumn: string;
28
+ readonly columnChartStackedColumn: string;
29
+ readonly columnChart100StackedColumn: string;
30
+ readonly lineChart: string;
31
+ readonly lineChartLine: string;
32
+ readonly lineChartStackedLine: string;
33
+ readonly lineChart100StackedLine: string;
34
+ readonly scatterChart: string;
35
+ readonly scatterChartScatter: string;
36
+ readonly configuration: string;
37
+ readonly configurationCategoryAxis: string;
38
+ readonly configurationXAxis: string;
39
+ readonly configurationValueAxis: string;
40
+ readonly configurationSeries: string;
41
+ readonly configurationSeriesAdd: string;
42
+ readonly formatChartArea: string;
43
+ readonly formatChartAreaMargins: string;
44
+ readonly formatChartAreaMarginsAuto: string;
45
+ readonly formatChartAreaMarginsLeft: string;
46
+ readonly formatChartAreaMarginsRight: string;
47
+ readonly formatChartAreaMarginsTop: string;
48
+ readonly formatChartAreaMarginsBottom: string;
49
+ readonly formatChartAreaBackground: string;
50
+ readonly formatChartAreaBackgroundColor: string;
51
+ readonly formatTitle: string;
52
+ readonly formatTitleApplyTo: string;
53
+ readonly formatTitleChartTitle: string;
54
+ readonly formatTitleChartSubtitle: string;
55
+ readonly formatTitleLabel: string;
56
+ readonly formatTitleFont: string;
57
+ readonly formatTitleFontPlaceholder: string;
58
+ readonly formatTitleSize: string;
59
+ readonly formatTitleSizePlaceholder: string;
60
+ readonly formatTitleColor: string;
61
+ readonly formatSeries: string;
62
+ readonly formatSeriesApplyTo: string;
63
+ readonly formatSeriesAllSeries: string;
64
+ readonly formatSeriesColor: string;
65
+ readonly formatSeriesShowLabels: string;
66
+ readonly formatLegend: string;
67
+ readonly formatLegendShowLegend: string;
68
+ readonly formatLegendFont: string;
69
+ readonly formatLegendFontPlaceholder: string;
70
+ /**
71
+ * @hidden
72
+ */
73
+ readonly formatLegendSize: string;
74
+ readonly formatLegendSizePlaceholder: string;
75
+ readonly formatLegendColor: string;
76
+ readonly formatLegendPosition: string;
77
+ readonly formatLegendPositionTop: string;
78
+ readonly formatLegendPositionBottom: string;
79
+ readonly formatLegendPositionLeft: string;
80
+ readonly formatLegendPositionRight: string; /**
81
+ * @hidden
82
+ */
83
+ readonly formatCategoryAxis: string;
84
+ readonly formatXAxis: string;
85
+ readonly formatCategoryAxisTitle: string;
86
+ /**
87
+ * @hidden
88
+ */
89
+ readonly formatCategoryAxisTitlePlaceholder: string;
90
+ readonly formatCategoryAxisTitleFont: string;
91
+ readonly formatCategoryAxisTitleFontPlaceholder: string;
92
+ readonly formatCategoryAxisTitleSize: string;
93
+ readonly formatCategoryAxisTitleSizePlaceholder: string;
94
+ readonly formatCategoryAxisTitleColor: string;
95
+ readonly formatCategoryAxisLabels: string;
96
+ readonly formatCategoryAxisLabelsFont: string;
97
+ readonly formatCategoryAxisLabelsFontPlaceholder: string;
98
+ readonly formatCategoryAxisLabelsSize: string;
99
+ readonly formatCategoryAxisLabelsSizePlaceholder: string;
100
+ readonly formatCategoryAxisLabelsColor: string;
101
+ readonly formatCategoryAxisLabelsRotation: string;
102
+ readonly formatCategoryAxisLabelsRotationAuto: string;
103
+ readonly formatCategoryAxisLabelsReverseOrder: string;
104
+ readonly formatValueAxis: string;
105
+ readonly formatYAxis: string;
106
+ readonly formatValueAxisTitle: string;
107
+ readonly formatValueAxisTitlePlaceholder: string;
108
+ readonly formatValueAxisTitleFont: string;
109
+ readonly formatValueAxisTitleFontPlaceholder: string;
110
+ readonly formatValueAxisTitleSize: string;
111
+ readonly formatValueAxisTitleSizePlaceholder: string;
112
+ readonly formatValueAxisTitleColor: string;
113
+ readonly formatValueAxisLabels: string;
114
+ readonly formatValueAxisLabelsFormat: string;
115
+ readonly formatValueAxisLabelsFormatText: string;
116
+ readonly formatValueAxisLabelsFormatNumber: string;
117
+ readonly formatValueAxisLabelsFormatCurrency: string;
118
+ readonly formatValueAxisLabelsFormatPercent: string;
119
+ readonly formatValueAxisLabelsFont: string;
120
+ readonly formatValueAxisLabelsFontPlaceholder: string;
121
+ readonly formatValueAxisLabelsSize: string;
122
+ readonly formatValueAxisLabelsSizePlaceholder: string;
123
+ readonly formatValueAxisLabelsColor: string;
124
+ readonly formatValueAxisLabelsRotation: string;
125
+ readonly formatValueAxisLabelsRotationAuto: string;
126
+ };
127
+ export { messages };
128
+ /**
129
+ * @hidden
130
+ */
131
+ export declare const windowTitle = "chartWizard.window.title";
132
+ /**
133
+ * @hidden
134
+ */
135
+ export declare const exportButton = "chartWizard.export.button";
136
+ /**
137
+ * @hidden
138
+ */
139
+ export declare const exportPDFButton = "chartWizard.exportPDF.button";
140
+ /**
141
+ * @hidden
142
+ */
143
+ export declare const exportSVGButton = "chartWizard.exportSVG.button";
144
+ /**
145
+ * @hidden
146
+ */
147
+ export declare const exportPNGButton = "chartWizard.exportPNG.button";
148
+ /**
149
+ * @hidden
150
+ */
151
+ export declare const tabChart = "chartWizard.tab.chart";
152
+ /**
153
+ * @hidden
154
+ */
155
+ export declare const tabData = "chartWizard.tab.data";
156
+ /**
157
+ * @hidden
158
+ */
159
+ export declare const tabFormat = "chartWizard.tab.format";
160
+ /**
161
+ * @hidden
162
+ */
163
+ export declare const barChart = "chartWizard.chart.barChart.expandText";
164
+ /**
165
+ * @hidden
166
+ */
167
+ export declare const barChartBar = "chartWizard.chart.barChart.bar";
168
+ /**
169
+ * @hidden
170
+ */
171
+ export declare const barChartStackedBar = "chartWizard.chart.barChart.stackedBar";
172
+ /**
173
+ * @hidden
174
+ */
175
+ export declare const barChart100StackedBar = "chartWizard.chart.barChart.100%stackedBar";
176
+ /**
177
+ * @hidden
178
+ */
179
+ export declare const pieChart = "chartWizard.chart.pieChart.expandText";
180
+ /**
181
+ * @hidden
182
+ */
183
+ export declare const pieChartPie = "chartWizard.chart.pieChart.pie";
184
+ /**
185
+ * @hidden
186
+ */
187
+ export declare const columnChart = "chartWizard.chart.columnChart.expandText";
188
+ /**
189
+ * @hidden
190
+ */
191
+ export declare const columnChartColumn = "chartWizard.chart.columnChart.column";
192
+ /**
193
+ * @hidden
194
+ */
195
+ export declare const columnChartStackedColumn = "chartWizard.chart.columnChart.stackedColumn";
196
+ /**
197
+ * @hidden
198
+ */
199
+ export declare const columnChart100StackedColumn = "chartWizard.chart.columnChart.100%stackedColumn";
200
+ /**
201
+ * @hidden
202
+ */
203
+ export declare const lineChart = "chartWizard.chart.lineChart.expandText";
204
+ /**
205
+ * @hidden
206
+ */
207
+ export declare const lineChartLine = "chartWizard.chart.lineChart.line";
208
+ /**
209
+ * @hidden
210
+ */
211
+ export declare const lineChartStackedLine = "chartWizard.chart.lineChart.stackedLine";
212
+ /**
213
+ * @hidden
214
+ */
215
+ export declare const lineChart100StackedLine = "chartWizard.chart.lineChart.100%stackedLine";
216
+ /**
217
+ * @hidden
218
+ */
219
+ export declare const scatterChart = "chartWizard.chart.scatterChart.expandText";
220
+ /**
221
+ * @hidden
222
+ */
223
+ export declare const scatterChartScatter = "chartWizard.chart.scatterChart.scatter";
224
+ /**
225
+ * @hidden
226
+ */
227
+ export declare const configuration = "chartWizard.data.configuration.expandText";
228
+ /**
229
+ * @hidden
230
+ */
231
+ export declare const configurationCategoryAxis = "chartWizard.data.configuration.categoryAxis";
232
+ /**
233
+ * @hidden
234
+ */
235
+ export declare const configurationXAxis = "chartWizard.data.configuration.xAxis";
236
+ /**
237
+ * @hidden
238
+ */
239
+ export declare const configurationValueAxis = "chartWizard.data.configuration.valueAxis";
240
+ /**
241
+ * @hidden
242
+ */
243
+ export declare const configurationSeries = "chartWizard.data.configuration.series.title";
244
+ /**
245
+ * @hidden
246
+ */
247
+ export declare const configurationSeriesAdd = "chartWizard.data.configuration.series.add";
248
+ /**
249
+ * @hidden
250
+ */
251
+ export declare const formatChartArea = "chartWizard.format.chartArea.expandText";
252
+ /**
253
+ * @hidden
254
+ */
255
+ export declare const formatChartAreaMargins = "chartWizard.format.chartArea.margins";
256
+ /**
257
+ * @hidden
258
+ */
259
+ export declare const formatChartAreaMarginsAuto = "chartWizard.format.chartArea.margins.auto";
260
+ /**
261
+ * @hidden
262
+ */
263
+ export declare const formatChartAreaMarginsLeft = "chartWizard.format.chartArea.margins.left";
264
+ /**
265
+ * @hidden
266
+ */
267
+ export declare const formatChartAreaMarginsRight = "chartWizard.format.chartArea.margins.right";
268
+ /**
269
+ * @hidden
270
+ */
271
+ export declare const formatChartAreaMarginsTop = "chartWizard.format.chartArea.margins.top";
272
+ /**
273
+ * @hidden
274
+ */
275
+ export declare const formatChartAreaMarginsBottom = "chartWizard.format.chartArea.margins.bottom";
276
+ /**
277
+ * @hidden
278
+ */
279
+ export declare const formatChartAreaBackground = "chartWizard.format.chartArea.background";
280
+ /**
281
+ * @hidden
282
+ */
283
+ export declare const formatChartAreaBackgroundColor = "chartWizard.format.chartArea.background.color";
284
+ /**
285
+ * @hidden
286
+ */
287
+ export declare const formatTitle = "chartWizard.format.title.expandText";
288
+ /**
289
+ * @hidden
290
+ */
291
+ export declare const formatTitleApplyTo = "chartWizard.format.title.applyTo";
292
+ /**
293
+ * @hidden
294
+ */
295
+ export declare const formatTitleChartTitle = "chartWizard.format.title.chartTitle";
296
+ /**
297
+ * @hidden
298
+ */
299
+ export declare const formatTitleChartSubtitle = "chartWizard.format.title.chartSubtitle";
300
+ /**
301
+ * @hidden
302
+ */
303
+ export declare const formatTitleLabel = "chartWizard.format.title.label";
304
+ /**
305
+ * @hidden
306
+ */
307
+ export declare const formatTitleFont = "chartWizard.format.title.font";
308
+ /**
309
+ * @hidden
310
+ */
311
+ export declare const formatTitleFontPlaceholder = "chartWizard.format.title.fontPlaceholder";
312
+ /**
313
+ * @hidden
314
+ */
315
+ export declare const formatTitleSize = "chartWizard.format.title.size";
316
+ /**
317
+ * @hidden
318
+ */
319
+ export declare const formatTitleSizePlaceholder = "chartWizard.format.title.sizePlaceholder";
320
+ /**
321
+ * @hidden
322
+ */
323
+ export declare const formatTitleColor = "chartWizard.format.title.color";
324
+ /**
325
+ * @hidden
326
+ */
327
+ export declare const formatSeries = "chartWizard.format.series.expandText";
328
+ /**
329
+ * @hidden
330
+ */
331
+ export declare const formatSeriesApplyTo = "chartWizard.format.series.applyTo";
332
+ /**
333
+ * @hidden
334
+ */
335
+ export declare const formatSeriesAllSeries = "chartWizard.format.series.allSeries";
336
+ /**
337
+ * @hidden
338
+ */
339
+ export declare const formatSeriesColor = "chartWizard.format.series.color";
340
+ /**
341
+ * @hidden
342
+ */
343
+ export declare const formatSeriesShowLabels = "chartWizard.format.series.showLabels";
344
+ /**
345
+ * @hidden
346
+ */
347
+ export declare const formatLegend = "chartWizard.format.legend.expandText";
348
+ /**
349
+ * @hidden
350
+ */
351
+ export declare const formatLegendShowLegend = "chartWizard.format.legend.showLegend";
352
+ /**
353
+ * @hidden
354
+ */
355
+ export declare const formatLegendFont = "chartWizard.format.legend.font";
356
+ /**
357
+ * @hidden
358
+ */
359
+ export declare const formatLegendFontPlaceholder = "chartWizard.format.legend.fontPlaceholder";
360
+ /**
361
+ * @hidden
362
+ */
363
+ export declare const formatLegendSize = "chartWizard.format.legend.size";
364
+ /**
365
+ * @hidden
366
+ */
367
+ export declare const formatLegendSizePlaceholder = "chartWizard.format.legend.sizePlaceholder";
368
+ /**
369
+ * @hidden
370
+ */
371
+ export declare const formatLegendColor = "chartWizard.format.legend.color";
372
+ /**
373
+ * @hidden
374
+ */
375
+ export declare const formatLegendPosition = "chartWizard.format.legend.position";
376
+ /**
377
+ * @hidden
378
+ */
379
+ export declare const formatLegendPositionTop = "chartWizard.format.legend.position.top";
380
+ /**
381
+ * @hidden
382
+ */
383
+ export declare const formatLegendPositionBottom = "chartWizard.format.legend.position.bottom";
384
+ /**
385
+ * @hidden
386
+ */
387
+ export declare const formatLegendPositionLeft = "chartWizard.format.legend.position.left";
388
+ /**
389
+ * @hidden
390
+ */
391
+ export declare const formatLegendPositionRight = "chartWizard.format.legend.position.right";
392
+ /**
393
+ * @hidden
394
+ */
395
+ export declare const formatCategoryAxis = "chartWizard.format.categoryAxis.expandText";
396
+ /**
397
+ * @hidden
398
+ */
399
+ export declare const formatXAxis = "chartWizard.format.xAxis.expandText";
400
+ /**
401
+ * @hidden
402
+ */
403
+ export declare const formatCategoryAxisTitle = "chartWizard.format.categoryAxis.title.expandText";
404
+ /**
405
+ * @hidden
406
+ */
407
+ export declare const formatCategoryAxisTitlePlaceholder = "chartWizard.format.categoryAxis.title.placeholder";
408
+ /**
409
+ * @hidden
410
+ */
411
+ export declare const formatCategoryAxisTitleFont = "chartWizard.format.categoryAxis.title.font";
412
+ /**
413
+ * @hidden
414
+ */
415
+ export declare const formatCategoryAxisTitleFontPlaceholder = "chartWizard.format.categoryAxis.title.fontPlaceholder";
416
+ /**
417
+ * @hidden
418
+ */
419
+ export declare const formatCategoryAxisTitleSize = "chartWizard.format.categoryAxis.title.size";
420
+ /**
421
+ * @hidden
422
+ */
423
+ export declare const formatCategoryAxisTitleSizePlaceholder = "chartWizard.format.categoryAxis.title.sizePlaceholder";
424
+ /**
425
+ * @hidden
426
+ */
427
+ export declare const formatCategoryAxisTitleColor = "chartWizard.format.categoryAxis.title.color";
428
+ /**
429
+ * @hidden
430
+ */
431
+ export declare const formatCategoryAxisLabels = "chartWizard.format.categoryAxis.labels.text";
432
+ /**
433
+ * @hidden
434
+ */
435
+ export declare const formatCategoryAxisLabelsFont = "chartWizard.format.categoryAxis.labels.font";
436
+ /**
437
+ * @hidden
438
+ */
439
+ export declare const formatCategoryAxisLabelsFontPlaceholder = "chartWizard.format.categoryAxis.labels.fontPlaceholder";
440
+ /**
441
+ * @hidden
442
+ */
443
+ export declare const formatCategoryAxisLabelsSize = "chartWizard.format.categoryAxis.labels.size";
444
+ /**
445
+ * @hidden
446
+ */
447
+ export declare const formatCategoryAxisLabelsSizePlaceholder = "chartWizard.format.categoryAxis.labels.sizePlaceholder";
448
+ /**
449
+ * @hidden
450
+ */
451
+ export declare const formatCategoryAxisLabelsColor = "chartWizard.format.categoryAxis.labels.color";
452
+ /**
453
+ * @hidden
454
+ */
455
+ export declare const formatCategoryAxisLabelsRotation = "chartWizard.format.categoryAxis.labels.rotation.text";
456
+ /**
457
+ * @hidden
458
+ */
459
+ export declare const formatCategoryAxisLabelsRotationAuto = "chartWizard.format.categoryAxis.labels.rotation.auto";
460
+ /**
461
+ * @hidden
462
+ */
463
+ export declare const formatCategoryAxisLabelsReverseOrder = "chartWizard.format.categoryAxis.labels.reverseOrder";
464
+ /**
465
+ * @hidden
466
+ */
467
+ export declare const formatValueAxis = "chartWizard.format.valueAxis.expandText";
468
+ /**
469
+ * @hidden
470
+ */
471
+ export declare const formatYAxis = "chartWizard.format.yAxis.expandText";
472
+ /**
473
+ * @hidden
474
+ */
475
+ export declare const formatValueAxisTitle = "chartWizard.format.valueAxis.title.text";
476
+ /**
477
+ * @hidden
478
+ */
479
+ export declare const formatValueAxisTitlePlaceholder = "chartWizard.format.valueAxis.title.placeholder";
480
+ /**
481
+ * @hidden
482
+ */
483
+ export declare const formatValueAxisTitleFont = "chartWizard.format.valueAxis.title.font";
484
+ /**
485
+ * @hidden
486
+ */
487
+ export declare const formatValueAxisTitleFontPlaceholder = "chartWizard.format.valueAxis.title.fontPlaceholder";
488
+ /**
489
+ * @hidden
490
+ */
491
+ export declare const formatValueAxisTitleSize = "chartWizard.format.valueAxis.title.size";
492
+ /**
493
+ * @hidden
494
+ */
495
+ export declare const formatValueAxisTitleSizePlaceholder = "chartWizard.format.valueAxis.title.sizePlaceholder";
496
+ /**
497
+ * @hidden
498
+ */
499
+ export declare const formatValueAxisTitleColor = "chartWizard.format.valueAxis.title.color";
500
+ /**
501
+ * @hidden
502
+ */
503
+ export declare const formatValueAxisLabels = "chartWizard.format.valueAxis.labels.text";
504
+ /**
505
+ * @hidden
506
+ */
507
+ export declare const formatValueAxisLabelsFormat = "chartWizard.format.valueAxis.labelFormat";
508
+ /**
509
+ * @hidden
510
+ */
511
+ export declare const formatValueAxisLabelsFormatText = "chartWizard.format.valueAxis.labelFormat.text";
512
+ /**
513
+ * @hidden
514
+ */
515
+ export declare const formatValueAxisLabelsFormatNumber = "chartWizard.format.valueAxis.labelFormat.number";
516
+ /**
517
+ * @hidden
518
+ */
519
+ export declare const formatValueAxisLabelsFormatCurrency = "chartWizard.format.valueAxis.labelFormat.currency";
520
+ /**
521
+ * @hidden
522
+ */
523
+ export declare const formatValueAxisLabelsFormatPercent = "chartWizard.format.valueAxis.labelFormat.percent";
524
+ /**
525
+ * @hidden
526
+ */
527
+ export declare const formatValueAxisLabelsFont = "chartWizard.format.valueAxis.labels.font";
528
+ /**
529
+ * @hidden
530
+ */
531
+ export declare const formatValueAxisLabelsFontPlaceholder = "chartWizard.format.valueAxis.labels.fontPlaceholder";
532
+ /**
533
+ * @hidden
534
+ */
535
+ export declare const formatValueAxisLabelsSize = "chartWizard.format.valueAxis.labels.size";
536
+ /**
537
+ * @hidden
538
+ */
539
+ export declare const formatValueAxisLabelsSizePlaceholder = "chartWizard.format.valueAxis.labels.sizePlaceholder";
540
+ /**
541
+ * @hidden
542
+ */
543
+ export declare const formatValueAxisLabelsColor = "chartWizard.format.valueAxis.labels.color";
544
+ /**
545
+ * @hidden
546
+ */
547
+ export declare const formatValueAxisLabelsRotation = "chartWizard.format.valueAxis.labels.rotation.text";
548
+ /**
549
+ * @hidden
550
+ */
551
+ export declare const formatValueAxisLabelsRotationAuto = "chartWizard.format.valueAxis.labels.rotation.auto";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-chart-wizard",
3
- "version": "13.3.0",
3
+ "version": "13.4.0-develop.1",
4
4
  "description": "React Chart Wizard lets you create a chart using data from a Grid, another data-bound component, or an external source",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -21,19 +21,19 @@
21
21
  "@progress/kendo-drawing": "^1.21.2",
22
22
  "@progress/kendo-file-saver": "^1.0.1",
23
23
  "@progress/kendo-licensing": "^1.7.2",
24
- "@progress/kendo-react-animation": "13.3.0",
25
- "@progress/kendo-react-buttons": "13.3.0",
26
- "@progress/kendo-react-charts": "13.3.0",
27
- "@progress/kendo-react-common": "13.3.0",
28
- "@progress/kendo-react-dialogs": "13.3.0",
29
- "@progress/kendo-react-form": "13.3.0",
30
- "@progress/kendo-react-dropdowns": "13.3.0",
31
- "@progress/kendo-react-grid": "13.3.0",
32
- "@progress/kendo-react-inputs": "13.3.0",
33
- "@progress/kendo-react-intl": "13.3.0",
34
- "@progress/kendo-react-labels": "13.3.0",
35
- "@progress/kendo-react-layout": "13.3.0",
36
- "@progress/kendo-react-popup": "13.3.0",
24
+ "@progress/kendo-react-animation": "13.4.0-develop.1",
25
+ "@progress/kendo-react-buttons": "13.4.0-develop.1",
26
+ "@progress/kendo-react-charts": "13.4.0-develop.1",
27
+ "@progress/kendo-react-common": "13.4.0-develop.1",
28
+ "@progress/kendo-react-dialogs": "13.4.0-develop.1",
29
+ "@progress/kendo-react-form": "13.4.0-develop.1",
30
+ "@progress/kendo-react-dropdowns": "13.4.0-develop.1",
31
+ "@progress/kendo-react-grid": "13.4.0-develop.1",
32
+ "@progress/kendo-react-inputs": "13.4.0-develop.1",
33
+ "@progress/kendo-react-intl": "13.4.0-develop.1",
34
+ "@progress/kendo-react-labels": "13.4.0-develop.1",
35
+ "@progress/kendo-react-layout": "13.4.0-develop.1",
36
+ "@progress/kendo-react-popup": "13.4.0-develop.1",
37
37
  "@progress/kendo-svg-icons": "^4.0.0",
38
38
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
39
39
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Chart } from '@progress/kendo-react-charts';
9
+ import { ChartWizardState } from '@progress/kendo-charts';
10
+ /**
11
+ * Represents the `ref` object of the ChartWizard component.
12
+ **/
13
+ export interface ChartWizardHandle {
14
+ /**
15
+ * Gets the Chart instance.
16
+ */
17
+ chart: Chart | null;
18
+ /**
19
+ * @hidden
20
+ *
21
+ * The current state of the ChartWizard.
22
+ */
23
+ state: ChartWizardState;
24
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ChartWizardState } from '@progress/kendo-charts';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface ChartWizardPanelProps {
13
+ state: ChartWizardState;
14
+ onStateChange: (state: ChartWizardState) => void;
15
+ }
@@ -0,0 +1,47 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { WindowProps } from '@progress/kendo-react-dialogs';
9
+ import { ExportEvent, ExportOptions } from './export.js';
10
+ import { ChartWizardDefaultState, ChartWizardDataRow, ChartWizardState } from '@progress/kendo-charts';
11
+ /**
12
+ * The props of the KendoReact ChartWizard component.
13
+ */
14
+ export interface ChartWizardProps {
15
+ /**
16
+ * Specifies the data you want to display in the ChartWizard component.
17
+ */
18
+ data?: ChartWizardDataRow[];
19
+ /**
20
+ * Fires when you close the ChartWizard component.
21
+ */
22
+ onClose?: () => void;
23
+ /**
24
+ * Fires when the Chart exports. You can prevent this action.
25
+ */
26
+ onExport?: (event: ExportEvent) => void;
27
+ /**
28
+ * Sets the export options for the ChartWizard component.
29
+ */
30
+ exportOptions?: ExportOptions;
31
+ /**
32
+ * Sets the default state of the ChartWizard component.
33
+ */
34
+ defaultState?: ChartWizardDefaultState;
35
+ /**
36
+ * Sets the component that renders the ChartWizard window.
37
+ */
38
+ window?: React.ComponentType<WindowProps>;
39
+ /**
40
+ * Fires when the ChartWizard component state changes.
41
+ */
42
+ onStateChange?: (state: ChartWizardState) => void;
43
+ /**
44
+ * Controls the state of the ChartWizard component.
45
+ */
46
+ state?: ChartWizardState;
47
+ }