@progress/kendo-angular-chart-wizard 16.11.0-develop.9 → 16.12.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 (29) hide show
  1. package/chart-wizard.component.d.ts +131 -5
  2. package/chart-wizard.module.d.ts +2 -1
  3. package/common/window-settings.d.ts +34 -0
  4. package/directives.d.ts +2 -1
  5. package/esm2020/chart-wizard.component.mjs +736 -38
  6. package/esm2020/chart-wizard.module.mjs +3 -2
  7. package/esm2020/common/window-settings.mjs +5 -0
  8. package/esm2020/directives.mjs +3 -1
  9. package/esm2020/index.mjs +1 -0
  10. package/esm2020/localization/chartwizard-localization.service.mjs +31 -0
  11. package/esm2020/localization/custom-messages.component.mjs +50 -0
  12. package/esm2020/localization/localized-messages.directive.mjs +38 -0
  13. package/esm2020/localization/messages.mjs +233 -0
  14. package/esm2020/package-metadata.mjs +2 -2
  15. package/esm2020/property-pane/chart-tab.component.mjs +39 -36
  16. package/esm2020/property-pane/data-tab.component.mjs +19 -13
  17. package/esm2020/property-pane/form-field.component.mjs +2 -2
  18. package/esm2020/property-pane/format-tab.component.mjs +176 -137
  19. package/fesm2015/progress-kendo-angular-chart-wizard.mjs +1305 -237
  20. package/fesm2020/progress-kendo-angular-chart-wizard.mjs +1301 -237
  21. package/index.d.ts +3 -0
  22. package/localization/chartwizard-localization.service.d.ts +14 -0
  23. package/localization/custom-messages.component.d.ts +25 -0
  24. package/localization/localized-messages.directive.d.ts +16 -0
  25. package/localization/messages.d.ts +437 -0
  26. package/package.json +17 -17
  27. package/property-pane/chart-tab.component.d.ts +3 -2
  28. package/property-pane/data-tab.component.d.ts +4 -1
  29. package/property-pane/format-tab.component.d.ts +15 -7
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ChangeDetectionStrategy, Component, EventEmitter, HostBinding, Input, Output, ViewChild, } from '@angular/core';
6
- import { WatermarkOverlayComponent, shouldShowValidationUI } from '@progress/kendo-angular-common';
6
+ import { WatermarkOverlayComponent, isPresent, shouldShowValidationUI } from '@progress/kendo-angular-common';
7
7
  import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { validatePackage } from '@progress/kendo-licensing';
9
9
  import { Subscription } from 'rxjs';
@@ -37,6 +37,10 @@ import { DropDownButtonComponent } from '@progress/kendo-angular-buttons';
37
37
  import { ExportEvent } from './events';
38
38
  import { defaultAllSeriesItem } from './common/models';
39
39
  import { ChartWizardPropertyPaneFormatTabComponent } from './property-pane/format-tab.component';
40
+ import { ChartWizardCommon } from '@progress/kendo-charts';
41
+ import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
42
+ import { ChartWizardLocalizationService } from './localization/chartwizard-localization.service';
43
+ import { trigger, state, style, transition, animate } from '@angular/animations';
40
44
  import * as i0 from "@angular/core";
41
45
  import * as i1 from "@progress/kendo-angular-l10n";
42
46
  import * as i2 from "./state.service";
