@progress/kendo-angular-chart-wizard 17.0.0-develop.20 → 17.0.0-develop.22

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 (39) hide show
  1. package/chart-wizard.component.d.ts +1 -1
  2. package/common/models.d.ts +1 -1
  3. package/{esm2020 → esm2022}/chart-wizard.component.mjs +84 -58
  4. package/{esm2020 → esm2022}/chart-wizard.module.mjs +13 -13
  5. package/{esm2020 → esm2022}/events/export-event.mjs +8 -0
  6. package/{esm2020 → esm2022}/events/preventable-event.mjs +1 -3
  7. package/{esm2020 → esm2022}/grid-integration/grid-chart-wizard.directive.mjs +26 -13
  8. package/{esm2020 → esm2022}/localization/chartwizard-localization.service.mjs +3 -3
  9. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  10. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  11. package/esm2022/localization/messages.mjs +657 -0
  12. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  13. package/{esm2020 → esm2022}/property-pane/chart-tab.component.mjs +19 -16
  14. package/{esm2020 → esm2022}/property-pane/data-tab.component.mjs +18 -12
  15. package/{esm2020 → esm2022}/property-pane/form-field.component.mjs +30 -13
  16. package/{esm2020 → esm2022}/property-pane/format-tab.component.mjs +76 -73
  17. package/{esm2020 → esm2022}/series-type-button.component.mjs +9 -5
  18. package/esm2022/state.service.mjs +36 -0
  19. package/{fesm2020 → fesm2022}/progress-kendo-angular-chart-wizard.mjs +756 -253
  20. package/grid-integration/grid-chart-wizard.directive.d.ts +1 -1
  21. package/localization/messages.d.ts +1 -1
  22. package/package.json +24 -30
  23. package/property-pane/form-field.component.d.ts +1 -1
  24. package/series-type-button.component.d.ts +1 -1
  25. package/esm2020/localization/messages.mjs +0 -233
  26. package/esm2020/state.service.mjs +0 -37
  27. package/fesm2015/progress-kendo-angular-chart-wizard.mjs +0 -3643
  28. /package/{esm2020 → esm2022}/chart-wizard-state.mjs +0 -0
  29. /package/{esm2020 → esm2022}/common/get-wizard-data-from-data-rows.mjs +0 -0
  30. /package/{esm2020 → esm2022}/common/index.mjs +0 -0
  31. /package/{esm2020 → esm2022}/common/models.mjs +0 -0
  32. /package/{esm2020 → esm2022}/common/window-settings.mjs +0 -0
  33. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  34. /package/{esm2020 → esm2022}/events/index.mjs +0 -0
  35. /package/{esm2020 → esm2022}/grid-integration/get-grid-selected-rows.mjs +0 -0
  36. /package/{esm2020 → esm2022}/grid-integration/get-wizard-data-from-grid-selection.mjs +0 -0
  37. /package/{esm2020 → esm2022}/grid-integration/index.mjs +0 -0
  38. /package/{esm2020 → esm2022}/index.mjs +0 -0
  39. /package/{esm2020 → esm2022}/progress-kendo-angular-chart-wizard.mjs +0 -0