@@ -52,6 +56,15 @@ export class ChartWizardComponent {
52
56
  constructor(localization, stateService) {
53
57
  this.localization = localization;
54
58
  this.stateService = stateService;
59
+ /**
60
+ * Specifies if the configuration pane is initially collapsed.
61
+ * @default false
62
+ */
63
+ this.collapsedConfigurationPane = false;
64
+ /**
65
+ * The settings of the window.
66
+ */
67
+ this.windowSettings = {};
55
68
  /**
56
69
  * @hidden
57
70
  */
@@ -63,20 +76,7 @@ export class ChartWizardComponent {
63
76
  /**
64
77
  * @hidden
65
78
  */
66
- this.exportDropdownItems = [
67
- {
68
- text: 'PDF File',
69
- svgIcon: filePdfIcon,
70
- },
71
- {
72
- text: 'SVG File',
73
- svgIcon: fileIcon,
74
- },
75
- {
76
- text: 'PNG File',
77
- svgIcon: fileImageIcon,
78
- },
79
- ];
79
+ this.exportDropdownItems = [];
80
80
  /**
81
81
  * Fires when the Chart Wizard Window is to be close.
82
82
  */
@@ -85,6 +85,10 @@ export class ChartWizardComponent {
85
85
  * Fires when the Chart is about to be exported. The event is preventable.
86
86
  */
87
87
  this.export = new EventEmitter();
88
+ /**
89
+ * @hidden
90
+ */
91
+ this.messages = ChartWizardCommon.messages;
88
92
  this.subscription = new Subscription();
89
93
  const isValid = validatePackage(packageMetadata);
90
94
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
@@ -96,6 +100,20 @@ export class ChartWizardComponent {
96
100
  ngAfterViewInit() {
97
101
  this.subscription.add(this.localization.changes.subscribe(({ rtl }) => {
98
102
  this.stateService.direction = rtl ? 'rtl' : 'ltr';
103
+ this.exportDropdownItems = [
104
+ {
105
+ text: this.messageFor('exportPDFButton'),
106
+ svgIcon: filePdfIcon,
107
+ },
108
+ {
109
+ text: this.messageFor('exportSVGButton'),
110
+ svgIcon: fileIcon,
111
+ },
112
+ {
113
+ text: this.messageFor('exportPNGButton'),
114
+ svgIcon: fileImageIcon,
115
+ },
116
+ ];
99
117
  }));
100
118
  this.stateService.dataTab = this.dataTab;
101
119
  }
@@ -157,26 +175,364 @@ export class ChartWizardComponent {
157
175
  break;
158
176
  }
159
177
  }
178
+ /**
179
+ * @hidden
180
+ */
181
+ get windowWidth() {
182
+ return isPresent(this.windowSettings?.width) ? this.windowSettings.width : this.stateService.windowSize.width;
183
+ }
184
+ /**
185
+ * @hidden
186
+ */
187
+ get windowHeight() {
188
+ return isPresent(this.windowSettings?.height) ? this.windowSettings.height : this.stateService.windowSize.height;
189
+ }
160
190
  }
161
191
  ChartWizardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardComponent, deps: [{ token: i1.LocalizationService }, { token: i2.StateService }], target: i0.ɵɵFactoryTarget.Component });
162
- ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardComponent, isStandalone: true, selector: "kendo-chartwizard", inputs: { data: "data", defaultState: "defaultState", exportOptions: "exportOptions" }, outputs: { close: "close", export: "export" }, host: { properties: { "attr.dir": "this.dir" } }, providers: [
192
+ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardComponent, isStandalone: true, selector: "kendo-chartwizard", inputs: { data: "data", defaultState: "defaultState", exportOptions: "exportOptions", collapsedConfigurationPane: "collapsedConfigurationPane", windowSettings: "windowSettings" }, outputs: { close: "close", export: "export" }, host: { properties: { "attr.dir": "this.dir" } }, providers: [
163
193
  LocalizationService,
164
194
  {
165
195
  provide: L10N_PREFIX,
166
196
  useValue: 'kendo.chartwizard',
167
197
  },
198
+ ChartWizardLocalizationService,
199
+ {
200
+ provide: LocalizationService,
201
+ useExisting: ChartWizardLocalizationService
202
+ },
168
203
  StateService
169
204
  ], viewQueries: [{ propertyName: "chart", first: true, predicate: ChartComponent, descendants: true }, { propertyName: "propertyPane", first: true, predicate: ChartWizardPropertyPaneChartTabComponent, descendants: true }, { propertyName: "dataTab", first: true, predicate: ChartWizardPropertyPaneDataTabComponent, descendants: true }], exportAs: ["kendoChartWizard"], usesOnChanges: true, ngImport: i0, template: `
170
205
  <ng-container
171
206
  kendoChartWizardLocalizedMessages
172
- i18n-sampleMessage="kendo.chartwizard.sampleMessage|Sample description"
173
- sampleMessage="foo"
207
+
208
+ i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
209
+ [windowTitle]="messages.windowTitle"
210
+
211
+ i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
212
+ [exportButton]="messages.exportButton"
213
+
214
+ i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
215
+ [exportPDFButton]="messages.exportPDFButton"
216
+
217
+ i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
218
+ [exportSVGButton]="messages.exportSVGButton"
219
+
220
+ i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
221
+ [exportPNGButton]="messages.exportPNGButton"
222
+
223
+ i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
224
+ [tabChart]="messages.tabChart"
225
+
226
+ i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
227
+ [tabData]="messages.tabData"
228
+
229
+ i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
230
+ [tabFormat]="messages.tabFormat"
231
+
232
+ i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
233
+ [barChart]="messages.barChart"
234
+
235
+ i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
236
+ [barChartBar]="messages.barChartBar"
237
+
238
+ i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
239
+ [barChartStackedBar]="messages.barChartStackedBar"
240
+
241
+ i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
242
+ [barChart100StackedBar]="messages.barChart100StackedBar"
243
+
244
+ i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
245
+ [pieChart]="messages.pieChart"
246
+
247
+ i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
248
+ [pieChartPie]="messages.pieChartPie"
249
+
250
+ i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
251
+ [columnChart]="messages.columnChart"
252
+
253
+ i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
254
+ [columnChartColumn]="messages.columnChartColumn"
255
+
256
+ i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
257
+ [columnChartStackedColumn]="messages.columnChartStackedColumn"
258
+
259
+ i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
260
+ [columnChart100StackedColumn]="messages.columnChart100StackedColumn"
261
+
262
+ i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
263
+ [lineChart]="messages.lineChart"
264
+
265
+ i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
266
+ [lineChartLine]="messages.lineChartLine"
267
+
268
+ i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
269
+ [lineChartStackedLine]="messages.lineChartStackedLine"
270
+
271
+ i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
272
+ [lineChart100StackedLine]="messages.lineChart100StackedLine"
273
+
274
+ i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
275
+ [scatterChart]="messages.scatterChart"
276
+
277
+ i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
278
+ [scatterChartScatter]="messages.scatterChartScatter"
279
+
280
+ i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
281
+ [configuration]="messages.configuration"
282
+
283
+ i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
284
+ [configurationCategoryAxis]="messages.configurationCategoryAxis"
285
+
286
+ i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
287
+ [configurationXAxis]="messages.configurationXAxis"
288
+
289
+ i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
290
+ [configurationValueAxis]="messages.configurationValueAxis"
291
+
292
+ i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
293
+ [configurationSeries]="messages.configurationSeries"
294
+
295
+ i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
296
+ [configurationSeriesAdd]="messages.configurationSeriesAdd"
297
+
298
+ i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
299
+ [formatChartArea]="messages.formatChartArea"
300
+
301
+ i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
302
+ [formatChartAreaMargins]="messages.formatChartAreaMargins"
303
+
304
+ i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
305
+ [formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
306
+
307
+ i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
308
+ [formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
309
+
310
+ i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
311
+ [formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
312
+
313
+ i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
314
+ [formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
315
+
316
+ i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
317
+ [formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
318
+
319
+ i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
320
+ [formatChartAreaBackground]="messages.formatChartAreaBackground"
321
+
322
+ i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
323
+ [formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
324
+
325
+ i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
326
+ [formatTitle]="messages.formatTitle"
327
+
328
+ i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
329
+ [formatTitleApplyTo]="messages.formatTitleApplyTo"
330
+
331
+ i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
332
+ [formatTitleChartTitle]="messages.formatTitleChartTitle"
333
+
334
+ i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
335
+ [formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
336
+
337
+ i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
338
+ [formatTitleLabel]="messages.formatTitleLabel"
339
+
340
+ i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
341
+ [formatTitleFont]="messages.formatTitleFont"
342
+
343
+ i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
344
+ [formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
345
+
346
+ i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
347
+ [formatTitleSize]="messages.formatTitleSize"
348
+
349
+ i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
350
+ [formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
351
+
352
+ i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
353
+ [formatTitleColor]="messages.formatTitleColor"
354
+
355
+ i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
356
+ [formatSeries]="messages.formatSeries"
357
+
358
+ i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
359
+ [formatSeriesApplyTo]="messages.formatSeriesApplyTo"
360
+
361
+ i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
362
+ [formatSeriesAllSeries]="messages.formatSeriesAllSeries"
363
+
364
+ i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
365
+ [formatSeriesColor]="messages.formatSeriesColor"
366
+
367
+ i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
368
+ [formatSeriesShowLabels]="messages.formatSeriesShowLabels"
369
+
370
+ i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
371
+ [formatLegend]="messages.formatLegend"
372
+
373
+ i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
374
+ [formatLegendShowLegend]="messages.formatLegendShowLegend"
375
+
376
+ i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
377
+ [formatLegendFont]="messages.formatLegendFont"
378
+
379
+ i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
380
+ [formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
381
+
382
+ i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
383
+ [formatLegendSize]="messages.formatLegendSize"
384
+
385
+ i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
386
+ [formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
387
+
388
+ i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
389
+ [formatLegendColor]="messages.formatLegendColor"
390
+
391
+ i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
392
+ [formatLegendPosition]="messages.formatLegendPosition"
393
+
394
+ i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
395
+ [formatLegendPositionTop]="messages.formatLegendPositionTop"
396
+
397
+ i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
398
+ [formatLegendPositionBottom]="messages.formatLegendPositionBottom"
399
+
400
+ i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
401
+ [formatLegendPositionLeft]="messages.formatLegendPositionLeft"
402
+
403
+ i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
404
+ [formatLegendPositionRight]="messages.formatLegendPositionRight"
405
+
406
+ i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
407
+ [formatCategoryAxis]="messages.formatCategoryAxis"
408
+
409
+ i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
410
+ [formatXAxis]="messages.formatXAxis"
411
+
412
+ i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
413
+ [formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
414
+
415
+ i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
416
+ [formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
417
+
418
+ i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
419
+ [formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
420
+
421
+ i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
422
+ [formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
423
+
424
+ i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
425
+ [formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
426
+
427
+ i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
428
+ [formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
429
+
430
+ i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
431
+ [formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
432
+
433
+ i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
434
+ [formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
435
+
436
+ i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
437
+ [formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
438
+
439
+ i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
440
+ [formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
441
+
442
+ i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
443
+ [formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
444
+
445
+ i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
446
+ [formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
447
+
448
+ i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
449
+ [formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
450
+
451
+ i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
452
+ [formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
453
+
454
+ i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
455
+ [formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
456
+
457
+ i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
458
+ [formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
459
+
460
+ i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
461
+ [formatValueAxis]="messages.formatValueAxis"
462
+
463
+ i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
464
+ [formatYAxis]="messages.formatYAxis"
465
+
466
+ i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
467
+ [formatValueAxisTitle]="messages.formatValueAxisTitle"
468
+
469
+ i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
470
+ [formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
471
+
472
+ i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
473
+ [formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
474
+
475
+ i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
476
+ [formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
477
+
478
+ i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
479
+ [formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
480
+
481
+ i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
482
+ [formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
483
+
484
+ i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
485
+ [formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
486
+
487
+ i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
488
+ [formatValueAxisLabels]="messages.formatValueAxisLabels"
489
+
490
+ i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
491
+ [formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
492
+
493
+ i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
494
+ [formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
495
+
496
+ i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
497
+ [formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
498
+
499
+ i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
500
+ [formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
501
+
502
+ i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
503
+ [formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
504
+
505
+ i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
506
+ [formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
507
+
508
+ i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
509
+ [formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
510
+
511
+ i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
512
+ [formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
513
+
514
+ i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
515
+ [formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
516
+
517
+ i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
518
+ [formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
519
+
520
+ i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
521
+ [formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
522
+
523
+ i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
524
+ [formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
525
+
174
526
  ></ng-container>
527
+ <div *ngIf="windowSettings?.modal" @overlayAppear class="k-overlay"> </div>
175
528
  <kendo-window
176
529
  class="k-chart-wizard"
177
- title="Chart Wizard"
178
- [width]="stateService.windowSize.width"
179
- [height]="stateService.windowSize.height"
530
+ [title]="messageFor('windowTitle')"
531
+ [width]="windowWidth"
532
+ [height]="windowHeight"
533
+ [minWidth]="windowSettings?.minWidth"
534
+ [minHeight]="windowSettings?.minHeight"
535
+ [state]="windowSettings?.state"
180
536
  [resizable]="true"
181
537
  (close)="close.emit()"
182
538
  >
@@ -190,7 +546,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
190
546
  fillMode="flat"
191
547
  (itemClick)="onExport($event)"
192
548
  >
193
- Export
549
+ {{ messageFor('exportButton') }}
194
550
  </kendo-dropdownbutton>
195
551
  </div>
196
552
  <div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
@@ -269,20 +625,20 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
269
625
  </kendo-chart>
270
626
  </div>
271
627
  </kendo-splitter-pane>
272
- <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [size]="stateService.splitterPaneSize">
628
+ <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [collapsed]="collapsedConfigurationPane" [size]="stateService.splitterPaneSize">
273
629
  <kendo-tabstrip [keepTabContent]="true">
274
- <kendo-tabstrip-tab title="Chart" [selected]="true">
630
+ <kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
275
631
  <ng-template kendoTabContent>
276
632
  <kendo-chartwizard-property-pane-chart-tab>
277
633
  </kendo-chartwizard-property-pane-chart-tab>
278
634
  </ng-template>
279
635
  </kendo-tabstrip-tab>
280
- <kendo-tabstrip-tab title="Data">
636
+ <kendo-tabstrip-tab [title]="messageFor('tabData')">
281
637
  <ng-template kendoTabContent>
282
638
  <kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
283
639
  </ng-template>
284
640
  </kendo-tabstrip-tab>
285
- <kendo-tabstrip-tab title="Format">
641
+ <kendo-tabstrip-tab [title]="messageFor('tabFormat')">
286
642
  <ng-template kendoTabContent>
287
643
  <kendo-chartwizard-property-pane-format-tab>
288
644
  </kendo-chartwizard-property-pane-format-tab>
@@ -293,10 +649,21 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
293
649
  </kendo-splitter>
294
650
  <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
295
651
  </kendo-window>
296
- `, isInline: true, dependencies: [{ kind: "component", type: WindowComponent, selector: "kendo-window", inputs: ["autoFocusedElement", "title", "draggable", "resizable", "themeColor", "keepContent", "state", "minWidth", "minHeight", "width", "height", "top", "left"], outputs: ["dragStart", "dragEnd", "resizeStart", "resizeEnd", "close", "widthChange", "heightChange", "topChange", "leftChange", "stateChange"], exportAs: ["kendoWindow"] }, { kind: "component", type: SplitterComponent, selector: "kendo-splitter", inputs: ["orientation", "splitbarWidth", "resizeStep"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { kind: "component", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "separatorLabel", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { kind: "component", type: DropDownButtonComponent, selector: "kendo-dropdownbutton", inputs: ["arrowIcon", "icon", "svgIcon", "iconClass", "imageUrl", "textField", "data", "size", "rounded", "fillMode", "themeColor", "buttonAttributes"], outputs: ["itemClick", "focus", "blur"], exportAs: ["kendoDropDownButton"] }, { kind: "component", type: ChartComponent, selector: "kendo-chart", inputs: ["pannable", "renderAs", "seriesColors", "subtitle", "title", "transitions", "zoomable", "axisDefaults", "categoryAxis", "chartArea", "legend", "panes", "paneDefaults", "plotArea", "series", "seriesDefaults", "tooltip", "valueAxis", "xAxis", "yAxis", "resizeRateLimit", "popupSettings", "drilldownLevel"], outputs: ["axisLabelClick", "drag", "dragEnd", "dragStart", "legendItemHover", "legendItemLeave", "noteClick", "noteHover", "noteLeave", "paneRender", "plotAreaClick", "plotAreaHover", "plotAreaLeave", "render", "select", "selectEnd", "selectStart", "seriesClick", "drilldown", "seriesHover", "seriesOver", "seriesLeave", "zoom", "zoomEnd", "zoomStart", "legendItemClick", "drilldownLevelChange"], exportAs: ["kendoChart"] }, { kind: "component", type: TitleComponent, selector: "kendo-chart-title", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "description", "visible"] }, { kind: "component", type: SubtitleComponent, selector: "kendo-chart-subtitle", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "visible"] }, { kind: "component", type: ChartAreaComponent, selector: "kendo-chart-area", inputs: ["background", "border", "height", "margin", "opacity", "width"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: CategoryAxisComponent, selector: "kendo-chart-category-axis" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: CategoryAxisItemComponent, selector: "kendo-chart-category-axis-item", inputs: ["autoBaseUnitSteps", "axisCrossingValue", "background", "baseUnit", "baseUnitStep", "categories", "color", "justified", "line", "majorGridLines", "majorTicks", "max", "maxDateGroups", "maxDivisions", "min", "minorGridLines", "minorTicks", "name", "pane", "plotBands", "reverse", "roundToBaseUnit", "startAngle", "type", "visible", "weekStartDay", "crosshair", "labels", "notes", "select", "title", "rangeLabels"] }, { kind: "component", type: ValueAxisComponent, selector: "kendo-chart-value-axis" }, { kind: "component", type: ValueAxisItemComponent, selector: "kendo-chart-value-axis-item", inputs: ["axisCrossingValue", "background", "color", "line", "majorGridLines", "majorTicks", "majorUnit", "max", "min", "minorGridLines", "minorTicks", "minorUnit", "name", "narrowRange", "pane", "plotBands", "reverse", "type", "visible", "crosshair", "labels", "notes", "title"] }, { kind: "component", type: SeriesComponent, selector: "kendo-chart-series" }, { kind: "component", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: ["aggregate", "autoFit", "axis", "border", "categoryAxis", "categoryField", "closeField", "color", "colorField", "connectors", "currentField", "dashType", "data", "downColor", "downColorField", "drilldownField", "dynamicHeight", "dynamicSlope", "errorHighField", "errorLowField", "explodeField", "field", "fromField", "gap", "highField", "holeSize", "line", "lowField", "lowerField", "margin", "maxSize", "mean", "meanField", "median", "medianField", "minSize", "missingValues", "name", "neckRatio", "negativeColor", "negativeValues", "noteTextField", "opacity", "openField", "outliersField", "overlay", "padding", "q1Field", "q3Field", "segmentSpacing", "size", "sizeField", "spacing", "stack", "startAngle", "style", "summaryField", "target", "toField", "type", "upperField", "visible", "visibleInLegend", "visibleInLegendField", "visual", "width", "whiskers", "xAxis", "xErrorHighField", "xErrorLowField", "xField", "yAxis", "yErrorHighField", "yErrorLowField", "yField", "zIndex", "trendline", "for", "legendItem", "errorBars", "extremes", "highlight", "labels", "markers", "notes", "outliers", "tooltip"] }, { kind: "component", type: LegendComponent, selector: "kendo-chart-legend", inputs: ["align", "background", "border", "height", "labels", "margin", "offsetX", "offsetY", "orientation", "padding", "position", "reverse", "visible", "width", "markers", "spacing", "inactiveItems", "item", "title"] }, { kind: "component", type: TabStripComponent, selector: "kendo-tabstrip", inputs: ["height", "animate", "tabAlignment", "tabPosition", "keepTabContent", "closable", "scrollable", "closeIcon", "closeIconClass", "closeSVGIcon", "showContentArea"], outputs: ["tabSelect", "tabClose", "tabScroll"], exportAs: ["kendoTabStrip"] }, { kind: "component", type: TabStripTabComponent, selector: "kendo-tabstrip-tab", inputs: ["title", "disabled", "cssClass", "cssStyle", "selected", "closable", "closeIcon", "closeIconClass", "closeSVGIcon"], exportAs: ["kendoTabStripTab"] }, { kind: "directive", type: TabContentDirective, selector: "[kendoTabContent]" }, { kind: "component", type: ChartWizardPropertyPaneChartTabComponent, selector: "kendo-chartwizard-property-pane-chart-tab" }, { kind: "component", type: ChartWizardPropertyPaneFormatTabComponent, selector: "kendo-chartwizard-property-pane-format-tab" }, { kind: "component", type: ChartWizardPropertyPaneDataTabComponent, selector: "kendo-chartwizard-property-pane-data-tab" }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
652
+ `, isInline: true, dependencies: [{ kind: "component", type: WindowComponent, selector: "kendo-window", inputs: ["autoFocusedElement", "title", "draggable", "resizable", "themeColor", "keepContent", "state", "minWidth", "minHeight", "width", "height", "top", "left"], outputs: ["dragStart", "dragEnd", "resizeStart", "resizeEnd", "close", "widthChange", "heightChange", "topChange", "leftChange", "stateChange"], exportAs: ["kendoWindow"] }, { kind: "component", type: SplitterComponent, selector: "kendo-splitter", inputs: ["orientation", "splitbarWidth", "resizeStep"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { kind: "component", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "separatorLabel", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { kind: "component", type: DropDownButtonComponent, selector: "kendo-dropdownbutton", inputs: ["arrowIcon", "icon", "svgIcon", "iconClass", "imageUrl", "textField", "data", "size", "rounded", "fillMode", "themeColor", "buttonAttributes"], outputs: ["itemClick", "focus", "blur"], exportAs: ["kendoDropDownButton"] }, { kind: "component", type: ChartComponent, selector: "kendo-chart", inputs: ["pannable", "renderAs", "seriesColors", "subtitle", "title", "transitions", "zoomable", "axisDefaults", "categoryAxis", "chartArea", "legend", "panes", "paneDefaults", "plotArea", "series", "seriesDefaults", "tooltip", "valueAxis", "xAxis", "yAxis", "resizeRateLimit", "popupSettings", "drilldownLevel"], outputs: ["axisLabelClick", "drag", "dragEnd", "dragStart", "legendItemHover", "legendItemLeave", "noteClick", "noteHover", "noteLeave", "paneRender", "plotAreaClick", "plotAreaHover", "plotAreaLeave", "render", "select", "selectEnd", "selectStart", "seriesClick", "drilldown", "seriesHover", "seriesOver", "seriesLeave", "zoom", "zoomEnd", "zoomStart", "legendItemClick", "drilldownLevelChange"], exportAs: ["kendoChart"] }, { kind: "component", type: TitleComponent, selector: "kendo-chart-title", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "description", "visible"] }, { kind: "component", type: SubtitleComponent, selector: "kendo-chart-subtitle", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "visible"] }, { kind: "component", type: ChartAreaComponent, selector: "kendo-chart-area", inputs: ["background", "border", "height", "margin", "opacity", "width"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: CategoryAxisComponent, selector: "kendo-chart-category-axis" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: CategoryAxisItemComponent, selector: "kendo-chart-category-axis-item", inputs: ["autoBaseUnitSteps", "axisCrossingValue", "background", "baseUnit", "baseUnitStep", "categories", "color", "justified", "line", "majorGridLines", "majorTicks", "max", "maxDateGroups", "maxDivisions", "min", "minorGridLines", "minorTicks", "name", "pane", "plotBands", "reverse", "roundToBaseUnit", "startAngle", "type", "visible", "weekStartDay", "crosshair", "labels", "notes", "select", "title", "rangeLabels"] }, { kind: "component", type: ValueAxisComponent, selector: "kendo-chart-value-axis" }, { kind: "component", type: ValueAxisItemComponent, selector: "kendo-chart-value-axis-item", inputs: ["axisCrossingValue", "background", "color", "line", "majorGridLines", "majorTicks", "majorUnit", "max", "min", "minorGridLines", "minorTicks", "minorUnit", "name", "narrowRange", "pane", "plotBands", "reverse", "type", "visible", "crosshair", "labels", "notes", "title"] }, { kind: "component", type: SeriesComponent, selector: "kendo-chart-series" }, { kind: "component", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: ["aggregate", "autoFit", "axis", "border", "categoryAxis", "categoryField", "closeField", "color", "colorField", "connectors", "currentField", "dashType", "data", "downColor", "downColorField", "drilldownField", "dynamicHeight", "dynamicSlope", "errorHighField", "errorLowField", "explodeField", "field", "fromField", "gap", "highField", "holeSize", "line", "lowField", "lowerField", "margin", "maxSize", "mean", "meanField", "median", "medianField", "minSize", "missingValues", "name", "neckRatio", "negativeColor", "negativeValues", "noteTextField", "opacity", "openField", "outliersField", "overlay", "padding", "q1Field", "q3Field", "segmentSpacing", "size", "sizeField", "spacing", "stack", "startAngle", "style", "summaryField", "target", "toField", "type", "upperField", "visible", "visibleInLegend", "visibleInLegendField", "visual", "width", "whiskers", "xAxis", "xErrorHighField", "xErrorLowField", "xField", "yAxis", "yErrorHighField", "yErrorLowField", "yField", "zIndex", "trendline", "for", "legendItem", "errorBars", "extremes", "highlight", "labels", "markers", "notes", "outliers", "tooltip"] }, { kind: "component", type: LegendComponent, selector: "kendo-chart-legend", inputs: ["align", "background", "border", "height", "labels", "margin", "offsetX", "offsetY", "orientation", "padding", "position", "reverse", "visible", "width", "markers", "spacing", "inactiveItems", "item", "title"] }, { kind: "component", type: TabStripComponent, selector: "kendo-tabstrip", inputs: ["height", "animate", "tabAlignment", "tabPosition", "keepTabContent", "closable", "scrollable", "closeIcon", "closeIconClass", "closeSVGIcon", "showContentArea"], outputs: ["tabSelect", "tabClose", "tabScroll"], exportAs: ["kendoTabStrip"] }, { kind: "component", type: TabStripTabComponent, selector: "kendo-tabstrip-tab", inputs: ["title", "disabled", "cssClass", "cssStyle", "selected", "closable", "closeIcon", "closeIconClass", "closeSVGIcon"], exportAs: ["kendoTabStripTab"] }, { kind: "directive", type: TabContentDirective, selector: "[kendoTabContent]" }, { kind: "component", type: ChartWizardPropertyPaneChartTabComponent, selector: "kendo-chartwizard-property-pane-chart-tab" }, { kind: "component", type: ChartWizardPropertyPaneFormatTabComponent, selector: "kendo-chartwizard-property-pane-format-tab" }, { kind: "component", type: ChartWizardPropertyPaneDataTabComponent, selector: "kendo-chartwizard-property-pane-data-tab" }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }, { kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoChartWizardLocalizedMessages]" }], animations: [
653
+ trigger('overlayAppear', [
654
+ state('in', style({ opacity: 1 })),
655
+ transition('void => *', [style({ opacity: 0.1 }), animate('.3s cubic-bezier(.2, .6, .4, 1)')])
656
+ ])
657
+ ], changeDetection: i0.ChangeDetectionStrategy.OnPush });
297
658
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardComponent, decorators: [{
298
659
  type: Component,
299
660
  args: [{
661
+ animations: [
662
+ trigger('overlayAppear', [
663
+ state('in', style({ opacity: 1 })),
664
+ transition('void => *', [style({ opacity: 0.1 }), animate('.3s cubic-bezier(.2, .6, .4, 1)')])
665
+ ])
666
+ ],
300
667
  changeDetection: ChangeDetectionStrategy.OnPush,
301
668
  exportAs: 'kendoChartWizard',
302
669
  providers: [
@@ -305,20 +672,346 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
305
672
  provide: L10N_PREFIX,
306
673
  useValue: 'kendo.chartwizard',
307
674
  },
675
+ ChartWizardLocalizationService,
676
+ {
677
+ provide: LocalizationService,
678
+ useExisting: ChartWizardLocalizationService
679
+ },
308
680
  StateService
309
681
  ],
310
682
  selector: 'kendo-chartwizard',
311
683
  template: `
312
684
  <ng-container
313
685
  kendoChartWizardLocalizedMessages
314
- i18n-sampleMessage="kendo.chartwizard.sampleMessage|Sample description"
315
- sampleMessage="foo"
686
+
687
+ i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
688
+ [windowTitle]="messages.windowTitle"
689
+
690
+ i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
691
+ [exportButton]="messages.exportButton"
692
+
693
+ i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
694
+ [exportPDFButton]="messages.exportPDFButton"
695
+
696
+ i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
697
+ [exportSVGButton]="messages.exportSVGButton"
698
+
699
+ i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
700
+ [exportPNGButton]="messages.exportPNGButton"
701
+
702
+ i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
703
+ [tabChart]="messages.tabChart"
704
+
705
+ i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
706
+ [tabData]="messages.tabData"
707
+
708
+ i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
709
+ [tabFormat]="messages.tabFormat"
710
+
711
+ i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
712
+ [barChart]="messages.barChart"
713
+
714
+ i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
715
+ [barChartBar]="messages.barChartBar"
716
+
717
+ i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
718
+ [barChartStackedBar]="messages.barChartStackedBar"
719
+
720
+ i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
721
+ [barChart100StackedBar]="messages.barChart100StackedBar"
722
+
723
+ i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
724
+ [pieChart]="messages.pieChart"
725
+
726
+ i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
727
+ [pieChartPie]="messages.pieChartPie"
728
+
729
+ i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
730
+ [columnChart]="messages.columnChart"
731
+
732
+ i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
733
+ [columnChartColumn]="messages.columnChartColumn"
734
+
735
+ i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
736
+ [columnChartStackedColumn]="messages.columnChartStackedColumn"
737
+
738
+ i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
739
+ [columnChart100StackedColumn]="messages.columnChart100StackedColumn"
740
+
741
+ i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
742
+ [lineChart]="messages.lineChart"
743
+
744
+ i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
745
+ [lineChartLine]="messages.lineChartLine"
746
+
747
+ i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
748
+ [lineChartStackedLine]="messages.lineChartStackedLine"
749
+
750
+ i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
751
+ [lineChart100StackedLine]="messages.lineChart100StackedLine"
752
+
753
+ i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
754
+ [scatterChart]="messages.scatterChart"
755
+
756
+ i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
757
+ [scatterChartScatter]="messages.scatterChartScatter"
758
+
759
+ i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
760
+ [configuration]="messages.configuration"
761
+
762
+ i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
763
+ [configurationCategoryAxis]="messages.configurationCategoryAxis"
764
+
765
+ i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
766
+ [configurationXAxis]="messages.configurationXAxis"
767
+
768
+ i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
769
+ [configurationValueAxis]="messages.configurationValueAxis"
770
+
771
+ i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
772
+ [configurationSeries]="messages.configurationSeries"
773
+
774
+ i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
775
+ [configurationSeriesAdd]="messages.configurationSeriesAdd"
776
+
777
+ i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
778
+ [formatChartArea]="messages.formatChartArea"
779
+
780
+ i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
781
+ [formatChartAreaMargins]="messages.formatChartAreaMargins"
782
+
783
+ i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
784
+ [formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
785
+
786
+ i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
787
+ [formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
788
+
789
+ i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
790
+ [formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
791
+
792
+ i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
793
+ [formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
794
+
795
+ i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
796
+ [formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
797
+
798
+ i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
799
+ [formatChartAreaBackground]="messages.formatChartAreaBackground"
800
+
801
+ i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
802
+ [formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
803
+
804
+ i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
805
+ [formatTitle]="messages.formatTitle"
806
+
807
+ i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
808
+ [formatTitleApplyTo]="messages.formatTitleApplyTo"
809
+
810
+ i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
811
+ [formatTitleChartTitle]="messages.formatTitleChartTitle"
812
+
813
+ i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
814
+ [formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
815
+
816
+ i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
817
+ [formatTitleLabel]="messages.formatTitleLabel"
818
+
819
+ i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
820
+ [formatTitleFont]="messages.formatTitleFont"
821
+
822
+ i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
823
+ [formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
824
+
825
+ i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
826
+ [formatTitleSize]="messages.formatTitleSize"
827
+
828
+ i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
829
+ [formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
830
+
831
+ i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
832
+ [formatTitleColor]="messages.formatTitleColor"
833
+
834
+ i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
835
+ [formatSeries]="messages.formatSeries"
836
+
837
+ i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
838
+ [formatSeriesApplyTo]="messages.formatSeriesApplyTo"
839
+
840
+ i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
841
+ [formatSeriesAllSeries]="messages.formatSeriesAllSeries"
842
+
843
+ i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
844
+ [formatSeriesColor]="messages.formatSeriesColor"
845
+
846
+ i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
847
+ [formatSeriesShowLabels]="messages.formatSeriesShowLabels"
848
+
849
+ i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
850
+ [formatLegend]="messages.formatLegend"
851
+
852
+ i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
853
+ [formatLegendShowLegend]="messages.formatLegendShowLegend"
854
+
855
+ i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
856
+ [formatLegendFont]="messages.formatLegendFont"
857
+
858
+ i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
859
+ [formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
860
+
861
+ i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
862
+ [formatLegendSize]="messages.formatLegendSize"
863
+
864
+ i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
865
+ [formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
866
+
867
+ i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
868
+ [formatLegendColor]="messages.formatLegendColor"
869
+
870
+ i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
871
+ [formatLegendPosition]="messages.formatLegendPosition"
872
+
873
+ i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
874
+ [formatLegendPositionTop]="messages.formatLegendPositionTop"
875
+
876
+ i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
877
+ [formatLegendPositionBottom]="messages.formatLegendPositionBottom"
878
+
879
+ i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
880
+ [formatLegendPositionLeft]="messages.formatLegendPositionLeft"
881
+
882
+ i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
883
+ [formatLegendPositionRight]="messages.formatLegendPositionRight"
884
+
885
+ i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
886
+ [formatCategoryAxis]="messages.formatCategoryAxis"
887
+
888
+ i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
889
+ [formatXAxis]="messages.formatXAxis"
890
+
891
+ i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
892
+ [formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
893
+
894
+ i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
895
+ [formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
896
+
897
+ i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
898
+ [formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
899
+
900
+ i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
901
+ [formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
902
+
903
+ i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
904
+ [formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
905
+
906
+ i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
907
+ [formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
908
+
909
+ i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
910
+ [formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
911
+
912
+ i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
913
+ [formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
914
+
915
+ i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
916
+ [formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
917
+
918
+ i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
919
+ [formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
920
+
921
+ i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
922
+ [formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
923
+
924
+ i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
925
+ [formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
926
+
927
+ i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
928
+ [formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
929
+
930
+ i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
931
+ [formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
932
+
933
+ i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
934
+ [formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
935
+
936
+ i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
937
+ [formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
938
+
939
+ i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
940
+ [formatValueAxis]="messages.formatValueAxis"
941
+
942
+ i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
943
+ [formatYAxis]="messages.formatYAxis"
944
+
945
+ i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
946
+ [formatValueAxisTitle]="messages.formatValueAxisTitle"
947
+
948
+ i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
949
+ [formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
950
+
951
+ i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
952
+ [formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
953
+
954
+ i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
955
+ [formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
956
+
957
+ i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
958
+ [formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
959
+
960
+ i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
961
+ [formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
962
+
963
+ i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
964
+ [formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
965
+
966
+ i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
967
+ [formatValueAxisLabels]="messages.formatValueAxisLabels"
968
+
969
+ i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
970
+ [formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
971
+
972
+ i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
973
+ [formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
974
+
975
+ i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
976
+ [formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
977
+
978
+ i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
979
+ [formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
980
+
981
+ i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
982
+ [formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
983
+
984
+ i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
985
+ [formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
986
+
987
+ i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
988
+ [formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
989
+
990
+ i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
991
+ [formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
992
+
993
+ i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
994
+ [formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
995
+
996
+ i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
997
+ [formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
998
+
999
+ i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
1000
+ [formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
1001
+
1002
+ i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
1003
+ [formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
1004
+
316
1005
  ></ng-container>
1006
+ <div *ngIf="windowSettings?.modal" @overlayAppear class="k-overlay"> </div>
317
1007
  <kendo-window
318
1008
  class="k-chart-wizard"
319
- title="Chart Wizard"
320
- [width]="stateService.windowSize.width"
321
- [height]="stateService.windowSize.height"
1009
+ [title]="messageFor('windowTitle')"
1010
+ [width]="windowWidth"
1011
+ [height]="windowHeight"
1012
+ [minWidth]="windowSettings?.minWidth"
1013
+ [minHeight]="windowSettings?.minHeight"
1014
+ [state]="windowSettings?.state"
322
1015
  [resizable]="true"
323
1016
  (close)="close.emit()"
324
1017
  >
@@ -332,7 +1025,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
332
1025
  fillMode="flat"
333
1026
  (itemClick)="onExport($event)"
334
1027
  >
335
- Export
1028
+ {{ messageFor('exportButton') }}
336
1029
  </kendo-dropdownbutton>
337
1030
  </div>
338
1031
  <div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
@@ -411,20 +1104,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
411
1104
  </kendo-chart>
412
1105
  </div>
413
1106
  </kendo-splitter-pane>
414
- <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [size]="stateService.splitterPaneSize">
1107
+ <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [collapsed]="collapsedConfigurationPane" [size]="stateService.splitterPaneSize">
415
1108
  <kendo-tabstrip [keepTabContent]="true">
416
- <kendo-tabstrip-tab title="Chart" [selected]="true">
1109
+ <kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
417
1110
  <ng-template kendoTabContent>
418
1111
  <kendo-chartwizard-property-pane-chart-tab>
419
1112
  </kendo-chartwizard-property-pane-chart-tab>
420
1113
  </ng-template>
421
1114
  </kendo-tabstrip-tab>
422
- <kendo-tabstrip-tab title="Data">
1115
+ <kendo-tabstrip-tab [title]="messageFor('tabData')">
423
1116
  <ng-template kendoTabContent>
424
1117
  <kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
425
1118
  </ng-template>
426
1119
  </kendo-tabstrip-tab>
427
- <kendo-tabstrip-tab title="Format">
1120
+ <kendo-tabstrip-tab [title]="messageFor('tabFormat')">
428
1121
  <ng-template kendoTabContent>
429
1122
  <kendo-chartwizard-property-pane-format-tab>
430
1123
  </kendo-chartwizard-property-pane-format-tab>
@@ -465,7 +1158,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
465
1158
  ChartWizardPropertyPaneChartTabComponent,
466
1159
  ChartWizardPropertyPaneFormatTabComponent,
467
1160
  ChartWizardPropertyPaneDataTabComponent,
468
- WatermarkOverlayComponent
1161
+ WatermarkOverlayComponent,
1162
+ LocalizedMessagesDirective
469
1163
  ]
470
1164
  }]
471
1165
  }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i2.StateService }]; }, propDecorators: { data: [{
@@ -474,6 +1168,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
474
1168
  type: Input
475
1169
  }], exportOptions: [{
476
1170
  type: Input
1171
+ }], collapsedConfigurationPane: [{
1172
+ type: Input
1173
+ }], windowSettings: [{
1174
+ type: Input
477
1175
  }], close: [{
478
1176
  type: Output
479
1177
  }], export: [{