@@ -0,0 +1,657 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Directive } from '@angular/core';
6
+ import { Input } from '@angular/core';
7
+ import { ComponentMessages } from '@progress/kendo-angular-l10n';
8
+ import * as i0 from "@angular/core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ export class Messages extends ComponentMessages {
13
+ /**
14
+ * The title of the window.
15
+ */
16
+ windowTitle;
17
+ /**
18
+ * The text of the **Export** DropDownButton.
19
+ */
20
+ exportButton;
21
+ /**
22
+ * The text of the **Export** DropDownButton option that represents PDF.
23
+ */
24
+ exportPDFButton;
25
+ /**
26
+ * The text of the **Export** DropDownButton option that represents SVG.
27
+ */
28
+ exportSVGButton;
29
+ /**
30
+ * The text of the **Export** DropDownButton option that represents PNG.
31
+ */
32
+ exportPNGButton;
33
+ /**
34
+ * The text of the **Chart** tab of the property pane.
35
+ */
36
+ tabChart;
37
+ /**
38
+ * The text of the **Data** tab of the property pane.
39
+ */
40
+ tabData;
41
+ /**
42
+ * The text of the **Format** tab of the property pane.
43
+ */
44
+ tabFormat;
45
+ /**
46
+ * The text of the **Chart** panel that represents Bar Charts.
47
+ */
48
+ barChart;
49
+ /**
50
+ * The text of the Bar Chart type.
51
+ */
52
+ barChartBar;
53
+ /**
54
+ * The text of the Stacked Bar Chart type.
55
+ */
56
+ barChartStackedBar;
57
+ /**
58
+ * The text of the 100% Stacked Bar Chart type.
59
+ */
60
+ barChart100StackedBar;
61
+ /**
62
+ * The text of the **Chart** panel that represents Pie Charts.
63
+ */
64
+ pieChart;
65
+ /**
66
+ * The text of the Pie Chart type.
67
+ */
68
+ pieChartPie;
69
+ /**
70
+ * The text of the **Chart** panel that represents Column Charts.
71
+ */
72
+ columnChart;
73
+ /**
74
+ * The text of the Column Chart type.
75
+ */
76
+ columnChartColumn;
77
+ /**
78
+ * The text of the Stacked Column Chart type.
79
+ */
80
+ columnChartStackedColumn;
81
+ /**
82
+ * The text of the 100% Stacked Column Chart type.
83
+ */
84
+ columnChart100StackedColumn;
85
+ /**
86
+ * The text of the **Chart** panel that represents Line Charts.
87
+ */
88
+ lineChart;
89
+ /**
90
+ * The text of the Line Chart type.
91
+ */
92
+ lineChartLine;
93
+ /**
94
+ * The text of the Stacked Line Chart type.
95
+ */
96
+ lineChartStackedLine;
97
+ /**
98
+ * The text of the 100% Stacked Line Chart type.
99
+ */
100
+ lineChart100StackedLine;
101
+ /**
102
+ * The text of the **Chart** panel that represents Scatter Charts.
103
+ */
104
+ scatterChart;
105
+ /**
106
+ * The text of the Scatter Chart type.
107
+ */
108
+ scatterChartScatter;
109
+ /**
110
+ * The text of the **Configuration** panel of the **Data** tab.
111
+ */
112
+ configuration;
113
+ /**
114
+ * The caption of the **Category Axis** DropDown in the **Configuration** panel.
115
+ */
116
+ configurationCategoryAxis;
117
+ /**
118
+ * The caption of the **X Axis** DropDown in the **Configuration** panel when a Scatter Chart is selected.
119
+ */
120
+ configurationXAxis;
121
+ /**
122
+ * The caption of the **Value Axis** DropDown in the **Configuration** panel when a Pie Chart is selected.
123
+ */
124
+ configurationValueAxis;
125
+ /**
126
+ * The text of the **Series** Grid in the **Configuration** panel when a Categorical Chart is selected.
127
+ */
128
+ configurationSeries;
129
+ /**
130
+ * The text of the **Add Series** button in the Grid of the **Configuration** panel.
131
+ */
132
+ configurationSeriesAdd;
133
+ /**
134
+ * The text of the **Chart Area** panel of the **Format** tab.
135
+ */
136
+ formatChartArea;
137
+ /**
138
+ * The text of the **Margins** settings of the **Chart Area** panel.
139
+ */
140
+ formatChartAreaMargins;
141
+ /**
142
+ * The placeholder of the **Margins** settings of the **Chart Area** panel.
143
+ */
144
+ formatChartAreaMarginsAuto;
145
+ /**
146
+ * The label of the **Left** margin setting of the **Chart Area** panel.
147
+ */
148
+ formatChartAreaMarginsLeft;
149
+ /**
150
+ * The label of the **Right** margin setting of the **Chart Area** panel.
151
+ */
152
+ formatChartAreaMarginsRight;
153
+ /**
154
+ * The label of the **Top** margin setting of the **Chart Area** panel.
155
+ */
156
+ formatChartAreaMarginsTop;
157
+ /**
158
+ * The label of the **Bottom** margin setting of the **Chart Area** panel.
159
+ */
160
+ formatChartAreaMarginsBottom;
161
+ /**
162
+ * The text of the **Background** settings of the **Chart Area** panel.
163
+ */
164
+ formatChartAreaBackground;
165
+ /**
166
+ * The label of the **Color** background setting of the **Chart Area** panel.
167
+ */
168
+ formatChartAreaBackgroundColor;
169
+ /**
170
+ * The text of the **Title** panel of the **Format** tab.
171
+ */
172
+ formatTitle;
173
+ /**
174
+ * The label of the **Apply to** DropDown of the **Title** panel.
175
+ */
176
+ formatTitleApplyTo;
177
+ /**
178
+ * The text of the **Chart Title** option of the **Apply to** DropDown in the **Title** panel.
179
+ */
180
+ formatTitleChartTitle;
181
+ /**
182
+ * The text of the **Chart Subtitle** option of the **Apply to** DropDown in the **Title** panel.
183
+ */
184
+ formatTitleChartSubtitle;
185
+ /**
186
+ * The label of the **Title** input of the **Title** panel.
187
+ */
188
+ formatTitleLabel;
189
+ /**
190
+ * The label of the **Font** setting of the **Title** panel.
191
+ */
192
+ formatTitleFont;
193
+ /**
194
+ * The placeholder of the **Font** setting of the **Title** panel.
195
+ */
196
+ formatTitleFontPlaceholder;
197
+ /**
198
+ * The label of the **Size** setting of the **Title** panel.
199
+ */
200
+ formatTitleSize;
201
+ /**
202
+ * The placeholder of the **Size** setting of the **Title** panel.
203
+ */
204
+ formatTitleSizePlaceholder;
205
+ /**
206
+ * The label of the **Color** setting of the **Title** panel.
207
+ */
208
+ formatTitleColor;
209
+ /**
210
+ * The text of the **Series** panel of the **Format** tab.
211
+ */
212
+ formatSeries;
213
+ /**
214
+ * The label of the **Apply to** DropDown of the **Series** panel.
215
+ */
216
+ formatSeriesApplyTo;
217
+ /**
218
+ * The text of the **All Series** option of the **Apply to** DropDown in the **Series** panel.
219
+ */
220
+ formatSeriesAllSeries;
221
+ /**
222
+ * The label of the **Color** setting of the **Series** panel.
223
+ */
224
+ formatSeriesColor;
225
+ /**
226
+ * The label of the **Show Labels** checkbox of the **Series** panel.
227
+ */
228
+ formatSeriesShowLabels;
229
+ /**
230
+ * The text of the **Legend** panel of the **Format** tab.
231
+ */
232
+ formatLegend;
233
+ /**
234
+ * The label of the **Show Legend** switch of the **Legend** panel.
235
+ */
236
+ formatLegendShowLegend;
237
+ /**
238
+ * The label of the **Font** setting of the **Legend** panel.
239
+ */
240
+ formatLegendFont;
241
+ /**
242
+ * The placeholder of the **Font** setting of the **Legend** panel.
243
+ */
244
+ formatLegendFontPlaceholder;
245
+ /**
246
+ * The label of the **Size** setting of the **Legend** panel.
247
+ */
248
+ formatLegendSize;
249
+ /**
250
+ * The placeholder of the **Size** setting of the **Legend** panel.
251
+ */
252
+ formatLegendSizePlaceholder;
253
+ /**
254
+ * The label of the **Color** setting of the **Legend** panel.
255
+ */
256
+ formatLegendColor;
257
+ /**
258
+ * The label of the **Posititon** DropDown of the **Legend** panel.
259
+ */
260
+ formatLegendPosition;
261
+ /**
262
+ * The text of the **Top** option of the **Position** DropDown of the **Legend** panel.
263
+ */
264
+ formatLegendPositionTop;
265
+ /**
266
+ * The text of the **Bottom** option of the **Position** DropDown of the **Legend** panel.
267
+ */
268
+ formatLegendPositionBottom;
269
+ /**
270
+ * The text of the **Left** option of the **Position** DropDown of the **Legend** panel.
271
+ */
272
+ formatLegendPositionLeft;
273
+ /**
274
+ * The text of the **Right** option of the **Position** DropDown of the **Legend** panel.
275
+ */
276
+ formatLegendPositionRight;
277
+ /**
278
+ * The text of the **Category Axis** panel of the **Format** tab.
279
+ */
280
+ formatCategoryAxis;
281
+ /**
282
+ * The text of the **X Axis** panel of the **Format** tab when a Scatter Chart is selected.
283
+ */
284
+ formatXAxis;
285
+ /**
286
+ * The label of the **Title** settings of the **Category Axis** panel.
287
+ */
288
+ formatCategoryAxisTitle;
289
+ /**
290
+ * The placeholder of the **Title** input of the **Category Axis** panel.
291
+ */
292
+ formatCategoryAxisTitlePlaceholder;
293
+ /**
294
+ * The label of the **Font** settings of the **Title** in the **Category Axis** panel.
295
+ */
296
+ formatCategoryAxisTitleFont;
297
+ /**
298
+ * The placeholder of the **Font** settings of the **Title** in the **Category Axis** panel.
299
+ */
300
+ formatCategoryAxisTitleFontPlaceholder;
301
+ /**
302
+ * The label of the **Size** settings of the **Title** in the **Category Axis** panel.
303
+ */
304
+ formatCategoryAxisTitleSize;
305
+ /**
306
+ * The placeholder of the **Size** settings of the **Title** in the **Category Axis** panel.
307
+ */
308
+ formatCategoryAxisTitleSizePlaceholder;
309
+ /**
310
+ * The label of the **Color** settings of the **Title** in the **Category Axis** panel.
311
+ */
312
+ formatCategoryAxisTitleColor;
313
+ /**
314
+ * The label of the **Labels** settings of the **Category Axis** panel.
315
+ */
316
+ formatCategoryAxisLabels;
317
+ /**
318
+ * The label of the **Font** settings of the **Labels** in the **Category Axis** panel.
319
+ */
320
+ formatCategoryAxisLabelsFont;
321
+ /**
322
+ * The placeholder of the **Font** settings of the **Labels** in the **Category Axis** panel.
323
+ */
324
+ formatCategoryAxisLabelsFontPlaceholder;
325
+ /**
326
+ * The label of the **Size** settings of the **Labels** in the **Category Axis** panel.
327
+ */
328
+ formatCategoryAxisLabelsSize;
329
+ /**
330
+ * The placeholder of the **Size** settings of the **Labels** in the **Category Axis** panel.
331
+ */
332
+ formatCategoryAxisLabelsSizePlaceholder;
333
+ /**
334
+ * The label of the **Color** settings of the **Labels** in the **Category Axis** panel.
335
+ */
336
+ formatCategoryAxisLabelsColor;
337
+ /**
338
+ * The label of the **Rotation** settings of the **Labels** in the **Category Axis** panel.
339
+ */
340
+ formatCategoryAxisLabelsRotation;
341
+ /**
342
+ * The **Auto** option of the **Rotation** settings of the **Labels** in the **Category Axis** panel.
343
+ */
344
+ formatCategoryAxisLabelsRotationAuto;
345
+ /**
346
+ * The label of the **Reverse Order** checkbox of the **Labels** in the **Category Axis** panel.
347
+ */
348
+ formatCategoryAxisLabelsReverseOrder;
349
+ /**
350
+ * The text of the **Value Axis** panel of the **Format** tab.
351
+ */
352
+ formatValueAxis;
353
+ /**
354
+ * The text of the **Y Axis** panel of the **Format** tab.
355
+ */
356
+ formatYAxis;
357
+ /**
358
+ * The label of the **Title** settings of the **Value Axis** panel.
359
+ */
360
+ formatValueAxisTitle;
361
+ /**
362
+ * The placeholder of the **Title** settings of the **Value Axis** panel.
363
+ */
364
+ formatValueAxisTitlePlaceholder;
365
+ /**
366
+ * The label of the **Font** settings of the **Value Axis** panel.
367
+ */
368
+ formatValueAxisTitleFont;
369
+ /**
370
+ * The placeholder of the **Font** settings of the **Value Axis** panel.
371
+ */
372
+ formatValueAxisTitleFontPlaceholder;
373
+ /**
374
+ * The label of the **Size** settings of the **Value Axis** panel.
375
+ */
376
+ formatValueAxisTitleSize;
377
+ /**
378
+ * The placeholder of the **Size** settings of the **Value Axis** panel.
379
+ */
380
+ formatValueAxisTitleSizePlaceholder;
381
+ /**
382
+ * The label of the **Color** settings of the **Value Axis** panel.
383
+ */
384
+ formatValueAxisTitleColor;
385
+ /**
386
+ * The label of the **Labels** settings of the **Value Axis** panel.
387
+ */
388
+ formatValueAxisLabels;
389
+ /**
390
+ * The label of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
391
+ */
392
+ formatValueAxisLabelsFormat;
393
+ /**
394
+ * The **Text** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
395
+ */
396
+ formatValueAxisLabelsFormatText;
397
+ /**
398
+ * The **Number** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
399
+ */
400
+ formatValueAxisLabelsFormatNumber;
401
+ /**
402
+ * The **Currency** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
403
+ */
404
+ formatValueAxisLabelsFormatCurrency;
405
+ /**
406
+ * The **Percent** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
407
+ */
408
+ formatValueAxisLabelsFormatPercent;
409
+ /**
410
+ * The label of the **Font** settings of the **Labels** in the **Value Axis** panel.
411
+ */
412
+ formatValueAxisLabelsFont;
413
+ /**
414
+ * The placeholder of the **Font** settings of the **Labels** in the **Value Axis** panel.
415
+ */
416
+ formatValueAxisLabelsFontPlaceholder;
417
+ /**
418
+ * The label of the **Size** settings of the **Labels** in the **Value Axis** panel.
419
+ */
420
+ formatValueAxisLabelsSize;
421
+ /**
422
+ * The placeholder of the **Size** settings of the **Labels** in the **Value Axis** panel.
423
+ */
424
+ formatValueAxisLabelsSizePlaceholder;
425
+ /**
426
+ * The label of the **Color** settings of the **Labels** in the **Value Axis** panel.
427
+ */
428
+ formatValueAxisLabelsColor;
429
+ /**
430
+ * The label of the **Rotation** settings of the **Labels** in the **Value Axis** panel.
431
+ */
432
+ formatValueAxisLabelsRotation;
433
+ /**
434
+ * The **Auto** option of the **Rotation** settings of the **Labels** in the **Value Axis** panel.
435
+ */
436
+ formatValueAxisLabelsRotationAuto;
437
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
438
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: Messages, selector: "[kendoChartWizardMessages]", inputs: { windowTitle: "windowTitle", exportButton: "exportButton", exportPDFButton: "exportPDFButton", exportSVGButton: "exportSVGButton", exportPNGButton: "exportPNGButton", tabChart: "tabChart", tabData: "tabData", tabFormat: "tabFormat", barChart: "barChart", barChartBar: "barChartBar", barChartStackedBar: "barChartStackedBar", barChart100StackedBar: "barChart100StackedBar", pieChart: "pieChart", pieChartPie: "pieChartPie", columnChart: "columnChart", columnChartColumn: "columnChartColumn", columnChartStackedColumn: "columnChartStackedColumn", columnChart100StackedColumn: "columnChart100StackedColumn", lineChart: "lineChart", lineChartLine: "lineChartLine", lineChartStackedLine: "lineChartStackedLine", lineChart100StackedLine: "lineChart100StackedLine", scatterChart: "scatterChart", scatterChartScatter: "scatterChartScatter", configuration: "configuration", configurationCategoryAxis: "configurationCategoryAxis", configurationXAxis: "configurationXAxis", configurationValueAxis: "configurationValueAxis", configurationSeries: "configurationSeries", configurationSeriesAdd: "configurationSeriesAdd", formatChartArea: "formatChartArea", formatChartAreaMargins: "formatChartAreaMargins", formatChartAreaMarginsAuto: "formatChartAreaMarginsAuto", formatChartAreaMarginsLeft: "formatChartAreaMarginsLeft", formatChartAreaMarginsRight: "formatChartAreaMarginsRight", formatChartAreaMarginsTop: "formatChartAreaMarginsTop", formatChartAreaMarginsBottom: "formatChartAreaMarginsBottom", formatChartAreaBackground: "formatChartAreaBackground", formatChartAreaBackgroundColor: "formatChartAreaBackgroundColor", formatTitle: "formatTitle", formatTitleApplyTo: "formatTitleApplyTo", formatTitleChartTitle: "formatTitleChartTitle", formatTitleChartSubtitle: "formatTitleChartSubtitle", formatTitleLabel: "formatTitleLabel", formatTitleFont: "formatTitleFont", formatTitleFontPlaceholder: "formatTitleFontPlaceholder", formatTitleSize: "formatTitleSize", formatTitleSizePlaceholder: "formatTitleSizePlaceholder", formatTitleColor: "formatTitleColor", formatSeries: "formatSeries", formatSeriesApplyTo: "formatSeriesApplyTo", formatSeriesAllSeries: "formatSeriesAllSeries", formatSeriesColor: "formatSeriesColor", formatSeriesShowLabels: "formatSeriesShowLabels", formatLegend: "formatLegend", formatLegendShowLegend: "formatLegendShowLegend", formatLegendFont: "formatLegendFont", formatLegendFontPlaceholder: "formatLegendFontPlaceholder", formatLegendSize: "formatLegendSize", formatLegendSizePlaceholder: "formatLegendSizePlaceholder", formatLegendColor: "formatLegendColor", formatLegendPosition: "formatLegendPosition", formatLegendPositionTop: "formatLegendPositionTop", formatLegendPositionBottom: "formatLegendPositionBottom", formatLegendPositionLeft: "formatLegendPositionLeft", formatLegendPositionRight: "formatLegendPositionRight", formatCategoryAxis: "formatCategoryAxis", formatXAxis: "formatXAxis", formatCategoryAxisTitle: "formatCategoryAxisTitle", formatCategoryAxisTitlePlaceholder: "formatCategoryAxisTitlePlaceholder", formatCategoryAxisTitleFont: "formatCategoryAxisTitleFont", formatCategoryAxisTitleFontPlaceholder: "formatCategoryAxisTitleFontPlaceholder", formatCategoryAxisTitleSize: "formatCategoryAxisTitleSize", formatCategoryAxisTitleSizePlaceholder: "formatCategoryAxisTitleSizePlaceholder", formatCategoryAxisTitleColor: "formatCategoryAxisTitleColor", formatCategoryAxisLabels: "formatCategoryAxisLabels", formatCategoryAxisLabelsFont: "formatCategoryAxisLabelsFont", formatCategoryAxisLabelsFontPlaceholder: "formatCategoryAxisLabelsFontPlaceholder", formatCategoryAxisLabelsSize: "formatCategoryAxisLabelsSize", formatCategoryAxisLabelsSizePlaceholder: "formatCategoryAxisLabelsSizePlaceholder", formatCategoryAxisLabelsColor: "formatCategoryAxisLabelsColor", formatCategoryAxisLabelsRotation: "formatCategoryAxisLabelsRotation", formatCategoryAxisLabelsRotationAuto: "formatCategoryAxisLabelsRotationAuto", formatCategoryAxisLabelsReverseOrder: "formatCategoryAxisLabelsReverseOrder", formatValueAxis: "formatValueAxis", formatYAxis: "formatYAxis", formatValueAxisTitle: "formatValueAxisTitle", formatValueAxisTitlePlaceholder: "formatValueAxisTitlePlaceholder", formatValueAxisTitleFont: "formatValueAxisTitleFont", formatValueAxisTitleFontPlaceholder: "formatValueAxisTitleFontPlaceholder", formatValueAxisTitleSize: "formatValueAxisTitleSize", formatValueAxisTitleSizePlaceholder: "formatValueAxisTitleSizePlaceholder", formatValueAxisTitleColor: "formatValueAxisTitleColor", formatValueAxisLabels: "formatValueAxisLabels", formatValueAxisLabelsFormat: "formatValueAxisLabelsFormat", formatValueAxisLabelsFormatText: "formatValueAxisLabelsFormatText", formatValueAxisLabelsFormatNumber: "formatValueAxisLabelsFormatNumber", formatValueAxisLabelsFormatCurrency: "formatValueAxisLabelsFormatCurrency", formatValueAxisLabelsFormatPercent: "formatValueAxisLabelsFormatPercent", formatValueAxisLabelsFont: "formatValueAxisLabelsFont", formatValueAxisLabelsFontPlaceholder: "formatValueAxisLabelsFontPlaceholder", formatValueAxisLabelsSize: "formatValueAxisLabelsSize", formatValueAxisLabelsSizePlaceholder: "formatValueAxisLabelsSizePlaceholder", formatValueAxisLabelsColor: "formatValueAxisLabelsColor", formatValueAxisLabelsRotation: "formatValueAxisLabelsRotation", formatValueAxisLabelsRotationAuto: "formatValueAxisLabelsRotationAuto" }, usesInheritance: true, ngImport: i0 });
439
+ }
440
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Messages, decorators: [{
441
+ type: Directive,
442
+ args: [{
443
+ selector: '[kendoChartWizardMessages]'
444
+ }]
445
+ }], propDecorators: { windowTitle: [{
446
+ type: Input
447
+ }], exportButton: [{
448
+ type: Input
449
+ }], exportPDFButton: [{
450
+ type: Input
451
+ }], exportSVGButton: [{
452
+ type: Input
453
+ }], exportPNGButton: [{
454
+ type: Input
455
+ }], tabChart: [{
456
+ type: Input
457
+ }], tabData: [{
458
+ type: Input
459
+ }], tabFormat: [{
460
+ type: Input
461
+ }], barChart: [{
462
+ type: Input
463
+ }], barChartBar: [{
464
+ type: Input
465
+ }], barChartStackedBar: [{
466
+ type: Input
467
+ }], barChart100StackedBar: [{
468
+ type: Input
469
+ }], pieChart: [{
470
+ type: Input
471
+ }], pieChartPie: [{
472
+ type: Input
473
+ }], columnChart: [{
474
+ type: Input
475
+ }], columnChartColumn: [{
476
+ type: Input
477
+ }], columnChartStackedColumn: [{
478
+ type: Input
479
+ }], columnChart100StackedColumn: [{
480
+ type: Input
481
+ }], lineChart: [{
482
+ type: Input
483
+ }], lineChartLine: [{
484
+ type: Input
485
+ }], lineChartStackedLine: [{
486
+ type: Input
487
+ }], lineChart100StackedLine: [{
488
+ type: Input
489
+ }], scatterChart: [{
490
+ type: Input
491
+ }], scatterChartScatter: [{
492
+ type: Input
493
+ }], configuration: [{
494
+ type: Input
495
+ }], configurationCategoryAxis: [{
496
+ type: Input
497
+ }], configurationXAxis: [{
498
+ type: Input
499
+ }], configurationValueAxis: [{
500
+ type: Input
501
+ }], configurationSeries: [{
502
+ type: Input
503
+ }], configurationSeriesAdd: [{
504
+ type: Input
505
+ }], formatChartArea: [{
506
+ type: Input
507
+ }], formatChartAreaMargins: [{
508
+ type: Input
509
+ }], formatChartAreaMarginsAuto: [{
510
+ type: Input
511
+ }], formatChartAreaMarginsLeft: [{
512
+ type: Input
513
+ }], formatChartAreaMarginsRight: [{
514
+ type: Input
515
+ }], formatChartAreaMarginsTop: [{
516
+ type: Input
517
+ }], formatChartAreaMarginsBottom: [{
518
+ type: Input
519
+ }], formatChartAreaBackground: [{
520
+ type: Input
521
+ }], formatChartAreaBackgroundColor: [{
522
+ type: Input
523
+ }], formatTitle: [{
524
+ type: Input
525
+ }], formatTitleApplyTo: [{
526
+ type: Input
527
+ }], formatTitleChartTitle: [{
528
+ type: Input
529
+ }], formatTitleChartSubtitle: [{
530
+ type: Input
531
+ }], formatTitleLabel: [{
532
+ type: Input
533
+ }], formatTitleFont: [{
534
+ type: Input
535
+ }], formatTitleFontPlaceholder: [{
536
+ type: Input
537
+ }], formatTitleSize: [{
538
+ type: Input
539
+ }], formatTitleSizePlaceholder: [{
540
+ type: Input
541
+ }], formatTitleColor: [{
542
+ type: Input
543
+ }], formatSeries: [{
544
+ type: Input
545
+ }], formatSeriesApplyTo: [{
546
+ type: Input
547
+ }], formatSeriesAllSeries: [{
548
+ type: Input
549
+ }], formatSeriesColor: [{
550
+ type: Input
551
+ }], formatSeriesShowLabels: [{
552
+ type: Input
553
+ }], formatLegend: [{
554
+ type: Input
555
+ }], formatLegendShowLegend: [{
556
+ type: Input
557
+ }], formatLegendFont: [{
558
+ type: Input
559
+ }], formatLegendFontPlaceholder: [{
560
+ type: Input
561
+ }], formatLegendSize: [{
562
+ type: Input
563
+ }], formatLegendSizePlaceholder: [{
564
+ type: Input
565
+ }], formatLegendColor: [{
566
+ type: Input
567
+ }], formatLegendPosition: [{
568
+ type: Input
569
+ }], formatLegendPositionTop: [{
570
+ type: Input
571
+ }], formatLegendPositionBottom: [{
572
+ type: Input
573
+ }], formatLegendPositionLeft: [{
574
+ type: Input
575
+ }], formatLegendPositionRight: [{
576
+ type: Input
577
+ }], formatCategoryAxis: [{
578
+ type: Input
579
+ }], formatXAxis: [{
580
+ type: Input
581
+ }], formatCategoryAxisTitle: [{
582
+ type: Input
583
+ }], formatCategoryAxisTitlePlaceholder: [{
584
+ type: Input
585
+ }], formatCategoryAxisTitleFont: [{
586
+ type: Input
587
+ }], formatCategoryAxisTitleFontPlaceholder: [{
588
+ type: Input
589
+ }], formatCategoryAxisTitleSize: [{
590
+ type: Input
591
+ }], formatCategoryAxisTitleSizePlaceholder: [{
592
+ type: Input
593
+ }], formatCategoryAxisTitleColor: [{
594
+ type: Input
595
+ }], formatCategoryAxisLabels: [{
596
+ type: Input
597
+ }], formatCategoryAxisLabelsFont: [{
598
+ type: Input
599
+ }], formatCategoryAxisLabelsFontPlaceholder: [{
600
+ type: Input
601
+ }], formatCategoryAxisLabelsSize: [{
602
+ type: Input
603
+ }], formatCategoryAxisLabelsSizePlaceholder: [{
604
+ type: Input
605
+ }], formatCategoryAxisLabelsColor: [{
606
+ type: Input
607
+ }], formatCategoryAxisLabelsRotation: [{
608
+ type: Input
609
+ }], formatCategoryAxisLabelsRotationAuto: [{
610
+ type: Input
611
+ }], formatCategoryAxisLabelsReverseOrder: [{
612
+ type: Input
613
+ }], formatValueAxis: [{
614
+ type: Input
615
+ }], formatYAxis: [{
616
+ type: Input
617
+ }], formatValueAxisTitle: [{
618
+ type: Input
619
+ }], formatValueAxisTitlePlaceholder: [{
620
+ type: Input
621
+ }], formatValueAxisTitleFont: [{
622
+ type: Input
623
+ }], formatValueAxisTitleFontPlaceholder: [{
624
+ type: Input
625
+ }], formatValueAxisTitleSize: [{
626
+ type: Input
627
+ }], formatValueAxisTitleSizePlaceholder: [{
628
+ type: Input
629
+ }], formatValueAxisTitleColor: [{
630
+ type: Input
631
+ }], formatValueAxisLabels: [{
632
+ type: Input
633
+ }], formatValueAxisLabelsFormat: [{
634
+ type: Input
635
+ }], formatValueAxisLabelsFormatText: [{
636
+ type: Input
637
+ }], formatValueAxisLabelsFormatNumber: [{
638
+ type: Input
639
+ }], formatValueAxisLabelsFormatCurrency: [{
640
+ type: Input
641
+ }], formatValueAxisLabelsFormatPercent: [{
642
+ type: Input
643
+ }], formatValueAxisLabelsFont: [{
644
+ type: Input
645
+ }], formatValueAxisLabelsFontPlaceholder: [{
646
+ type: Input
647
+ }], formatValueAxisLabelsSize: [{
648
+ type: Input
649
+ }], formatValueAxisLabelsSizePlaceholder: [{
650
+ type: Input
651
+ }], formatValueAxisLabelsColor: [{
652
+ type: Input
653
+ }], formatValueAxisLabelsRotation: [{
654
+ type: Input
655
+ }], formatValueAxisLabelsRotationAuto: [{
656
+ type: Input
657
+ }] } });
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-chart-wizard',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1729855392,
13
- version: '17.0.0-develop.20',
12
+ publishDate: 1730103816,
13
+ version: '17.0.0-develop.22',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
15
15
  };