@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,10 +3,10 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
6
- import { Injectable, Component, ChangeDetectionStrategy, ViewEncapsulation, ViewChild, Input, EventEmitter, Output, HostBinding, Directive, HostListener, NgModule } from '@angular/core';
7
- import { shouldShowValidationUI, WatermarkOverlayComponent, isPresent, ResizeBatchService } from '@progress/kendo-angular-common';
8
- import * as i2$1 from '@progress/kendo-angular-l10n';
9
- import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
6
+ import { Injectable, Inject, Optional, Component, ChangeDetectionStrategy, ViewEncapsulation, ViewChild, Input, EventEmitter, Output, HostBinding, Directive, forwardRef, HostListener, NgModule } from '@angular/core';
7
+ import { shouldShowValidationUI, isPresent, WatermarkOverlayComponent, ResizeBatchService } from '@progress/kendo-angular-common';
8
+ import * as i1 from '@progress/kendo-angular-l10n';
9
+ import { LocalizationService, L10N_PREFIX, RTL, ComponentMessages } from '@progress/kendo-angular-l10n';
10
10
  import { validatePackage } from '@progress/kendo-licensing';
11
11
  import { Subscription } from 'rxjs';
12
12
  import { ChartWizardCommon } from '@progress/kendo-charts';
@@ -14,7 +14,7 @@ import { trashIcon, plusIcon, exportIcon, chartBarClusteredIcon, chartBarStacked
14
14
  import { ChartComponent, TitleComponent, SubtitleComponent, ChartAreaComponent, CategoryAxisComponent, CategoryAxisItemComponent, ValueAxisComponent, ValueAxisItemComponent, SeriesComponent, SeriesItemComponent, LegendComponent, XAxisComponent, XAxisItemComponent, YAxisComponent, YAxisItemComponent, ThemeService } from '@progress/kendo-angular-charts';
15
15
  import { saveAs } from '@progress/kendo-file-saver';
16
16
  import { exportPDF } from '@progress/kendo-drawing';
17
- import * as i1 from '@progress/kendo-angular-grid';
17
+ import * as i1$1 from '@progress/kendo-angular-grid';
18
18
  import { GridComponent, ReactiveEditingDirective, DataBindingDirective, ToolbarTemplateDirective, RowReorderColumnComponent, ColumnComponent, CommandColumnComponent, CellTemplateDirective, GridToolbarFocusableDirective, RemoveCommandDirective } from '@progress/kendo-angular-grid';
19
19
  import { NgIf, NgFor } from '@angular/common';
20
20
  import { ExpansionPanelComponent, SplitterComponent, SplitterPaneComponent, TabStripComponent, TabStripTabComponent, TabContentDirective } from '@progress/kendo-angular-layout';
@@ -25,6 +25,7 @@ import { SVGIconComponent, IconsService } from '@progress/kendo-angular-icons';
25
25
  import { WindowComponent, DialogContainerService, DialogService, WindowService, WindowContainerService } from '@progress/kendo-angular-dialog';
26
26
  import { NumericTextBoxComponent, ColorPickerComponent, TextBoxComponent, CheckBoxComponent, SwitchComponent } from '@progress/kendo-angular-inputs';
27
27
  import { LabelComponent } from '@progress/kendo-angular-label';
28
+ import { trigger, state, style, transition, animate } from '@angular/animations';
28
29
  import { PopupService } from '@progress/kendo-angular-popup';
29
30
  import { getter } from '@progress/kendo-common';
30
31
 
@@ -35,8 +36,8 @@ const packageMetadata = {
35
36
  name: '@progress/kendo-angular-chart-wizard',
36
37
  productName: 'Kendo UI for Angular',
37
38
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
38
- publishDate: 1727855442,
39
- version: '16.11.0-develop.9',
39
+ publishDate: 1728573084,
40
+ version: '16.12.0-develop.1',
40
41
  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',
41
42
  };
42
43
 
@@ -145,15 +146,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
145
146
  type: Injectable
146
147
  }] });
147
148
 
149
+ /**
150
+ * @hidden
151
+ */
152
+ class ChartWizardLocalizationService extends LocalizationService {
153
+ constructor(prefix, messageService, _rtl) {
154
+ super(prefix, messageService, _rtl);
155
+ }
156
+ }
157
+ ChartWizardLocalizationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
158
+ ChartWizardLocalizationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardLocalizationService });
159
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardLocalizationService, decorators: [{
160
+ type: Injectable
161
+ }], ctorParameters: function () {
162
+ return [{ type: undefined, decorators: [{
163
+ type: Inject,
164
+ args: [L10N_PREFIX]
165
+ }] }, { type: i1.MessageService, decorators: [{
166
+ type: Optional
167
+ }] }, { type: undefined, decorators: [{
168
+ type: Optional
169
+ }, {
170
+ type: Inject,
171
+ args: [RTL]
172
+ }] }];
173
+ } });
174
+
148
175
  /**
149
176
  * @hidden
150
177
  */
151
178
  class ChartWizardPropertyPaneDataTabComponent {
152
- constructor(stateService, formBuilder, cdr, renderer) {
179
+ constructor(stateService, formBuilder, cdr, renderer, localization) {
153
180
  this.stateService = stateService;
154
181
  this.formBuilder = formBuilder;
155
182
  this.cdr = cdr;
156
183
  this.renderer = renderer;
184
+ this.localization = localization;
157
185
  this.categoryAxisX = ActionTypes.categoryAxisX;
158
186
  this.valueAxisY = ActionTypes.valueAxisY;
159
187
  this.trashIcon = trashIcon;
@@ -199,14 +227,17 @@ class ChartWizardPropertyPaneDataTabComponent {
199
227
  detectChanges() {
200
228
  this.cdr.detectChanges();
201
229
  }
230
+ messageFor(key) {
231
+ return this.localization.get(key);
232
+ }
202
233
  }
203
- ChartWizardPropertyPaneDataTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneDataTabComponent, deps: [{ token: StateService }, { token: i2.FormBuilder }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
234
+ ChartWizardPropertyPaneDataTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneDataTabComponent, deps: [{ token: StateService }, { token: i2.FormBuilder }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: ChartWizardLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
204
235
  ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneDataTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-data-tab", viewQueries: [{ propertyName: "grid", first: true, predicate: GridComponent, descendants: true }], ngImport: i0, template: `
205
- <kendo-expansionpanel title="Configuration" [expanded]="true">
236
+ <kendo-expansionpanel [title]="messageFor('configuration')" [expanded]="true">
206
237
  <form class="k-form k-form-md">
207
238
  <fieldset class="k-form-fieldset">
208
239
  <legend class="k-form-legend">
209
- {{ stateService.state.seriesType === 'scatter' ? 'X Axis' : 'Category Axis' }}
240
+ {{ stateService.state.seriesType === 'scatter' ? messageFor('configurationXAxis') : messageFor('configurationCategoryAxis') }}
210
241
  </legend>
211
242
  <kendo-dropdownlist
212
243
  [data]="stateService.state.columns"
@@ -219,7 +250,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
219
250
  </kendo-dropdownlist>
220
251
  </fieldset>
221
252
  <fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.state.seriesType)">
222
- <legend class="k-form-legend">Series</legend>
253
+ <legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
223
254
  <kendo-grid
224
255
  #grid
225
256
  [kendoGridReactiveEditing]="createFormGroup"
@@ -238,7 +269,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
238
269
  [disabled]="isDisabled(grid)"
239
270
  (click)="addData()"
240
271
  >
241
- ADD
272
+ {{ messageFor('configurationSeriesAdd') }}
242
273
  </button>
243
274
  </ng-template>
244
275
  <kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
@@ -262,7 +293,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
262
293
  *ngIf="stateService.state.seriesType === 'pie'"
263
294
  >
264
295
  <legend class="k-form-legend">
265
- {{ 'Value Axis' }}
296
+ {{ messageFor('configurationValueAxis') }}
266
297
  </legend>
267
298
  <kendo-dropdownlist
268
299
  [data]="stateService.state.columns"
@@ -284,11 +315,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
284
315
  changeDetection: ChangeDetectionStrategy.OnPush,
285
316
  encapsulation: ViewEncapsulation.None,
286
317
  template: `
287
- <kendo-expansionpanel title="Configuration" [expanded]="true">
318
+ <kendo-expansionpanel [title]="messageFor('configuration')" [expanded]="true">
288
319
  <form class="k-form k-form-md">
289
320
  <fieldset class="k-form-fieldset">
290
321
  <legend class="k-form-legend">
291
- {{ stateService.state.seriesType === 'scatter' ? 'X Axis' : 'Category Axis' }}
322
+ {{ stateService.state.seriesType === 'scatter' ? messageFor('configurationXAxis') : messageFor('configurationCategoryAxis') }}
292
323
  </legend>
293
324
  <kendo-dropdownlist
294
325
  [data]="stateService.state.columns"
@@ -301,7 +332,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
301
332
  </kendo-dropdownlist>
302
333
  </fieldset>
303
334
  <fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.state.seriesType)">
304
- <legend class="k-form-legend">Series</legend>
335
+ <legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
305
336
  <kendo-grid
306
337
  #grid
307
338
  [kendoGridReactiveEditing]="createFormGroup"
@@ -320,7 +351,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
320
351
  [disabled]="isDisabled(grid)"
321
352
  (click)="addData()"
322
353
  >
323
- ADD
354
+ {{ messageFor('configurationSeriesAdd') }}
324
355
  </button>
325
356
  </ng-template>
326
357
  <kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
@@ -344,7 +375,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
344
375
  *ngIf="stateService.state.seriesType === 'pie'"
345
376
  >
346
377
  <legend class="k-form-legend">
347
- {{ 'Value Axis' }}
378
+ {{ messageFor('configurationValueAxis') }}
348
379
  </legend>
349
380
  <kendo-dropdownlist
350
381
  [data]="stateService.state.columns"
@@ -379,7 +410,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
379
410
  RemoveCommandDirective
380
411
  ]
381
412
  }]
382
- }], ctorParameters: function () { return [{ type: StateService }, { type: i2.FormBuilder }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { grid: [{
413
+ }], ctorParameters: function () { return [{ type: StateService }, { type: i2.FormBuilder }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: ChartWizardLocalizationService }]; }, propDecorators: { grid: [{
383
414
  type: ViewChild,
384
415
  args: [GridComponent]
385
416
  }] } });
@@ -475,27 +506,30 @@ class ChartWizardPropertyPaneChartTabComponent {
475
506
  detectChanges() {
476
507
  this.cdr.detectChanges();
477
508
  }
509
+ messageFor(key) {
510
+ return this.localization.get(key);
511
+ }
478
512
  }
479
- ChartWizardPropertyPaneChartTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneChartTabComponent, deps: [{ token: StateService }, { token: i0.ChangeDetectorRef }, { token: i2$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
513
+ ChartWizardPropertyPaneChartTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneChartTabComponent, deps: [{ token: StateService }, { token: i0.ChangeDetectorRef }, { token: ChartWizardLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
480
514
  ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneChartTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-chart-tab", ngImport: i0, template: `
481
- <kendo-expansionpanel title="Bar Chart" [expanded]="true">
515
+ <kendo-expansionpanel [title]="messageFor('barChart')" [expanded]="true">
482
516
  <div class="k-chart-types-wrapper">
483
517
  <kendo-chartwizard-series-type-button
484
- title="Bar"
518
+ [title]="messageFor('barChartBar')"
485
519
  [chartTypeIcon]="chartBarClusteredIcon"
486
520
  seriesType="bar"
487
521
  [stack]="false"
488
522
  >
489
523
  </kendo-chartwizard-series-type-button>
490
524
  <kendo-chartwizard-series-type-button
491
- title="Stacked Bar"
525
+ [title]="messageFor('barChartStackedBar')"
492
526
  [chartTypeIcon]="chartBarStackedIcon"
493
527
  seriesType="bar"
494
528
  [stack]="true"
495
529
  >
496
530
  </kendo-chartwizard-series-type-button>
497
531
  <kendo-chartwizard-series-type-button
498
- title="100% Stacked Bar"
532
+ [title]="messageFor('barChart100StackedBar')"
499
533
  [chartTypeIcon]="chartBarStacked100Icon"
500
534
  seriesType="bar"
501
535
  [stack]="{ type: '100%' }"
@@ -503,10 +537,10 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
503
537
  </kendo-chartwizard-series-type-button>
504
538
  </div>
505
539
  </kendo-expansionpanel>
506
- <kendo-expansionpanel title="Pie Chart" [expanded]="true">
540
+ <kendo-expansionpanel [title]="messageFor('pieChart')" [expanded]="true">
507
541
  <div class="k-chart-types-wrapper">
508
542
  <kendo-chartwizard-series-type-button
509
- title="Pie"
543
+ [title]="messageFor('pieChartPie')"
510
544
  [chartTypeIcon]="chartPieIcon"
511
545
  seriesType="pie"
512
546
  [stack]="undefined"
@@ -514,24 +548,24 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
514
548
  </kendo-chartwizard-series-type-button>
515
549
  </div>
516
550
  </kendo-expansionpanel>
517
- <kendo-expansionpanel title="Column Chart" [expanded]="true">
551
+ <kendo-expansionpanel [title]="messageFor('columnChart')" [expanded]="true">
518
552
  <div class="k-chart-types-wrapper">
519
553
  <kendo-chartwizard-series-type-button
520
- title="Column"
554
+ [title]="messageFor('columnChartColumn')"
521
555
  [chartTypeIcon]="chartColumnClusteredIcon"
522
556
  seriesType="column"
523
557
  [stack]="false"
524
558
  >
525
559
  </kendo-chartwizard-series-type-button>
526
560
  <kendo-chartwizard-series-type-button
527
- title="Stacked Column"
561
+ [title]="messageFor('columnChartStackedColumn')"
528
562
  [chartTypeIcon]="chartColumnStackedIcon"
529
563
  seriesType="column"
530
564
  [stack]="true"
531
565
  >
532
566
  </kendo-chartwizard-series-type-button>
533
567
  <kendo-chartwizard-series-type-button
534
- title="100% Stacked Column"
568
+ [title]="messageFor('columnChart100StackedColumn')"
535
569
  [chartTypeIcon]="chartColumnStacked100Icon"
536
570
  seriesType="column"
537
571
  [stack]="{ type: '100%' }"
@@ -539,24 +573,24 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
539
573
  </kendo-chartwizard-series-type-button>
540
574
  </div>
541
575
  </kendo-expansionpanel>
542
- <kendo-expansionpanel title="Line Chart" [expanded]="true">
576
+ <kendo-expansionpanel [title]="messageFor('lineChart')" [expanded]="true">
543
577
  <div class="k-chart-types-wrapper">
544
578
  <kendo-chartwizard-series-type-button
545
- title="Line"
579
+ [title]="messageFor('lineChartLine')"
546
580
  [chartTypeIcon]="chartLineIcon"
547
581
  seriesType="line"
548
582
  [stack]="false"
549
583
  >
550
584
  </kendo-chartwizard-series-type-button>
551
585
  <kendo-chartwizard-series-type-button
552
- title="Stacked Line"
586
+ [title]="messageFor('lineChartStackedLine')"
553
587
  [chartTypeIcon]="chartLineStackedIcon"
554
588
  seriesType="line"
555
589
  [stack]="true"
556
590
  >
557
591
  </kendo-chartwizard-series-type-button>
558
592
  <kendo-chartwizard-series-type-button
559
- title="100% Line Column"
593
+ [title]="messageFor('lineChart100StackedLine')"
560
594
  [chartTypeIcon]="chartLineStacked100Icon"
561
595
  seriesType="line"
562
596
  [stack]="{ type: '100%' }"
@@ -564,10 +598,10 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
564
598
  </kendo-chartwizard-series-type-button>
565
599
  </div>
566
600
  </kendo-expansionpanel>
567
- <kendo-expansionpanel title="Scatter Chart" [expanded]="true">
601
+ <kendo-expansionpanel [title]="messageFor('scatterChart')" [expanded]="true">
568
602
  <div class="k-chart-types-wrapper">
569
603
  <kendo-chartwizard-series-type-button
570
- title="Scatter"
604
+ [title]="messageFor('scatterChartScatter')"
571
605
  [chartTypeIcon]="chartScatterIcon"
572
606
  seriesType="scatter"
573
607
  [stack]="false"
@@ -582,24 +616,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
582
616
  selector: 'kendo-chartwizard-property-pane-chart-tab',
583
617
  changeDetection: ChangeDetectionStrategy.OnPush,
584
618
  template: `
585
- <kendo-expansionpanel title="Bar Chart" [expanded]="true">
619
+ <kendo-expansionpanel [title]="messageFor('barChart')" [expanded]="true">
586
620
  <div class="k-chart-types-wrapper">
587
621
  <kendo-chartwizard-series-type-button
588
- title="Bar"
622
+ [title]="messageFor('barChartBar')"
589
623
  [chartTypeIcon]="chartBarClusteredIcon"
590
624
  seriesType="bar"
591
625
  [stack]="false"
592
626
  >
593
627
  </kendo-chartwizard-series-type-button>
594
628
  <kendo-chartwizard-series-type-button
595
- title="Stacked Bar"
629
+ [title]="messageFor('barChartStackedBar')"
596
630
  [chartTypeIcon]="chartBarStackedIcon"
597
631
  seriesType="bar"
598
632
  [stack]="true"
599
633
  >
600
634
  </kendo-chartwizard-series-type-button>
601
635
  <kendo-chartwizard-series-type-button
602
- title="100% Stacked Bar"
636
+ [title]="messageFor('barChart100StackedBar')"
603
637
  [chartTypeIcon]="chartBarStacked100Icon"
604
638
  seriesType="bar"
605
639
  [stack]="{ type: '100%' }"
@@ -607,10 +641,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
607
641
  </kendo-chartwizard-series-type-button>
608
642
  </div>
609
643
  </kendo-expansionpanel>
610
- <kendo-expansionpanel title="Pie Chart" [expanded]="true">
644
+ <kendo-expansionpanel [title]="messageFor('pieChart')" [expanded]="true">
611
645
  <div class="k-chart-types-wrapper">
612
646
  <kendo-chartwizard-series-type-button
613
- title="Pie"
647
+ [title]="messageFor('pieChartPie')"
614
648
  [chartTypeIcon]="chartPieIcon"
615
649
  seriesType="pie"
616
650
  [stack]="undefined"
@@ -618,24 +652,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
618
652
  </kendo-chartwizard-series-type-button>
619
653
  </div>
620
654
  </kendo-expansionpanel>
621
- <kendo-expansionpanel title="Column Chart" [expanded]="true">
655
+ <kendo-expansionpanel [title]="messageFor('columnChart')" [expanded]="true">
622
656
  <div class="k-chart-types-wrapper">
623
657
  <kendo-chartwizard-series-type-button
624
- title="Column"
658
+ [title]="messageFor('columnChartColumn')"
625
659
  [chartTypeIcon]="chartColumnClusteredIcon"
626
660
  seriesType="column"
627
661
  [stack]="false"
628
662
  >
629
663
  </kendo-chartwizard-series-type-button>
630
664
  <kendo-chartwizard-series-type-button
631
- title="Stacked Column"
665
+ [title]="messageFor('columnChartStackedColumn')"
632
666
  [chartTypeIcon]="chartColumnStackedIcon"
633
667
  seriesType="column"
634
668
  [stack]="true"
635
669
  >
636
670
  </kendo-chartwizard-series-type-button>
637
671
  <kendo-chartwizard-series-type-button
638
- title="100% Stacked Column"
672
+ [title]="messageFor('columnChart100StackedColumn')"
639
673
  [chartTypeIcon]="chartColumnStacked100Icon"
640
674
  seriesType="column"
641
675
  [stack]="{ type: '100%' }"
@@ -643,24 +677,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
643
677
  </kendo-chartwizard-series-type-button>
644
678
  </div>
645
679
  </kendo-expansionpanel>
646
- <kendo-expansionpanel title="Line Chart" [expanded]="true">
680
+ <kendo-expansionpanel [title]="messageFor('lineChart')" [expanded]="true">
647
681
  <div class="k-chart-types-wrapper">
648
682
  <kendo-chartwizard-series-type-button
649
- title="Line"
683
+ [title]="messageFor('lineChartLine')"
650
684
  [chartTypeIcon]="chartLineIcon"
651
685
  seriesType="line"
652
686
  [stack]="false"
653
687
  >
654
688
  </kendo-chartwizard-series-type-button>
655
689
  <kendo-chartwizard-series-type-button
656
- title="Stacked Line"
690
+ [title]="messageFor('lineChartStackedLine')"
657
691
  [chartTypeIcon]="chartLineStackedIcon"
658
692
  seriesType="line"
659
693
  [stack]="true"
660
694
  >
661
695
  </kendo-chartwizard-series-type-button>
662
696
  <kendo-chartwizard-series-type-button
663
- title="100% Line Column"
697
+ [title]="messageFor('lineChart100StackedLine')"
664
698
  [chartTypeIcon]="chartLineStacked100Icon"
665
699
  seriesType="line"
666
700
  [stack]="{ type: '100%' }"
@@ -668,10 +702,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
668
702
  </kendo-chartwizard-series-type-button>
669
703
  </div>
670
704
  </kendo-expansionpanel>
671
- <kendo-expansionpanel title="Scatter Chart" [expanded]="true">
705
+ <kendo-expansionpanel [title]="messageFor('scatterChart')" [expanded]="true">
672
706
  <div class="k-chart-types-wrapper">
673
707
  <kendo-chartwizard-series-type-button
674
- title="Scatter"
708
+ [title]="messageFor('scatterChartScatter')"
675
709
  [chartTypeIcon]="chartScatterIcon"
676
710
  seriesType="scatter"
677
711
  [stack]="false"
@@ -683,7 +717,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
683
717
  standalone: true,
684
718
  imports: [ExpansionPanelComponent, ChartWizardSeriesTypeButtonComponent]
685
719
  }]
686
- }], ctorParameters: function () { return [{ type: StateService }, { type: i0.ChangeDetectorRef }, { type: i2$1.LocalizationService }]; } });
720
+ }], ctorParameters: function () { return [{ type: StateService }, { type: i0.ChangeDetectorRef }, { type: ChartWizardLocalizationService }]; } });
687
721
 
688
722
  /**
689
723
  * @hidden
@@ -763,7 +797,7 @@ class ChartWizardPropertyPaneFormFieldComponent {
763
797
  }
764
798
  }
765
799
  }
766
- ChartWizardPropertyPaneFormFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneFormFieldComponent, deps: [{ token: i2$1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
800
+ ChartWizardPropertyPaneFormFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneFormFieldComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
767
801
  ChartWizardPropertyPaneFormFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneFormFieldComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-form-field", inputs: { currentState: "currentState", action: "action", class: "class", inputType: "inputType", text: "text", data: "data", placeholder: "placeholder", colSpan: "colSpan", hasLabel: "hasLabel", isLabelInsideFormFieldWrap: "isLabelInsideFormFieldWrap", value: "value", disabled: "disabled" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-form-field": "this.formField", "class.k-col-span-2": "this.isColSpan2" } }, viewQueries: [{ propertyName: "label", first: true, predicate: LabelComponent, descendants: true }, { propertyName: "numericTextBox", first: true, predicate: NumericTextBoxComponent, descendants: true }, { propertyName: "colorPicker", first: true, predicate: ColorPickerComponent, descendants: true }, { propertyName: "dropDownList", first: true, predicate: DropDownListComponent, descendants: true }, { propertyName: "textBox", first: true, predicate: TextBoxComponent, descendants: true }, { propertyName: "comboBox", first: true, predicate: ComboBoxComponent, descendants: true }, { propertyName: "checkBox", first: true, predicate: CheckBoxComponent, descendants: true }], ngImport: i0, template: `
768
802
  <kendo-label *ngIf="hasLabel && !isLabelInsideFormFieldWrap && inputType !== 'checkbox'" class="k-form-label" [text]="text"></kendo-label>
769
803
  <div class="k-form-field-wrap">
@@ -778,7 +812,7 @@ ChartWizardPropertyPaneFormFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
778
812
  rounded="medium"
779
813
  [value]="value"
780
814
  (valueChange)="valueChange.emit($event)"
781
- placeholder="Auto"
815
+ [placeholder]="placeholder"
782
816
  ></kendo-numerictextbox>
783
817
  <kendo-colorpicker
784
818
  *ngIf="inputType === 'colorPicker'"
@@ -853,7 +887,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
853
887
  rounded="medium"
854
888
  [value]="value"
855
889
  (valueChange)="valueChange.emit($event)"
856
- placeholder="Auto"
890
+ [placeholder]="placeholder"
857
891
  ></kendo-numerictextbox>
858
892
  <kendo-colorpicker
859
893
  *ngIf="inputType === 'colorPicker'"
@@ -921,7 +955,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
921
955
  CheckBoxComponent
922
956
  ]
923
957
  }]
924
- }], ctorParameters: function () { return [{ type: i2$1.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { currentState: [{
958
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { currentState: [{
925
959
  type: Input
926
960
  }], action: [{
927
961
  type: Input
@@ -985,8 +1019,8 @@ class ChartWizardPropertyPaneFormatTabComponent {
985
1019
  this.localization = localization;
986
1020
  this.cdr = cdr;
987
1021
  this.chartTitles = [
988
- { text: 'Chart Title', value: 'Chart Title' },
989
- { text: 'Chart Subtitle', value: 'Chart Subtitle' },
1022
+ { text: this.messageFor('formatTitleChartTitle'), value: 'Chart Title' },
1023
+ { text: this.messageFor('formatTitleChartSubtitle'), value: 'Chart Subtitle' },
990
1024
  ];
991
1025
  this.areaMarginLeft = ActionTypes.areaMarginLeft;
992
1026
  this.areaMarginRight = ActionTypes.areaMarginRight;
@@ -1017,12 +1051,37 @@ class ChartWizardPropertyPaneFormatTabComponent {
1017
1051
  this.valueAxisLabelsColor = ActionTypes.valueAxisLabelsColor;
1018
1052
  this.valueAxisLabelsRotation = ActionTypes.valueAxisLabelsRotation;
1019
1053
  this.parseFont = parseFont;
1020
- this.labelFormats = labelFormats;
1021
1054
  this.defaultAllSeriesItem = defaultAllSeriesItem;
1022
1055
  this.fontNames = fontNames;
1023
1056
  this.fontSizes = fontSizes;
1024
- this.legendPositions = positions;
1025
- this.labelsRotation = rotations;
1057
+ this.labelFormats = [
1058
+ { value: '', text: this.messageFor('formatValueAxisLabelsFormatText') },
1059
+ { value: 'n0', text: this.messageFor('formatValueAxisLabelsFormatNumber') },
1060
+ { value: 'c0', text: this.messageFor('formatValueAxisLabelsFormatCurrency') },
1061
+ { value: 'p0', text: this.messageFor('formatValueAxisLabelsFormatPercent') }
1062
+ ];
1063
+ this.legendPositions = [
1064
+ { text: this.messageFor('formatLegendPositionTop'), value: 'top' },
1065
+ { text: this.messageFor('formatLegendPositionBottom'), value: 'bottom' },
1066
+ { text: this.messageFor('formatLegendPositionLeft'), value: 'left' },
1067
+ { text: this.messageFor('formatLegendPositionRight'), value: 'right' }
1068
+ ];
1069
+ this.labelsCategoryAxisRotation = [
1070
+ { text: this.messageFor('formatCategoryAxisLabelsRotationAuto'), value: 'auto' },
1071
+ { text: '0°', value: 0 },
1072
+ { text: '45°', value: 45 },
1073
+ { text: '90°', value: 90 },
1074
+ { text: '135°', value: 135 },
1075
+ { text: '180°', value: 180 }
1076
+ ];
1077
+ this.labelsValueAxisRotation = [
1078
+ { text: this.messageFor('formatValueAxisLabelsRotationAuto'), value: 'auto' },
1079
+ { text: '0°', value: 0 },
1080
+ { text: '45°', value: 45 },
1081
+ { text: '90°', value: 90 },
1082
+ { text: '135°', value: 135 },
1083
+ { text: '180°', value: 180 }
1084
+ ];
1026
1085
  }
1027
1086
  get chartTitleTypeText() {
1028
1087
  var _a, _b;
@@ -1061,7 +1120,10 @@ class ChartWizardPropertyPaneFormatTabComponent {
1061
1120
  return this.stateService.currentTitle === 'Chart Title' ? ActionTypes.titleFontSize : ActionTypes.subtitleFontSize;
1062
1121
  }
1063
1122
  get seriesData() {
1064
- return [defaultAllSeriesItem, ...this.stateService.state.series];
1123
+ return [
1124
+ { text: this.messageFor('formatSeriesAllSeries'), name: 'All Series' },
1125
+ ...this.stateService.state.series.map(item => (Object.assign({ text: item.name }, item)))
1126
+ ];
1065
1127
  }
1066
1128
  get showLabels() {
1067
1129
  var _a, _b;
@@ -1107,44 +1169,51 @@ class ChartWizardPropertyPaneFormatTabComponent {
1107
1169
  this.stateService.currentSeries.color = value;
1108
1170
  this.updateState(ActionTypes.seriesColor, this.stateService.currentSeries);
1109
1171
  }
1172
+ messageFor(key) {
1173
+ return this.localization.get(key);
1174
+ }
1110
1175
  }
1111
- ChartWizardPropertyPaneFormatTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneFormatTabComponent, deps: [{ token: StateService }, { token: i2$1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1176
+ ChartWizardPropertyPaneFormatTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneFormatTabComponent, deps: [{ token: StateService }, { token: ChartWizardLocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1112
1177
  ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneFormatTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-format-tab", ngImport: i0, template: `
1113
1178
  <section>
1114
1179
  <kendo-expansionpanel
1115
1180
  [style.max-width.px]="576"
1116
- title="Chart Area"
1181
+ [title]="messageFor('formatChartArea')"
1117
1182
  [expanded]="true"
1118
1183
  [attr.dir]="stateService.direction"
1119
1184
  >
1120
1185
  <form class="k-form k-form-md">
1121
1186
  <fieldset class="k-form-fieldset">
1122
- <legend class="k-form-legend">Margins</legend>
1187
+ <legend class="k-form-legend">{{ messageFor('formatChartAreaMargins') }}</legend>
1123
1188
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1124
1189
  <kendo-chartwizard-property-pane-form-field
1125
- text="Left"
1190
+ [text]="messageFor('formatChartAreaMarginsLeft')"
1126
1191
  inputType="numeric"
1192
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1127
1193
  [value]="$any(stateService.state.area.margin).left"
1128
1194
  (valueChange)="updateState(areaMarginLeft, $event)"
1129
1195
  >
1130
1196
  </kendo-chartwizard-property-pane-form-field>
1131
1197
  <kendo-chartwizard-property-pane-form-field
1132
- text="Right"
1198
+ [text]="messageFor('formatChartAreaMarginsRight')"
1133
1199
  inputType="numeric"
1200
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1134
1201
  [value]="$any(stateService.state.area.margin).right"
1135
1202
  (valueChange)="updateState(areaMarginRight, $event)"
1136
1203
  >
1137
1204
  </kendo-chartwizard-property-pane-form-field>
1138
1205
  <kendo-chartwizard-property-pane-form-field
1139
- text="Top"
1206
+ [text]="messageFor('formatChartAreaMarginsTop')"
1140
1207
  inputType="numeric"
1208
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1141
1209
  [value]="$any(stateService.state.area.margin).top"
1142
1210
  (valueChange)="updateState(areaMarginTop, $event)"
1143
1211
  >
1144
1212
  </kendo-chartwizard-property-pane-form-field>
1145
1213
  <kendo-chartwizard-property-pane-form-field
1146
- text="Bottom"
1214
+ [text]="messageFor('formatChartAreaMarginsBottom')"
1147
1215
  inputType="numeric"
1216
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1148
1217
  [value]="$any(stateService.state.area.margin).bottom"
1149
1218
  (valueChange)="updateState(areaMarginBottom, $event)"
1150
1219
  >
@@ -1152,9 +1221,9 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1152
1221
  </div>
1153
1222
  </fieldset>
1154
1223
  <fieldset class="k-form-fieldset">
1155
- <legend class="k-form-legend">Background</legend>
1224
+ <legend class="k-form-legend">{{ messageFor('formatChartAreaBackground') }}</legend>
1156
1225
  <kendo-chartwizard-property-pane-form-field
1157
- text="Color"
1226
+ [text]="messageFor('formatChartAreaBackgroundColor')"
1158
1227
  inputType="colorPicker"
1159
1228
  [value]="stateService.state.area?.background"
1160
1229
  (valueChange)="updateState(areaBackground, $event)"
@@ -1167,13 +1236,13 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1167
1236
  <section>
1168
1237
  <kendo-expansionpanel
1169
1238
  [style.max-width.px]="576"
1170
- title="Title"
1239
+ [title]="messageFor('formatTitle')"
1171
1240
  [expanded]="true"
1172
1241
  >
1173
1242
  <form class="k-form k-form-md">
1174
1243
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1175
1244
  <kendo-chartwizard-property-pane-form-field
1176
- text="Apply to"
1245
+ [text]="messageFor('formatTitleApplyTo')"
1177
1246
  inputType="dropDownList"
1178
1247
  [data]="chartTitles"
1179
1248
  [colSpan]="2"
@@ -1182,7 +1251,7 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1182
1251
  >
1183
1252
  </kendo-chartwizard-property-pane-form-field>
1184
1253
  <kendo-chartwizard-property-pane-form-field
1185
- text="Title"
1254
+ [text]="messageFor('formatTitleLabel')"
1186
1255
  inputType="text"
1187
1256
  [colSpan]="2"
1188
1257
  [value]="chartTitleTypeText"
@@ -1190,26 +1259,26 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1190
1259
  >
1191
1260
  </kendo-chartwizard-property-pane-form-field>
1192
1261
  <kendo-chartwizard-property-pane-form-field
1193
- text="Font"
1262
+ [text]="messageFor('formatTitleFont')"
1194
1263
  inputType="comboBox"
1195
1264
  [data]="fontNames"
1196
1265
  [colSpan]="2"
1197
1266
  [value]="chartTitleTypeFont"
1198
- placeholder="(Inherited font)"
1267
+ [placeholder]="messageFor('formatTitleFontPlaceholder')"
1199
1268
  (valueChange)="updateState(chartTitleTypeFontAction, $event)"
1200
1269
  >
1201
1270
  </kendo-chartwizard-property-pane-form-field>
1202
1271
  <kendo-chartwizard-property-pane-form-field
1203
- text="Size"
1272
+ [text]="messageFor('formatTitleSize')"
1204
1273
  inputType="comboBox"
1205
- placeholder="px"
1274
+ [placeholder]="messageFor('formatTitleSizePlaceholder')"
1206
1275
  [data]="fontSizes"
1207
1276
  [value]="chartTitleTypeFontSize"
1208
1277
  (valueChange)="updateState(chartTitleTypeFontSizeAction, $event)"
1209
1278
  >
1210
1279
  </kendo-chartwizard-property-pane-form-field>
1211
1280
  <kendo-chartwizard-property-pane-form-field
1212
- text="Color"
1281
+ [text]="messageFor('formatTitleColor')"
1213
1282
  inputType="colorPicker"
1214
1283
  [value]="chartTitleTypeColor"
1215
1284
  (valueChange)="updateState(chartTitleTypeColorAction, $event)"
@@ -1222,12 +1291,12 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1222
1291
  <section>
1223
1292
  <kendo-expansionpanel
1224
1293
  [style.max-width.px]="576"
1225
- title="Legend"
1294
+ [title]="messageFor('formatLegend')"
1226
1295
  [expanded]="true"
1227
1296
  >
1228
1297
  <form class="k-form k-form-md">
1229
1298
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1230
- <kendo-label [for]="toggleLegend" text="Show Legend"></kendo-label>
1299
+ <kendo-label [for]="toggleLegend" [text]="messageFor('formatLegendShowLegend')"></kendo-label>
1231
1300
  <kendo-switch
1232
1301
  #toggleLegend
1233
1302
  onLabel="On"
@@ -1238,33 +1307,33 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1238
1307
  (valueChange)="updateState(legendVisible, $event)"
1239
1308
  ></kendo-switch>
1240
1309
  <kendo-chartwizard-property-pane-form-field
1241
- text="Font"
1310
+ [text]="messageFor('formatLegendFont')"
1242
1311
  inputType="comboBox"
1243
1312
  [data]="fontNames"
1244
1313
  [colSpan]="2"
1245
- placeholder="(Inherited font)"
1314
+ [placeholder]="messageFor('formatLegendFontPlaceholder')"
1246
1315
  [value]="parseFont(stateService.state.legend?.labels?.font).name"
1247
1316
  (valueChange)="updateState(legendFontName, $event)"
1248
1317
  >
1249
1318
  </kendo-chartwizard-property-pane-form-field>
1250
1319
  <kendo-chartwizard-property-pane-form-field
1251
- text="Size"
1320
+ [text]="messageFor('formatLegendSize')"
1252
1321
  inputType="comboBox"
1253
1322
  [data]="fontSizes"
1254
- placeholder="px"
1323
+ [placeholder]="messageFor('formatLegendSizePlaceholder')"
1255
1324
  [value]="parseFont(stateService.state.legend?.labels?.font).size"
1256
1325
  (valueChange)="updateState(legendFontSize, $event)"
1257
1326
  >
1258
1327
  </kendo-chartwizard-property-pane-form-field>
1259
1328
  <kendo-chartwizard-property-pane-form-field
1260
- text="Color"
1329
+ [text]="messageFor('formatLegendColor')"
1261
1330
  inputType="colorPicker"
1262
1331
  [value]="stateService.state.legend?.labels?.color"
1263
1332
  (valueChange)="updateState(legendColor, $event)"
1264
1333
  >
1265
1334
  </kendo-chartwizard-property-pane-form-field>
1266
1335
  <kendo-chartwizard-property-pane-form-field
1267
- text="Position"
1336
+ [text]="messageFor('formatLegendPosition')"
1268
1337
  inputType="dropDownList"
1269
1338
  [colSpan]="2"
1270
1339
  [data]="legendPositions"
@@ -1279,17 +1348,17 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1279
1348
  <section>
1280
1349
  <kendo-expansionpanel
1281
1350
  [style.max-width.px]="576"
1282
- title="Series"
1351
+ [title]="messageFor('formatSeries')"
1283
1352
  [expanded]="true"
1284
1353
  >
1285
1354
  <form class="k-form k-form-md">
1286
1355
  <div class="k-form-field">
1287
- <kendo-label [for]="seriesDropDown" class="k-form-label" text="Apply to"></kendo-label>
1356
+ <kendo-label [for]="seriesDropDown" class="k-form-label" [text]="messageFor('formatSeriesApplyTo')"></kendo-label>
1288
1357
  <div class="k-form-field-wrap">
1289
1358
  <kendo-dropdownlist
1290
1359
  #seriesDropDown
1291
1360
  [data]="seriesData"
1292
- textField="name"
1361
+ textField="text"
1293
1362
  valueField="name"
1294
1363
  fillMode="outline"
1295
1364
  rounded="medium"
@@ -1301,7 +1370,7 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1301
1370
  </div>
1302
1371
 
1303
1372
  <kendo-chartwizard-property-pane-form-field
1304
- text="Color"
1373
+ [text]="messageFor('formatSeriesColor')"
1305
1374
  [value]="stateService.currentSeries?.color"
1306
1375
  inputType="colorPicker"
1307
1376
  [disabled]="stateService.currentSeries.name === defaultAllSeriesItem.name"
@@ -1309,7 +1378,7 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1309
1378
  >
1310
1379
  </kendo-chartwizard-property-pane-form-field>
1311
1380
  <kendo-chartwizard-property-pane-form-field
1312
- text="Show Labels"
1381
+ [text]="messageFor('formatSeriesShowLabels')"
1313
1382
  [value]="showLabels"
1314
1383
  [isLabelInsideFormFieldWrap]="true"
1315
1384
  [colSpan]="2"
@@ -1323,43 +1392,43 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1323
1392
  <section *ngIf="stateService.state.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-3">
1324
1393
  <kendo-expansionpanel
1325
1394
  [style.max-width.px]="576"
1326
- [title]="stateService.state.seriesType === 'scatter' ? 'X Axis' : 'Category axis'"
1395
+ [title]="stateService.state.seriesType === 'scatter' ? messageFor('formatXAxis') : messageFor('formatCategoryAxis')"
1327
1396
  [expanded]="true"
1328
1397
  >
1329
1398
  <form class="k-form k-form-md">
1330
1399
  <fieldset class="k-form-fieldset">
1331
- <legend class="k-form-legend">Title</legend>
1400
+ <legend class="k-form-legend">{{ messageFor('formatCategoryAxisTitle') }}</legend>
1332
1401
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1333
1402
  <kendo-chartwizard-property-pane-form-field
1334
1403
  inputType="text"
1335
1404
  [hasLabel]="false"
1336
1405
  [colSpan]="2"
1337
- placeholder="Axis Title"
1406
+ [placeholder]="messageFor('formatCategoryAxisTitlePlaceholder')"
1338
1407
  [value]="stateService.state.categoryAxis[0]?.title?.text || null"
1339
1408
  (valueChange)="updateState(categoryAxisTitleText, $event)"
1340
1409
  >
1341
1410
  </kendo-chartwizard-property-pane-form-field>
1342
1411
  <kendo-chartwizard-property-pane-form-field
1343
- text="Font"
1412
+ [text]="messageFor('formatCategoryAxisTitleFont')"
1344
1413
  inputType="comboBox"
1345
1414
  [data]="fontNames"
1346
1415
  [colSpan]="2"
1347
- placeholder="(Inherited font)"
1416
+ [placeholder]="messageFor('formatCategoryAxisTitleFontPlaceholder')"
1348
1417
  [value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).name"
1349
1418
  (valueChange)="updateState(categoryAxisTitleFontName, $event)"
1350
1419
  >
1351
1420
  </kendo-chartwizard-property-pane-form-field>
1352
1421
  <kendo-chartwizard-property-pane-form-field
1353
- text="Size"
1422
+ [text]="messageFor('formatCategoryAxisTitleSize')"
1354
1423
  inputType="comboBox"
1355
- placeholder="px"
1424
+ [placeholder]="messageFor('formatCategoryAxisTitleSizePlaceholder')"
1356
1425
  [data]="fontSizes"
1357
1426
  [value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).size"
1358
1427
  (valueChange)="updateState(categoryAxisTitleFontSize, $event)"
1359
1428
  >
1360
1429
  </kendo-chartwizard-property-pane-form-field>
1361
1430
  <kendo-chartwizard-property-pane-form-field
1362
- text="Color"
1431
+ [text]="messageFor('formatCategoryAxisTitleColor')"
1363
1432
  inputType="colorPicker"
1364
1433
  [value]="stateService.state.categoryAxis[0]?.title?.color"
1365
1434
  (valueChange)="updateState(categoryAxisTitleColor, $event)"
@@ -1368,45 +1437,45 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1368
1437
  </div>
1369
1438
  </fieldset>
1370
1439
  <fieldset class="k-form-fieldset">
1371
- <legend class="k-form-legend">Labels</legend>
1440
+ <legend class="k-form-legend">{{ messageFor('formatCategoryAxisLabels') }}</legend>
1372
1441
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1373
1442
  <kendo-chartwizard-property-pane-form-field
1374
- text="Font"
1443
+ [text]="messageFor('formatCategoryAxisLabelsFont')"
1375
1444
  inputType="comboBox"
1376
1445
  [data]="fontNames"
1377
1446
  [colSpan]="2"
1378
- placeholder="(Inherited font)"
1447
+ [placeholder]="messageFor('formatCategoryAxisLabelsFontPlaceholder')"
1379
1448
  [value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).name"
1380
1449
  (valueChange)="updateState(categoryAxisLabelsFontName, $event)"
1381
1450
  >
1382
1451
  </kendo-chartwizard-property-pane-form-field>
1383
1452
  <kendo-chartwizard-property-pane-form-field
1384
- text="Size"
1453
+ [text]="messageFor('formatCategoryAxisLabelsSize')"
1385
1454
  inputType="comboBox"
1386
1455
  [data]="fontSizes"
1387
- placeholder="px"
1456
+ [placeholder]="messageFor('formatCategoryAxisLabelsSizePlaceholder')"
1388
1457
  [value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).size"
1389
1458
  (valueChange)="updateState(categoryAxisLabelsFontSize, $event)"
1390
1459
  >
1391
1460
  </kendo-chartwizard-property-pane-form-field>
1392
1461
  <kendo-chartwizard-property-pane-form-field
1393
- text="Color"
1462
+ [text]="messageFor('formatCategoryAxisLabelsColor')"
1394
1463
  inputType="colorPicker"
1395
1464
  [value]="stateService.state.categoryAxis[0]?.labels?.color"
1396
1465
  (valueChange)="updateState(categoryAxisLabelsColor, $event)"
1397
1466
  >
1398
1467
  </kendo-chartwizard-property-pane-form-field>
1399
1468
  <kendo-chartwizard-property-pane-form-field
1400
- text="Rotation"
1469
+ [text]="messageFor('formatCategoryAxisLabelsRotation')"
1401
1470
  inputType="dropDownList"
1402
- [data]="labelsRotation"
1471
+ [data]="labelsCategoryAxisRotation"
1403
1472
  [value]="stateService.state.categoryAxis[0]?.labels?.rotation"
1404
1473
  (valueChange)="updateState(categoryAxisLabelsRotation, $event)"
1405
1474
  >
1406
1475
  </kendo-chartwizard-property-pane-form-field>
1407
1476
  <span></span>
1408
1477
  <kendo-chartwizard-property-pane-form-field
1409
- text="Reverse Order"
1478
+ [text]="messageFor('formatCategoryAxisLabelsReverseOrder')"
1410
1479
  [isLabelInsideFormFieldWrap]="true"
1411
1480
  inputType="checkbox"
1412
1481
  [colSpan]="2"
@@ -1422,43 +1491,43 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1422
1491
  <section *ngIf="stateService.state.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-4">
1423
1492
  <kendo-expansionpanel
1424
1493
  [style.max-width.px]="576"
1425
- [title]="stateService.state.seriesType === 'scatter' ? 'Y Axis' : 'Value axis'"
1494
+ [title]="stateService.state.seriesType === 'scatter' ? messageFor('formatYAxis') : messageFor('formatValueAxis')"
1426
1495
  [expanded]="true"
1427
1496
  >
1428
1497
  <form class="k-form k-form-md">
1429
1498
  <fieldset class="k-form-fieldset">
1430
- <legend class="k-form-legend">Title</legend>
1499
+ <legend class="k-form-legend">{{ messageFor('formatValueAxisTitle') }}</legend>
1431
1500
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1432
1501
  <kendo-chartwizard-property-pane-form-field
1433
1502
  inputType="text"
1434
1503
  [hasLabel]="false"
1435
1504
  [colSpan]="2"
1436
- placeholder="Axis Title"
1505
+ [placeholder]="messageFor('formatValueAxisTitlePlaceholder')"
1437
1506
  [value]="stateService.state.valueAxis[0]?.title?.text || null"
1438
1507
  (valueChange)="updateState(valueAxisTitleText, $event)"
1439
1508
  >
1440
1509
  </kendo-chartwizard-property-pane-form-field>
1441
1510
  <kendo-chartwizard-property-pane-form-field
1442
- text="Font"
1511
+ [text]="messageFor('formatValueAxisTitleFont')"
1443
1512
  inputType="comboBox"
1444
1513
  [colSpan]="2"
1445
1514
  [data]="fontNames"
1446
- placeholder="(Inherited font)"
1515
+ [placeholder]="messageFor('formatValueAxisTitleFontPlaceholder')"
1447
1516
  [value]="parseFont(stateService.state.valueAxis[0]?.title?.font).name"
1448
1517
  (valueChange)="updateState(valueAxisTitleFontName, $event)"
1449
1518
  >
1450
1519
  </kendo-chartwizard-property-pane-form-field>
1451
1520
  <kendo-chartwizard-property-pane-form-field
1452
- text="Size"
1521
+ [text]="messageFor('formatValueAxisTitleSize')"
1453
1522
  inputType="comboBox"
1454
- placeholder="px"
1523
+ [placeholder]="messageFor('formatValueAxisTitleSizePlaceholder')"
1455
1524
  [data]="fontSizes"
1456
1525
  [value]="parseFont(stateService.state.valueAxis[0]?.title?.font).size"
1457
1526
  (valueChange)="updateState(valueAxisTitleFontSize, $event)"
1458
1527
  >
1459
1528
  </kendo-chartwizard-property-pane-form-field>
1460
1529
  <kendo-chartwizard-property-pane-form-field
1461
- text="Color"
1530
+ [text]="messageFor('formatValueAxisTitleColor')"
1462
1531
  inputType="colorPicker"
1463
1532
  [value]="stateService.state.valueAxis[0]?.title?.color"
1464
1533
  (valueChange)="updateState(valueAxisTitleColor, $event)"
@@ -1467,10 +1536,10 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1467
1536
  </div>
1468
1537
  </fieldset>
1469
1538
  <fieldset class="k-form-fieldset">
1470
- <legend class="k-form-legend">Labels</legend>
1539
+ <legend class="k-form-legend">{{ messageFor('formatValueAxisLabels') }}</legend>
1471
1540
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1472
1541
  <kendo-chartwizard-property-pane-form-field
1473
- text="Label Format"
1542
+ [text]="messageFor('formatValueAxisLabelsFormat')"
1474
1543
  [colSpan]="2"
1475
1544
  inputType="dropDownList"
1476
1545
  [data]="labelFormats"
@@ -1479,35 +1548,35 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
1479
1548
  >
1480
1549
  </kendo-chartwizard-property-pane-form-field>
1481
1550
  <kendo-chartwizard-property-pane-form-field
1482
- text="Font"
1551
+ [text]="messageFor('formatValueAxisLabelsFont')"
1483
1552
  inputType="comboBox"
1484
1553
  [data]="fontNames"
1485
1554
  [colSpan]="2"
1486
- placeholder="(Inherited font)"
1555
+ [placeholder]="messageFor('formatValueAxisLabelsFontPlaceholder')"
1487
1556
  [value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).name"
1488
1557
  (valueChange)="updateState(valueAxisLabelsFontName, $event)"
1489
1558
  >
1490
1559
  </kendo-chartwizard-property-pane-form-field>
1491
1560
  <kendo-chartwizard-property-pane-form-field
1492
- text="Size"
1561
+ [text]="messageFor('formatValueAxisLabelsSize')"
1493
1562
  inputType="comboBox"
1494
1563
  [data]="fontSizes"
1495
- placeholder="px"
1564
+ [placeholder]="messageFor('formatValueAxisLabelsSizePlaceholder')"
1496
1565
  [value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).size"
1497
1566
  (valueChange)="updateState(valueAxisLabelsFontSize, $event)"
1498
1567
  >
1499
1568
  </kendo-chartwizard-property-pane-form-field>
1500
1569
  <kendo-chartwizard-property-pane-form-field
1501
- text="Color"
1570
+ [text]="messageFor('formatValueAxisLabelsColor')"
1502
1571
  inputType="colorPicker"
1503
1572
  [value]="stateService.state.valueAxis[0]?.labels?.color"
1504
1573
  (valueChange)="updateState(valueAxisLabelsColor, $event)"
1505
1574
  >
1506
1575
  </kendo-chartwizard-property-pane-form-field>
1507
1576
  <kendo-chartwizard-property-pane-form-field
1508
- text="Rotation"
1577
+ [text]="messageFor('formatValueAxisLabelsRotation')"
1509
1578
  inputType="dropDownList"
1510
- [data]="labelsRotation"
1579
+ [data]="labelsValueAxisRotation"
1511
1580
  [value]="stateService.state.valueAxis[0]?.labels?.rotation"
1512
1581
  (valueChange)="updateState(valueAxisLabelsRotation, $event)"
1513
1582
  >
@@ -1527,38 +1596,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1527
1596
  <section>
1528
1597
  <kendo-expansionpanel
1529
1598
  [style.max-width.px]="576"
1530
- title="Chart Area"
1599
+ [title]="messageFor('formatChartArea')"
1531
1600
  [expanded]="true"
1532
1601
  [attr.dir]="stateService.direction"
1533
1602
  >
1534
1603
  <form class="k-form k-form-md">
1535
1604
  <fieldset class="k-form-fieldset">
1536
- <legend class="k-form-legend">Margins</legend>
1605
+ <legend class="k-form-legend">{{ messageFor('formatChartAreaMargins') }}</legend>
1537
1606
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1538
1607
  <kendo-chartwizard-property-pane-form-field
1539
- text="Left"
1608
+ [text]="messageFor('formatChartAreaMarginsLeft')"
1540
1609
  inputType="numeric"
1610
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1541
1611
  [value]="$any(stateService.state.area.margin).left"
1542
1612
  (valueChange)="updateState(areaMarginLeft, $event)"
1543
1613
  >
1544
1614
  </kendo-chartwizard-property-pane-form-field>
1545
1615
  <kendo-chartwizard-property-pane-form-field
1546
- text="Right"
1616
+ [text]="messageFor('formatChartAreaMarginsRight')"
1547
1617
  inputType="numeric"
1618
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1548
1619
  [value]="$any(stateService.state.area.margin).right"
1549
1620
  (valueChange)="updateState(areaMarginRight, $event)"
1550
1621
  >
1551
1622
  </kendo-chartwizard-property-pane-form-field>
1552
1623
  <kendo-chartwizard-property-pane-form-field
1553
- text="Top"
1624
+ [text]="messageFor('formatChartAreaMarginsTop')"
1554
1625
  inputType="numeric"
1626
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1555
1627
  [value]="$any(stateService.state.area.margin).top"
1556
1628
  (valueChange)="updateState(areaMarginTop, $event)"
1557
1629
  >
1558
1630
  </kendo-chartwizard-property-pane-form-field>
1559
1631
  <kendo-chartwizard-property-pane-form-field
1560
- text="Bottom"
1632
+ [text]="messageFor('formatChartAreaMarginsBottom')"
1561
1633
  inputType="numeric"
1634
+ [placeholder]="messageFor('formatChartAreaMarginsAuto')"
1562
1635
  [value]="$any(stateService.state.area.margin).bottom"
1563
1636
  (valueChange)="updateState(areaMarginBottom, $event)"
1564
1637
  >
@@ -1566,9 +1639,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1566
1639
  </div>
1567
1640
  </fieldset>
1568
1641
  <fieldset class="k-form-fieldset">
1569
- <legend class="k-form-legend">Background</legend>
1642
+ <legend class="k-form-legend">{{ messageFor('formatChartAreaBackground') }}</legend>
1570
1643
  <kendo-chartwizard-property-pane-form-field
1571
- text="Color"
1644
+ [text]="messageFor('formatChartAreaBackgroundColor')"
1572
1645
  inputType="colorPicker"
1573
1646
  [value]="stateService.state.area?.background"
1574
1647
  (valueChange)="updateState(areaBackground, $event)"
@@ -1581,13 +1654,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1581
1654
  <section>
1582
1655
  <kendo-expansionpanel
1583
1656
  [style.max-width.px]="576"
1584
- title="Title"
1657
+ [title]="messageFor('formatTitle')"
1585
1658
  [expanded]="true"
1586
1659
  >
1587
1660
  <form class="k-form k-form-md">
1588
1661
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1589
1662
  <kendo-chartwizard-property-pane-form-field
1590
- text="Apply to"
1663
+ [text]="messageFor('formatTitleApplyTo')"
1591
1664
  inputType="dropDownList"
1592
1665
  [data]="chartTitles"
1593
1666
  [colSpan]="2"
@@ -1596,7 +1669,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1596
1669
  >
1597
1670
  </kendo-chartwizard-property-pane-form-field>
1598
1671
  <kendo-chartwizard-property-pane-form-field
1599
- text="Title"
1672
+ [text]="messageFor('formatTitleLabel')"
1600
1673
  inputType="text"
1601
1674
  [colSpan]="2"
1602
1675
  [value]="chartTitleTypeText"
@@ -1604,26 +1677,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1604
1677
  >
1605
1678
  </kendo-chartwizard-property-pane-form-field>
1606
1679
  <kendo-chartwizard-property-pane-form-field
1607
- text="Font"
1680
+ [text]="messageFor('formatTitleFont')"
1608
1681
  inputType="comboBox"
1609
1682
  [data]="fontNames"
1610
1683
  [colSpan]="2"
1611
1684
  [value]="chartTitleTypeFont"
1612
- placeholder="(Inherited font)"
1685
+ [placeholder]="messageFor('formatTitleFontPlaceholder')"
1613
1686
  (valueChange)="updateState(chartTitleTypeFontAction, $event)"
1614
1687
  >
1615
1688
  </kendo-chartwizard-property-pane-form-field>
1616
1689
  <kendo-chartwizard-property-pane-form-field
1617
- text="Size"
1690
+ [text]="messageFor('formatTitleSize')"
1618
1691
  inputType="comboBox"
1619
- placeholder="px"
1692
+ [placeholder]="messageFor('formatTitleSizePlaceholder')"
1620
1693
  [data]="fontSizes"
1621
1694
  [value]="chartTitleTypeFontSize"
1622
1695
  (valueChange)="updateState(chartTitleTypeFontSizeAction, $event)"
1623
1696
  >
1624
1697
  </kendo-chartwizard-property-pane-form-field>
1625
1698
  <kendo-chartwizard-property-pane-form-field
1626
- text="Color"
1699
+ [text]="messageFor('formatTitleColor')"
1627
1700
  inputType="colorPicker"
1628
1701
  [value]="chartTitleTypeColor"
1629
1702
  (valueChange)="updateState(chartTitleTypeColorAction, $event)"
@@ -1636,12 +1709,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1636
1709
  <section>
1637
1710
  <kendo-expansionpanel
1638
1711
  [style.max-width.px]="576"
1639
- title="Legend"
1712
+ [title]="messageFor('formatLegend')"
1640
1713
  [expanded]="true"
1641
1714
  >
1642
1715
  <form class="k-form k-form-md">
1643
1716
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1644
- <kendo-label [for]="toggleLegend" text="Show Legend"></kendo-label>
1717
+ <kendo-label [for]="toggleLegend" [text]="messageFor('formatLegendShowLegend')"></kendo-label>
1645
1718
  <kendo-switch
1646
1719
  #toggleLegend
1647
1720
  onLabel="On"
@@ -1652,33 +1725,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1652
1725
  (valueChange)="updateState(legendVisible, $event)"
1653
1726
  ></kendo-switch>
1654
1727
  <kendo-chartwizard-property-pane-form-field
1655
- text="Font"
1728
+ [text]="messageFor('formatLegendFont')"
1656
1729
  inputType="comboBox"
1657
1730
  [data]="fontNames"
1658
1731
  [colSpan]="2"
1659
- placeholder="(Inherited font)"
1732
+ [placeholder]="messageFor('formatLegendFontPlaceholder')"
1660
1733
  [value]="parseFont(stateService.state.legend?.labels?.font).name"
1661
1734
  (valueChange)="updateState(legendFontName, $event)"
1662
1735
  >
1663
1736
  </kendo-chartwizard-property-pane-form-field>
1664
1737
  <kendo-chartwizard-property-pane-form-field
1665
- text="Size"
1738
+ [text]="messageFor('formatLegendSize')"
1666
1739
  inputType="comboBox"
1667
1740
  [data]="fontSizes"
1668
- placeholder="px"
1741
+ [placeholder]="messageFor('formatLegendSizePlaceholder')"
1669
1742
  [value]="parseFont(stateService.state.legend?.labels?.font).size"
1670
1743
  (valueChange)="updateState(legendFontSize, $event)"
1671
1744
  >
1672
1745
  </kendo-chartwizard-property-pane-form-field>
1673
1746
  <kendo-chartwizard-property-pane-form-field
1674
- text="Color"
1747
+ [text]="messageFor('formatLegendColor')"
1675
1748
  inputType="colorPicker"
1676
1749
  [value]="stateService.state.legend?.labels?.color"
1677
1750
  (valueChange)="updateState(legendColor, $event)"
1678
1751
  >
1679
1752
  </kendo-chartwizard-property-pane-form-field>
1680
1753
  <kendo-chartwizard-property-pane-form-field
1681
- text="Position"
1754
+ [text]="messageFor('formatLegendPosition')"
1682
1755
  inputType="dropDownList"
1683
1756
  [colSpan]="2"
1684
1757
  [data]="legendPositions"
@@ -1693,17 +1766,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1693
1766
  <section>
1694
1767
  <kendo-expansionpanel
1695
1768
  [style.max-width.px]="576"
1696
- title="Series"
1769
+ [title]="messageFor('formatSeries')"
1697
1770
  [expanded]="true"
1698
1771
  >
1699
1772
  <form class="k-form k-form-md">
1700
1773
  <div class="k-form-field">
1701
- <kendo-label [for]="seriesDropDown" class="k-form-label" text="Apply to"></kendo-label>
1774
+ <kendo-label [for]="seriesDropDown" class="k-form-label" [text]="messageFor('formatSeriesApplyTo')"></kendo-label>
1702
1775
  <div class="k-form-field-wrap">
1703
1776
  <kendo-dropdownlist
1704
1777
  #seriesDropDown
1705
1778
  [data]="seriesData"
1706
- textField="name"
1779
+ textField="text"
1707
1780
  valueField="name"
1708
1781
  fillMode="outline"
1709
1782
  rounded="medium"
@@ -1715,7 +1788,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1715
1788
  </div>
1716
1789
 
1717
1790
  <kendo-chartwizard-property-pane-form-field
1718
- text="Color"
1791
+ [text]="messageFor('formatSeriesColor')"
1719
1792
  [value]="stateService.currentSeries?.color"
1720
1793
  inputType="colorPicker"
1721
1794
  [disabled]="stateService.currentSeries.name === defaultAllSeriesItem.name"
@@ -1723,7 +1796,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1723
1796
  >
1724
1797
  </kendo-chartwizard-property-pane-form-field>
1725
1798
  <kendo-chartwizard-property-pane-form-field
1726
- text="Show Labels"
1799
+ [text]="messageFor('formatSeriesShowLabels')"
1727
1800
  [value]="showLabels"
1728
1801
  [isLabelInsideFormFieldWrap]="true"
1729
1802
  [colSpan]="2"
@@ -1737,43 +1810,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1737
1810
  <section *ngIf="stateService.state.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-3">
1738
1811
  <kendo-expansionpanel
1739
1812
  [style.max-width.px]="576"
1740
- [title]="stateService.state.seriesType === 'scatter' ? 'X Axis' : 'Category axis'"
1813
+ [title]="stateService.state.seriesType === 'scatter' ? messageFor('formatXAxis') : messageFor('formatCategoryAxis')"
1741
1814
  [expanded]="true"
1742
1815
  >
1743
1816
  <form class="k-form k-form-md">
1744
1817
  <fieldset class="k-form-fieldset">
1745
- <legend class="k-form-legend">Title</legend>
1818
+ <legend class="k-form-legend">{{ messageFor('formatCategoryAxisTitle') }}</legend>
1746
1819
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1747
1820
  <kendo-chartwizard-property-pane-form-field
1748
1821
  inputType="text"
1749
1822
  [hasLabel]="false"
1750
1823
  [colSpan]="2"
1751
- placeholder="Axis Title"
1824
+ [placeholder]="messageFor('formatCategoryAxisTitlePlaceholder')"
1752
1825
  [value]="stateService.state.categoryAxis[0]?.title?.text || null"
1753
1826
  (valueChange)="updateState(categoryAxisTitleText, $event)"
1754
1827
  >
1755
1828
  </kendo-chartwizard-property-pane-form-field>
1756
1829
  <kendo-chartwizard-property-pane-form-field
1757
- text="Font"
1830
+ [text]="messageFor('formatCategoryAxisTitleFont')"
1758
1831
  inputType="comboBox"
1759
1832
  [data]="fontNames"
1760
1833
  [colSpan]="2"
1761
- placeholder="(Inherited font)"
1834
+ [placeholder]="messageFor('formatCategoryAxisTitleFontPlaceholder')"
1762
1835
  [value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).name"
1763
1836
  (valueChange)="updateState(categoryAxisTitleFontName, $event)"
1764
1837
  >
1765
1838
  </kendo-chartwizard-property-pane-form-field>
1766
1839
  <kendo-chartwizard-property-pane-form-field
1767
- text="Size"
1840
+ [text]="messageFor('formatCategoryAxisTitleSize')"
1768
1841
  inputType="comboBox"
1769
- placeholder="px"
1842
+ [placeholder]="messageFor('formatCategoryAxisTitleSizePlaceholder')"
1770
1843
  [data]="fontSizes"
1771
1844
  [value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).size"
1772
1845
  (valueChange)="updateState(categoryAxisTitleFontSize, $event)"
1773
1846
  >
1774
1847
  </kendo-chartwizard-property-pane-form-field>
1775
1848
  <kendo-chartwizard-property-pane-form-field
1776
- text="Color"
1849
+ [text]="messageFor('formatCategoryAxisTitleColor')"
1777
1850
  inputType="colorPicker"
1778
1851
  [value]="stateService.state.categoryAxis[0]?.title?.color"
1779
1852
  (valueChange)="updateState(categoryAxisTitleColor, $event)"
@@ -1782,45 +1855,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1782
1855
  </div>
1783
1856
  </fieldset>
1784
1857
  <fieldset class="k-form-fieldset">
1785
- <legend class="k-form-legend">Labels</legend>
1858
+ <legend class="k-form-legend">{{ messageFor('formatCategoryAxisLabels') }}</legend>
1786
1859
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1787
1860
  <kendo-chartwizard-property-pane-form-field
1788
- text="Font"
1861
+ [text]="messageFor('formatCategoryAxisLabelsFont')"
1789
1862
  inputType="comboBox"
1790
1863
  [data]="fontNames"
1791
1864
  [colSpan]="2"
1792
- placeholder="(Inherited font)"
1865
+ [placeholder]="messageFor('formatCategoryAxisLabelsFontPlaceholder')"
1793
1866
  [value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).name"
1794
1867
  (valueChange)="updateState(categoryAxisLabelsFontName, $event)"
1795
1868
  >
1796
1869
  </kendo-chartwizard-property-pane-form-field>
1797
1870
  <kendo-chartwizard-property-pane-form-field
1798
- text="Size"
1871
+ [text]="messageFor('formatCategoryAxisLabelsSize')"
1799
1872
  inputType="comboBox"
1800
1873
  [data]="fontSizes"
1801
- placeholder="px"
1874
+ [placeholder]="messageFor('formatCategoryAxisLabelsSizePlaceholder')"
1802
1875
  [value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).size"
1803
1876
  (valueChange)="updateState(categoryAxisLabelsFontSize, $event)"
1804
1877
  >
1805
1878
  </kendo-chartwizard-property-pane-form-field>
1806
1879
  <kendo-chartwizard-property-pane-form-field
1807
- text="Color"
1880
+ [text]="messageFor('formatCategoryAxisLabelsColor')"
1808
1881
  inputType="colorPicker"
1809
1882
  [value]="stateService.state.categoryAxis[0]?.labels?.color"
1810
1883
  (valueChange)="updateState(categoryAxisLabelsColor, $event)"
1811
1884
  >
1812
1885
  </kendo-chartwizard-property-pane-form-field>
1813
1886
  <kendo-chartwizard-property-pane-form-field
1814
- text="Rotation"
1887
+ [text]="messageFor('formatCategoryAxisLabelsRotation')"
1815
1888
  inputType="dropDownList"
1816
- [data]="labelsRotation"
1889
+ [data]="labelsCategoryAxisRotation"
1817
1890
  [value]="stateService.state.categoryAxis[0]?.labels?.rotation"
1818
1891
  (valueChange)="updateState(categoryAxisLabelsRotation, $event)"
1819
1892
  >
1820
1893
  </kendo-chartwizard-property-pane-form-field>
1821
1894
  <span></span>
1822
1895
  <kendo-chartwizard-property-pane-form-field
1823
- text="Reverse Order"
1896
+ [text]="messageFor('formatCategoryAxisLabelsReverseOrder')"
1824
1897
  [isLabelInsideFormFieldWrap]="true"
1825
1898
  inputType="checkbox"
1826
1899
  [colSpan]="2"
@@ -1836,43 +1909,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1836
1909
  <section *ngIf="stateService.state.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-4">
1837
1910
  <kendo-expansionpanel
1838
1911
  [style.max-width.px]="576"
1839
- [title]="stateService.state.seriesType === 'scatter' ? 'Y Axis' : 'Value axis'"
1912
+ [title]="stateService.state.seriesType === 'scatter' ? messageFor('formatYAxis') : messageFor('formatValueAxis')"
1840
1913
  [expanded]="true"
1841
1914
  >
1842
1915
  <form class="k-form k-form-md">
1843
1916
  <fieldset class="k-form-fieldset">
1844
- <legend class="k-form-legend">Title</legend>
1917
+ <legend class="k-form-legend">{{ messageFor('formatValueAxisTitle') }}</legend>
1845
1918
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1846
1919
  <kendo-chartwizard-property-pane-form-field
1847
1920
  inputType="text"
1848
1921
  [hasLabel]="false"
1849
1922
  [colSpan]="2"
1850
- placeholder="Axis Title"
1923
+ [placeholder]="messageFor('formatValueAxisTitlePlaceholder')"
1851
1924
  [value]="stateService.state.valueAxis[0]?.title?.text || null"
1852
1925
  (valueChange)="updateState(valueAxisTitleText, $event)"
1853
1926
  >
1854
1927
  </kendo-chartwizard-property-pane-form-field>
1855
1928
  <kendo-chartwizard-property-pane-form-field
1856
- text="Font"
1929
+ [text]="messageFor('formatValueAxisTitleFont')"
1857
1930
  inputType="comboBox"
1858
1931
  [colSpan]="2"
1859
1932
  [data]="fontNames"
1860
- placeholder="(Inherited font)"
1933
+ [placeholder]="messageFor('formatValueAxisTitleFontPlaceholder')"
1861
1934
  [value]="parseFont(stateService.state.valueAxis[0]?.title?.font).name"
1862
1935
  (valueChange)="updateState(valueAxisTitleFontName, $event)"
1863
1936
  >
1864
1937
  </kendo-chartwizard-property-pane-form-field>
1865
1938
  <kendo-chartwizard-property-pane-form-field
1866
- text="Size"
1939
+ [text]="messageFor('formatValueAxisTitleSize')"
1867
1940
  inputType="comboBox"
1868
- placeholder="px"
1941
+ [placeholder]="messageFor('formatValueAxisTitleSizePlaceholder')"
1869
1942
  [data]="fontSizes"
1870
1943
  [value]="parseFont(stateService.state.valueAxis[0]?.title?.font).size"
1871
1944
  (valueChange)="updateState(valueAxisTitleFontSize, $event)"
1872
1945
  >
1873
1946
  </kendo-chartwizard-property-pane-form-field>
1874
1947
  <kendo-chartwizard-property-pane-form-field
1875
- text="Color"
1948
+ [text]="messageFor('formatValueAxisTitleColor')"
1876
1949
  inputType="colorPicker"
1877
1950
  [value]="stateService.state.valueAxis[0]?.title?.color"
1878
1951
  (valueChange)="updateState(valueAxisTitleColor, $event)"
@@ -1881,10 +1954,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1881
1954
  </div>
1882
1955
  </fieldset>
1883
1956
  <fieldset class="k-form-fieldset">
1884
- <legend class="k-form-legend">Labels</legend>
1957
+ <legend class="k-form-legend">{{ messageFor('formatValueAxisLabels') }}</legend>
1885
1958
  <div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
1886
1959
  <kendo-chartwizard-property-pane-form-field
1887
- text="Label Format"
1960
+ [text]="messageFor('formatValueAxisLabelsFormat')"
1888
1961
  [colSpan]="2"
1889
1962
  inputType="dropDownList"
1890
1963
  [data]="labelFormats"
@@ -1893,35 +1966,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1893
1966
  >
1894
1967
  </kendo-chartwizard-property-pane-form-field>
1895
1968
  <kendo-chartwizard-property-pane-form-field
1896
- text="Font"
1969
+ [text]="messageFor('formatValueAxisLabelsFont')"
1897
1970
  inputType="comboBox"
1898
1971
  [data]="fontNames"
1899
1972
  [colSpan]="2"
1900
- placeholder="(Inherited font)"
1973
+ [placeholder]="messageFor('formatValueAxisLabelsFontPlaceholder')"
1901
1974
  [value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).name"
1902
1975
  (valueChange)="updateState(valueAxisLabelsFontName, $event)"
1903
1976
  >
1904
1977
  </kendo-chartwizard-property-pane-form-field>
1905
1978
  <kendo-chartwizard-property-pane-form-field
1906
- text="Size"
1979
+ [text]="messageFor('formatValueAxisLabelsSize')"
1907
1980
  inputType="comboBox"
1908
1981
  [data]="fontSizes"
1909
- placeholder="px"
1982
+ [placeholder]="messageFor('formatValueAxisLabelsSizePlaceholder')"
1910
1983
  [value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).size"
1911
1984
  (valueChange)="updateState(valueAxisLabelsFontSize, $event)"
1912
1985
  >
1913
1986
  </kendo-chartwizard-property-pane-form-field>
1914
1987
  <kendo-chartwizard-property-pane-form-field
1915
- text="Color"
1988
+ [text]="messageFor('formatValueAxisLabelsColor')"
1916
1989
  inputType="colorPicker"
1917
1990
  [value]="stateService.state.valueAxis[0]?.labels?.color"
1918
1991
  (valueChange)="updateState(valueAxisLabelsColor, $event)"
1919
1992
  >
1920
1993
  </kendo-chartwizard-property-pane-form-field>
1921
1994
  <kendo-chartwizard-property-pane-form-field
1922
- text="Rotation"
1995
+ [text]="messageFor('formatValueAxisLabelsRotation')"
1923
1996
  inputType="dropDownList"
1924
- [data]="labelsRotation"
1997
+ [data]="labelsValueAxisRotation"
1925
1998
  [value]="stateService.state.valueAxis[0]?.labels?.rotation"
1926
1999
  (valueChange)="updateState(valueAxisLabelsRotation, $event)"
1927
2000
  >
@@ -1942,7 +2015,263 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1942
2015
  NgIf
1943
2016
  ]
1944
2017
  }]
1945
- }], ctorParameters: function () { return [{ type: StateService }, { type: i2$1.LocalizationService }, { type: i0.ChangeDetectorRef }]; } });
2018
+ }], ctorParameters: function () { return [{ type: StateService }, { type: ChartWizardLocalizationService }, { type: i0.ChangeDetectorRef }]; } });
2019
+
2020
+ /**
2021
+ * @hidden
2022
+ */
2023
+ class Messages extends ComponentMessages {
2024
+ }
2025
+ Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
2026
+ Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", 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 });
2027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, decorators: [{
2028
+ type: Directive,
2029
+ args: [{
2030
+ selector: '[kendoChartWizardMessages]'
2031
+ }]
2032
+ }], propDecorators: { windowTitle: [{
2033
+ type: Input
2034
+ }], exportButton: [{
2035
+ type: Input
2036
+ }], exportPDFButton: [{
2037
+ type: Input
2038
+ }], exportSVGButton: [{
2039
+ type: Input
2040
+ }], exportPNGButton: [{
2041
+ type: Input
2042
+ }], tabChart: [{
2043
+ type: Input
2044
+ }], tabData: [{
2045
+ type: Input
2046
+ }], tabFormat: [{
2047
+ type: Input
2048
+ }], barChart: [{
2049
+ type: Input
2050
+ }], barChartBar: [{
2051
+ type: Input
2052
+ }], barChartStackedBar: [{
2053
+ type: Input
2054
+ }], barChart100StackedBar: [{
2055
+ type: Input
2056
+ }], pieChart: [{
2057
+ type: Input
2058
+ }], pieChartPie: [{
2059
+ type: Input
2060
+ }], columnChart: [{
2061
+ type: Input
2062
+ }], columnChartColumn: [{
2063
+ type: Input
2064
+ }], columnChartStackedColumn: [{
2065
+ type: Input
2066
+ }], columnChart100StackedColumn: [{
2067
+ type: Input
2068
+ }], lineChart: [{
2069
+ type: Input
2070
+ }], lineChartLine: [{
2071
+ type: Input
2072
+ }], lineChartStackedLine: [{
2073
+ type: Input
2074
+ }], lineChart100StackedLine: [{
2075
+ type: Input
2076
+ }], scatterChart: [{
2077
+ type: Input
2078
+ }], scatterChartScatter: [{
2079
+ type: Input
2080
+ }], configuration: [{
2081
+ type: Input
2082
+ }], configurationCategoryAxis: [{
2083
+ type: Input
2084
+ }], configurationXAxis: [{
2085
+ type: Input
2086
+ }], configurationValueAxis: [{
2087
+ type: Input
2088
+ }], configurationSeries: [{
2089
+ type: Input
2090
+ }], configurationSeriesAdd: [{
2091
+ type: Input
2092
+ }], formatChartArea: [{
2093
+ type: Input
2094
+ }], formatChartAreaMargins: [{
2095
+ type: Input
2096
+ }], formatChartAreaMarginsAuto: [{
2097
+ type: Input
2098
+ }], formatChartAreaMarginsLeft: [{
2099
+ type: Input
2100
+ }], formatChartAreaMarginsRight: [{
2101
+ type: Input
2102
+ }], formatChartAreaMarginsTop: [{
2103
+ type: Input
2104
+ }], formatChartAreaMarginsBottom: [{
2105
+ type: Input
2106
+ }], formatChartAreaBackground: [{
2107
+ type: Input
2108
+ }], formatChartAreaBackgroundColor: [{
2109
+ type: Input
2110
+ }], formatTitle: [{
2111
+ type: Input
2112
+ }], formatTitleApplyTo: [{
2113
+ type: Input
2114
+ }], formatTitleChartTitle: [{
2115
+ type: Input
2116
+ }], formatTitleChartSubtitle: [{
2117
+ type: Input
2118
+ }], formatTitleLabel: [{
2119
+ type: Input
2120
+ }], formatTitleFont: [{
2121
+ type: Input
2122
+ }], formatTitleFontPlaceholder: [{
2123
+ type: Input
2124
+ }], formatTitleSize: [{
2125
+ type: Input
2126
+ }], formatTitleSizePlaceholder: [{
2127
+ type: Input
2128
+ }], formatTitleColor: [{
2129
+ type: Input
2130
+ }], formatSeries: [{
2131
+ type: Input
2132
+ }], formatSeriesApplyTo: [{
2133
+ type: Input
2134
+ }], formatSeriesAllSeries: [{
2135
+ type: Input
2136
+ }], formatSeriesColor: [{
2137
+ type: Input
2138
+ }], formatSeriesShowLabels: [{
2139
+ type: Input
2140
+ }], formatLegend: [{
2141
+ type: Input
2142
+ }], formatLegendShowLegend: [{
2143
+ type: Input
2144
+ }], formatLegendFont: [{
2145
+ type: Input
2146
+ }], formatLegendFontPlaceholder: [{
2147
+ type: Input
2148
+ }], formatLegendSize: [{
2149
+ type: Input
2150
+ }], formatLegendSizePlaceholder: [{
2151
+ type: Input
2152
+ }], formatLegendColor: [{
2153
+ type: Input
2154
+ }], formatLegendPosition: [{
2155
+ type: Input
2156
+ }], formatLegendPositionTop: [{
2157
+ type: Input
2158
+ }], formatLegendPositionBottom: [{
2159
+ type: Input
2160
+ }], formatLegendPositionLeft: [{
2161
+ type: Input
2162
+ }], formatLegendPositionRight: [{
2163
+ type: Input
2164
+ }], formatCategoryAxis: [{
2165
+ type: Input
2166
+ }], formatXAxis: [{
2167
+ type: Input
2168
+ }], formatCategoryAxisTitle: [{
2169
+ type: Input
2170
+ }], formatCategoryAxisTitlePlaceholder: [{
2171
+ type: Input
2172
+ }], formatCategoryAxisTitleFont: [{
2173
+ type: Input
2174
+ }], formatCategoryAxisTitleFontPlaceholder: [{
2175
+ type: Input
2176
+ }], formatCategoryAxisTitleSize: [{
2177
+ type: Input
2178
+ }], formatCategoryAxisTitleSizePlaceholder: [{
2179
+ type: Input
2180
+ }], formatCategoryAxisTitleColor: [{
2181
+ type: Input
2182
+ }], formatCategoryAxisLabels: [{
2183
+ type: Input
2184
+ }], formatCategoryAxisLabelsFont: [{
2185
+ type: Input
2186
+ }], formatCategoryAxisLabelsFontPlaceholder: [{
2187
+ type: Input
2188
+ }], formatCategoryAxisLabelsSize: [{
2189
+ type: Input
2190
+ }], formatCategoryAxisLabelsSizePlaceholder: [{
2191
+ type: Input
2192
+ }], formatCategoryAxisLabelsColor: [{
2193
+ type: Input
2194
+ }], formatCategoryAxisLabelsRotation: [{
2195
+ type: Input
2196
+ }], formatCategoryAxisLabelsRotationAuto: [{
2197
+ type: Input
2198
+ }], formatCategoryAxisLabelsReverseOrder: [{
2199
+ type: Input
2200
+ }], formatValueAxis: [{
2201
+ type: Input
2202
+ }], formatYAxis: [{
2203
+ type: Input
2204
+ }], formatValueAxisTitle: [{
2205
+ type: Input
2206
+ }], formatValueAxisTitlePlaceholder: [{
2207
+ type: Input
2208
+ }], formatValueAxisTitleFont: [{
2209
+ type: Input
2210
+ }], formatValueAxisTitleFontPlaceholder: [{
2211
+ type: Input
2212
+ }], formatValueAxisTitleSize: [{
2213
+ type: Input
2214
+ }], formatValueAxisTitleSizePlaceholder: [{
2215
+ type: Input
2216
+ }], formatValueAxisTitleColor: [{
2217
+ type: Input
2218
+ }], formatValueAxisLabels: [{
2219
+ type: Input
2220
+ }], formatValueAxisLabelsFormat: [{
2221
+ type: Input
2222
+ }], formatValueAxisLabelsFormatText: [{
2223
+ type: Input
2224
+ }], formatValueAxisLabelsFormatNumber: [{
2225
+ type: Input
2226
+ }], formatValueAxisLabelsFormatCurrency: [{
2227
+ type: Input
2228
+ }], formatValueAxisLabelsFormatPercent: [{
2229
+ type: Input
2230
+ }], formatValueAxisLabelsFont: [{
2231
+ type: Input
2232
+ }], formatValueAxisLabelsFontPlaceholder: [{
2233
+ type: Input
2234
+ }], formatValueAxisLabelsSize: [{
2235
+ type: Input
2236
+ }], formatValueAxisLabelsSizePlaceholder: [{
2237
+ type: Input
2238
+ }], formatValueAxisLabelsColor: [{
2239
+ type: Input
2240
+ }], formatValueAxisLabelsRotation: [{
2241
+ type: Input
2242
+ }], formatValueAxisLabelsRotationAuto: [{
2243
+ type: Input
2244
+ }] } });
2245
+
2246
+ /**
2247
+ * @hidden
2248
+ */
2249
+ class LocalizedMessagesDirective extends Messages {
2250
+ constructor(service) {
2251
+ super();
2252
+ this.service = service;
2253
+ }
2254
+ }
2255
+ LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
2256
+ LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoChartWizardLocalizedMessages]", providers: [
2257
+ {
2258
+ provide: Messages,
2259
+ useExisting: forwardRef(() => LocalizedMessagesDirective)
2260
+ }
2261
+ ], usesInheritance: true, ngImport: i0 });
2262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
2263
+ type: Directive,
2264
+ args: [{
2265
+ providers: [
2266
+ {
2267
+ provide: Messages,
2268
+ useExisting: forwardRef(() => LocalizedMessagesDirective)
2269
+ }
2270
+ ],
2271
+ selector: '[kendoChartWizardLocalizedMessages]',
2272
+ standalone: true
2273
+ }]
2274
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
1946
2275
 
1947
2276
  /**
1948
2277
  * Represents the Kendo UI for Angular Chart Wizard component.
@@ -1956,6 +2285,15 @@ class ChartWizardComponent {
1956
2285
  constructor(localization, stateService) {
1957
2286
  this.localization = localization;
1958
2287
  this.stateService = stateService;
2288
+ /**
2289
+ * Specifies if the configuration pane is initially collapsed.
2290
+ * @default false
2291
+ */
2292
+ this.collapsedConfigurationPane = false;
2293
+ /**
2294
+ * The settings of the window.
2295
+ */
2296
+ this.windowSettings = {};
1959
2297
  /**
1960
2298
  * @hidden
1961
2299
  */
@@ -1967,20 +2305,7 @@ class ChartWizardComponent {
1967
2305
  /**
1968
2306
  * @hidden
1969
2307
  */
1970
- this.exportDropdownItems = [
1971
- {
1972
- text: 'PDF File',
1973
- svgIcon: filePdfIcon,
1974
- },
1975
- {
1976
- text: 'SVG File',
1977
- svgIcon: fileIcon,
1978
- },
1979
- {
1980
- text: 'PNG File',
1981
- svgIcon: fileImageIcon,
1982
- },
1983
- ];
2308
+ this.exportDropdownItems = [];
1984
2309
  /**
1985
2310
  * Fires when the Chart Wizard Window is to be close.
1986
2311
  */
@@ -1989,6 +2314,10 @@ class ChartWizardComponent {
1989
2314
  * Fires when the Chart is about to be exported. The event is preventable.
1990
2315
  */
1991
2316
  this.export = new EventEmitter();
2317
+ /**
2318
+ * @hidden
2319
+ */
2320
+ this.messages = ChartWizardCommon.messages;
1992
2321
  this.subscription = new Subscription();
1993
2322
  const isValid = validatePackage(packageMetadata);
1994
2323
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
@@ -2000,6 +2329,20 @@ class ChartWizardComponent {
2000
2329
  ngAfterViewInit() {
2001
2330
  this.subscription.add(this.localization.changes.subscribe(({ rtl }) => {
2002
2331
  this.stateService.direction = rtl ? 'rtl' : 'ltr';
2332
+ this.exportDropdownItems = [
2333
+ {
2334
+ text: this.messageFor('exportPDFButton'),
2335
+ svgIcon: filePdfIcon,
2336
+ },
2337
+ {
2338
+ text: this.messageFor('exportSVGButton'),
2339
+ svgIcon: fileIcon,
2340
+ },
2341
+ {
2342
+ text: this.messageFor('exportPNGButton'),
2343
+ svgIcon: fileImageIcon,
2344
+ },
2345
+ ];
2003
2346
  }));
2004
2347
  this.stateService.dataTab = this.dataTab;
2005
2348
  }
@@ -2066,26 +2409,366 @@ class ChartWizardComponent {
2066
2409
  break;
2067
2410
  }
2068
2411
  }
2412
+ /**
2413
+ * @hidden
2414
+ */
2415
+ get windowWidth() {
2416
+ var _a;
2417
+ return isPresent((_a = this.windowSettings) === null || _a === void 0 ? void 0 : _a.width) ? this.windowSettings.width : this.stateService.windowSize.width;
2418
+ }
2419
+ /**
2420
+ * @hidden
2421
+ */
2422
+ get windowHeight() {
2423
+ var _a;
2424
+ return isPresent((_a = this.windowSettings) === null || _a === void 0 ? void 0 : _a.height) ? this.windowSettings.height : this.stateService.windowSize.height;
2425
+ }
2069
2426
  }
2070
- ChartWizardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardComponent, deps: [{ token: i2$1.LocalizationService }, { token: StateService }], target: i0.ɵɵFactoryTarget.Component });
2071
- 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: [
2427
+ ChartWizardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardComponent, deps: [{ token: i1.LocalizationService }, { token: StateService }], target: i0.ɵɵFactoryTarget.Component });
2428
+ 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: [
2072
2429
  LocalizationService,
2073
2430
  {
2074
2431
  provide: L10N_PREFIX,
2075
2432
  useValue: 'kendo.chartwizard',
2076
2433
  },
2434
+ ChartWizardLocalizationService,
2435
+ {
2436
+ provide: LocalizationService,
2437
+ useExisting: ChartWizardLocalizationService
2438
+ },
2077
2439
  StateService
2078
2440
  ], 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: `
2079
2441
  <ng-container
2080
2442
  kendoChartWizardLocalizedMessages
2081
- i18n-sampleMessage="kendo.chartwizard.sampleMessage|Sample description"
2082
- sampleMessage="foo"
2443
+
2444
+ i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
2445
+ [windowTitle]="messages.windowTitle"
2446
+
2447
+ i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
2448
+ [exportButton]="messages.exportButton"
2449
+
2450
+ i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
2451
+ [exportPDFButton]="messages.exportPDFButton"
2452
+
2453
+ i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
2454
+ [exportSVGButton]="messages.exportSVGButton"
2455
+
2456
+ i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
2457
+ [exportPNGButton]="messages.exportPNGButton"
2458
+
2459
+ i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
2460
+ [tabChart]="messages.tabChart"
2461
+
2462
+ i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
2463
+ [tabData]="messages.tabData"
2464
+
2465
+ i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
2466
+ [tabFormat]="messages.tabFormat"
2467
+
2468
+ i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
2469
+ [barChart]="messages.barChart"
2470
+
2471
+ i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
2472
+ [barChartBar]="messages.barChartBar"
2473
+
2474
+ i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
2475
+ [barChartStackedBar]="messages.barChartStackedBar"
2476
+
2477
+ i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
2478
+ [barChart100StackedBar]="messages.barChart100StackedBar"
2479
+
2480
+ i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
2481
+ [pieChart]="messages.pieChart"
2482
+
2483
+ i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
2484
+ [pieChartPie]="messages.pieChartPie"
2485
+
2486
+ i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
2487
+ [columnChart]="messages.columnChart"
2488
+
2489
+ i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
2490
+ [columnChartColumn]="messages.columnChartColumn"
2491
+
2492
+ i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
2493
+ [columnChartStackedColumn]="messages.columnChartStackedColumn"
2494
+
2495
+ i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
2496
+ [columnChart100StackedColumn]="messages.columnChart100StackedColumn"
2497
+
2498
+ i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
2499
+ [lineChart]="messages.lineChart"
2500
+
2501
+ i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
2502
+ [lineChartLine]="messages.lineChartLine"
2503
+
2504
+ i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
2505
+ [lineChartStackedLine]="messages.lineChartStackedLine"
2506
+
2507
+ i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
2508
+ [lineChart100StackedLine]="messages.lineChart100StackedLine"
2509
+
2510
+ i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
2511
+ [scatterChart]="messages.scatterChart"
2512
+
2513
+ i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
2514
+ [scatterChartScatter]="messages.scatterChartScatter"
2515
+
2516
+ i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
2517
+ [configuration]="messages.configuration"
2518
+
2519
+ i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
2520
+ [configurationCategoryAxis]="messages.configurationCategoryAxis"
2521
+
2522
+ i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
2523
+ [configurationXAxis]="messages.configurationXAxis"
2524
+
2525
+ i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
2526
+ [configurationValueAxis]="messages.configurationValueAxis"
2527
+
2528
+ i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
2529
+ [configurationSeries]="messages.configurationSeries"
2530
+
2531
+ i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
2532
+ [configurationSeriesAdd]="messages.configurationSeriesAdd"
2533
+
2534
+ i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
2535
+ [formatChartArea]="messages.formatChartArea"
2536
+
2537
+ i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
2538
+ [formatChartAreaMargins]="messages.formatChartAreaMargins"
2539
+
2540
+ i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
2541
+ [formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
2542
+
2543
+ i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
2544
+ [formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
2545
+
2546
+ i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
2547
+ [formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
2548
+
2549
+ i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
2550
+ [formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
2551
+
2552
+ i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
2553
+ [formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
2554
+
2555
+ i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
2556
+ [formatChartAreaBackground]="messages.formatChartAreaBackground"
2557
+
2558
+ i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
2559
+ [formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
2560
+
2561
+ i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
2562
+ [formatTitle]="messages.formatTitle"
2563
+
2564
+ i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
2565
+ [formatTitleApplyTo]="messages.formatTitleApplyTo"
2566
+
2567
+ i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
2568
+ [formatTitleChartTitle]="messages.formatTitleChartTitle"
2569
+
2570
+ i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
2571
+ [formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
2572
+
2573
+ i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
2574
+ [formatTitleLabel]="messages.formatTitleLabel"
2575
+
2576
+ i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
2577
+ [formatTitleFont]="messages.formatTitleFont"
2578
+
2579
+ i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
2580
+ [formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
2581
+
2582
+ i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
2583
+ [formatTitleSize]="messages.formatTitleSize"
2584
+
2585
+ i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
2586
+ [formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
2587
+
2588
+ i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
2589
+ [formatTitleColor]="messages.formatTitleColor"
2590
+
2591
+ i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
2592
+ [formatSeries]="messages.formatSeries"
2593
+
2594
+ i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
2595
+ [formatSeriesApplyTo]="messages.formatSeriesApplyTo"
2596
+
2597
+ i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
2598
+ [formatSeriesAllSeries]="messages.formatSeriesAllSeries"
2599
+
2600
+ i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
2601
+ [formatSeriesColor]="messages.formatSeriesColor"
2602
+
2603
+ i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
2604
+ [formatSeriesShowLabels]="messages.formatSeriesShowLabels"
2605
+
2606
+ i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
2607
+ [formatLegend]="messages.formatLegend"
2608
+
2609
+ i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
2610
+ [formatLegendShowLegend]="messages.formatLegendShowLegend"
2611
+
2612
+ i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
2613
+ [formatLegendFont]="messages.formatLegendFont"
2614
+
2615
+ i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
2616
+ [formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
2617
+
2618
+ i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
2619
+ [formatLegendSize]="messages.formatLegendSize"
2620
+
2621
+ i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
2622
+ [formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
2623
+
2624
+ i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
2625
+ [formatLegendColor]="messages.formatLegendColor"
2626
+
2627
+ i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
2628
+ [formatLegendPosition]="messages.formatLegendPosition"
2629
+
2630
+ i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
2631
+ [formatLegendPositionTop]="messages.formatLegendPositionTop"
2632
+
2633
+ i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
2634
+ [formatLegendPositionBottom]="messages.formatLegendPositionBottom"
2635
+
2636
+ i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
2637
+ [formatLegendPositionLeft]="messages.formatLegendPositionLeft"
2638
+
2639
+ i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
2640
+ [formatLegendPositionRight]="messages.formatLegendPositionRight"
2641
+
2642
+ i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
2643
+ [formatCategoryAxis]="messages.formatCategoryAxis"
2644
+
2645
+ i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
2646
+ [formatXAxis]="messages.formatXAxis"
2647
+
2648
+ i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
2649
+ [formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
2650
+
2651
+ i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
2652
+ [formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
2653
+
2654
+ i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
2655
+ [formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
2656
+
2657
+ i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
2658
+ [formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
2659
+
2660
+ i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
2661
+ [formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
2662
+
2663
+ i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
2664
+ [formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
2665
+
2666
+ i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
2667
+ [formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
2668
+
2669
+ i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
2670
+ [formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
2671
+
2672
+ i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
2673
+ [formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
2674
+
2675
+ i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
2676
+ [formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
2677
+
2678
+ i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
2679
+ [formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
2680
+
2681
+ i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
2682
+ [formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
2683
+
2684
+ i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
2685
+ [formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
2686
+
2687
+ i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
2688
+ [formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
2689
+
2690
+ i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
2691
+ [formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
2692
+
2693
+ i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
2694
+ [formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
2695
+
2696
+ i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
2697
+ [formatValueAxis]="messages.formatValueAxis"
2698
+
2699
+ i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
2700
+ [formatYAxis]="messages.formatYAxis"
2701
+
2702
+ i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
2703
+ [formatValueAxisTitle]="messages.formatValueAxisTitle"
2704
+
2705
+ i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
2706
+ [formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
2707
+
2708
+ i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
2709
+ [formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
2710
+
2711
+ i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
2712
+ [formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
2713
+
2714
+ i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
2715
+ [formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
2716
+
2717
+ i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
2718
+ [formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
2719
+
2720
+ i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
2721
+ [formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
2722
+
2723
+ i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
2724
+ [formatValueAxisLabels]="messages.formatValueAxisLabels"
2725
+
2726
+ i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
2727
+ [formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
2728
+
2729
+ i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
2730
+ [formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
2731
+
2732
+ i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
2733
+ [formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
2734
+
2735
+ i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
2736
+ [formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
2737
+
2738
+ i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
2739
+ [formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
2740
+
2741
+ i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
2742
+ [formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
2743
+
2744
+ i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
2745
+ [formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
2746
+
2747
+ i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
2748
+ [formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
2749
+
2750
+ i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
2751
+ [formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
2752
+
2753
+ i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
2754
+ [formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
2755
+
2756
+ i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
2757
+ [formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
2758
+
2759
+ i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
2760
+ [formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
2761
+
2083
2762
  ></ng-container>
2763
+ <div *ngIf="windowSettings?.modal" @overlayAppear class="k-overlay"> </div>
2084
2764
  <kendo-window
2085
2765
  class="k-chart-wizard"
2086
- title="Chart Wizard"
2087
- [width]="stateService.windowSize.width"
2088
- [height]="stateService.windowSize.height"
2766
+ [title]="messageFor('windowTitle')"
2767
+ [width]="windowWidth"
2768
+ [height]="windowHeight"
2769
+ [minWidth]="windowSettings?.minWidth"
2770
+ [minHeight]="windowSettings?.minHeight"
2771
+ [state]="windowSettings?.state"
2089
2772
  [resizable]="true"
2090
2773
  (close)="close.emit()"
2091
2774
  >
@@ -2099,7 +2782,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
2099
2782
  fillMode="flat"
2100
2783
  (itemClick)="onExport($event)"
2101
2784
  >
2102
- Export
2785
+ {{ messageFor('exportButton') }}
2103
2786
  </kendo-dropdownbutton>
2104
2787
  </div>
2105
2788
  <div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
@@ -2178,20 +2861,20 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
2178
2861
  </kendo-chart>
2179
2862
  </div>
2180
2863
  </kendo-splitter-pane>
2181
- <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [size]="stateService.splitterPaneSize">
2864
+ <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [collapsed]="collapsedConfigurationPane" [size]="stateService.splitterPaneSize">
2182
2865
  <kendo-tabstrip [keepTabContent]="true">
2183
- <kendo-tabstrip-tab title="Chart" [selected]="true">
2866
+ <kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
2184
2867
  <ng-template kendoTabContent>
2185
2868
  <kendo-chartwizard-property-pane-chart-tab>
2186
2869
  </kendo-chartwizard-property-pane-chart-tab>
2187
2870
  </ng-template>
2188
2871
  </kendo-tabstrip-tab>
2189
- <kendo-tabstrip-tab title="Data">
2872
+ <kendo-tabstrip-tab [title]="messageFor('tabData')">
2190
2873
  <ng-template kendoTabContent>
2191
2874
  <kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
2192
2875
  </ng-template>
2193
2876
  </kendo-tabstrip-tab>
2194
- <kendo-tabstrip-tab title="Format">
2877
+ <kendo-tabstrip-tab [title]="messageFor('tabFormat')">
2195
2878
  <ng-template kendoTabContent>
2196
2879
  <kendo-chartwizard-property-pane-format-tab>
2197
2880
  </kendo-chartwizard-property-pane-format-tab>
@@ -2202,10 +2885,21 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
2202
2885
  </kendo-splitter>
2203
2886
  <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
2204
2887
  </kendo-window>
2205
- `, 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 });
2888
+ `, 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: [
2889
+ trigger('overlayAppear', [
2890
+ state('in', style({ opacity: 1 })),
2891
+ transition('void => *', [style({ opacity: 0.1 }), animate('.3s cubic-bezier(.2, .6, .4, 1)')])
2892
+ ])
2893
+ ], changeDetection: i0.ChangeDetectionStrategy.OnPush });
2206
2894
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardComponent, decorators: [{
2207
2895
  type: Component,
2208
2896
  args: [{
2897
+ animations: [
2898
+ trigger('overlayAppear', [
2899
+ state('in', style({ opacity: 1 })),
2900
+ transition('void => *', [style({ opacity: 0.1 }), animate('.3s cubic-bezier(.2, .6, .4, 1)')])
2901
+ ])
2902
+ ],
2209
2903
  changeDetection: ChangeDetectionStrategy.OnPush,
2210
2904
  exportAs: 'kendoChartWizard',
2211
2905
  providers: [
@@ -2214,20 +2908,346 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2214
2908
  provide: L10N_PREFIX,
2215
2909
  useValue: 'kendo.chartwizard',
2216
2910
  },
2911
+ ChartWizardLocalizationService,
2912
+ {
2913
+ provide: LocalizationService,
2914
+ useExisting: ChartWizardLocalizationService
2915
+ },
2217
2916
  StateService
2218
2917
  ],
2219
2918
  selector: 'kendo-chartwizard',
2220
2919
  template: `
2221
2920
  <ng-container
2222
2921
  kendoChartWizardLocalizedMessages
2223
- i18n-sampleMessage="kendo.chartwizard.sampleMessage|Sample description"
2224
- sampleMessage="foo"
2922
+
2923
+ i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
2924
+ [windowTitle]="messages.windowTitle"
2925
+
2926
+ i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
2927
+ [exportButton]="messages.exportButton"
2928
+
2929
+ i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
2930
+ [exportPDFButton]="messages.exportPDFButton"
2931
+
2932
+ i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
2933
+ [exportSVGButton]="messages.exportSVGButton"
2934
+
2935
+ i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
2936
+ [exportPNGButton]="messages.exportPNGButton"
2937
+
2938
+ i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
2939
+ [tabChart]="messages.tabChart"
2940
+
2941
+ i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
2942
+ [tabData]="messages.tabData"
2943
+
2944
+ i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
2945
+ [tabFormat]="messages.tabFormat"
2946
+
2947
+ i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
2948
+ [barChart]="messages.barChart"
2949
+
2950
+ i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
2951
+ [barChartBar]="messages.barChartBar"
2952
+
2953
+ i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
2954
+ [barChartStackedBar]="messages.barChartStackedBar"
2955
+
2956
+ i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
2957
+ [barChart100StackedBar]="messages.barChart100StackedBar"
2958
+
2959
+ i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
2960
+ [pieChart]="messages.pieChart"
2961
+
2962
+ i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
2963
+ [pieChartPie]="messages.pieChartPie"
2964
+
2965
+ i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
2966
+ [columnChart]="messages.columnChart"
2967
+
2968
+ i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
2969
+ [columnChartColumn]="messages.columnChartColumn"
2970
+
2971
+ i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
2972
+ [columnChartStackedColumn]="messages.columnChartStackedColumn"
2973
+
2974
+ i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
2975
+ [columnChart100StackedColumn]="messages.columnChart100StackedColumn"
2976
+
2977
+ i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
2978
+ [lineChart]="messages.lineChart"
2979
+
2980
+ i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
2981
+ [lineChartLine]="messages.lineChartLine"
2982
+
2983
+ i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
2984
+ [lineChartStackedLine]="messages.lineChartStackedLine"
2985
+
2986
+ i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
2987
+ [lineChart100StackedLine]="messages.lineChart100StackedLine"
2988
+
2989
+ i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
2990
+ [scatterChart]="messages.scatterChart"
2991
+
2992
+ i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
2993
+ [scatterChartScatter]="messages.scatterChartScatter"
2994
+
2995
+ i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
2996
+ [configuration]="messages.configuration"
2997
+
2998
+ i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
2999
+ [configurationCategoryAxis]="messages.configurationCategoryAxis"
3000
+
3001
+ i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
3002
+ [configurationXAxis]="messages.configurationXAxis"
3003
+
3004
+ i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
3005
+ [configurationValueAxis]="messages.configurationValueAxis"
3006
+
3007
+ i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
3008
+ [configurationSeries]="messages.configurationSeries"
3009
+
3010
+ i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
3011
+ [configurationSeriesAdd]="messages.configurationSeriesAdd"
3012
+
3013
+ i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
3014
+ [formatChartArea]="messages.formatChartArea"
3015
+
3016
+ i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
3017
+ [formatChartAreaMargins]="messages.formatChartAreaMargins"
3018
+
3019
+ i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
3020
+ [formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
3021
+
3022
+ i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
3023
+ [formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
3024
+
3025
+ i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
3026
+ [formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
3027
+
3028
+ i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
3029
+ [formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
3030
+
3031
+ i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
3032
+ [formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
3033
+
3034
+ i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
3035
+ [formatChartAreaBackground]="messages.formatChartAreaBackground"
3036
+
3037
+ i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
3038
+ [formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
3039
+
3040
+ i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
3041
+ [formatTitle]="messages.formatTitle"
3042
+
3043
+ i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
3044
+ [formatTitleApplyTo]="messages.formatTitleApplyTo"
3045
+
3046
+ i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
3047
+ [formatTitleChartTitle]="messages.formatTitleChartTitle"
3048
+
3049
+ i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
3050
+ [formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
3051
+
3052
+ i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
3053
+ [formatTitleLabel]="messages.formatTitleLabel"
3054
+
3055
+ i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
3056
+ [formatTitleFont]="messages.formatTitleFont"
3057
+
3058
+ i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
3059
+ [formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
3060
+
3061
+ i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
3062
+ [formatTitleSize]="messages.formatTitleSize"
3063
+
3064
+ i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
3065
+ [formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
3066
+
3067
+ i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
3068
+ [formatTitleColor]="messages.formatTitleColor"
3069
+
3070
+ i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
3071
+ [formatSeries]="messages.formatSeries"
3072
+
3073
+ i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
3074
+ [formatSeriesApplyTo]="messages.formatSeriesApplyTo"
3075
+
3076
+ i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
3077
+ [formatSeriesAllSeries]="messages.formatSeriesAllSeries"
3078
+
3079
+ i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
3080
+ [formatSeriesColor]="messages.formatSeriesColor"
3081
+
3082
+ i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
3083
+ [formatSeriesShowLabels]="messages.formatSeriesShowLabels"
3084
+
3085
+ i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
3086
+ [formatLegend]="messages.formatLegend"
3087
+
3088
+ i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
3089
+ [formatLegendShowLegend]="messages.formatLegendShowLegend"
3090
+
3091
+ i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
3092
+ [formatLegendFont]="messages.formatLegendFont"
3093
+
3094
+ i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
3095
+ [formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
3096
+
3097
+ i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
3098
+ [formatLegendSize]="messages.formatLegendSize"
3099
+
3100
+ i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
3101
+ [formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
3102
+
3103
+ i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
3104
+ [formatLegendColor]="messages.formatLegendColor"
3105
+
3106
+ i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
3107
+ [formatLegendPosition]="messages.formatLegendPosition"
3108
+
3109
+ i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
3110
+ [formatLegendPositionTop]="messages.formatLegendPositionTop"
3111
+
3112
+ i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
3113
+ [formatLegendPositionBottom]="messages.formatLegendPositionBottom"
3114
+
3115
+ i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
3116
+ [formatLegendPositionLeft]="messages.formatLegendPositionLeft"
3117
+
3118
+ i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
3119
+ [formatLegendPositionRight]="messages.formatLegendPositionRight"
3120
+
3121
+ i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
3122
+ [formatCategoryAxis]="messages.formatCategoryAxis"
3123
+
3124
+ i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
3125
+ [formatXAxis]="messages.formatXAxis"
3126
+
3127
+ i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
3128
+ [formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
3129
+
3130
+ i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
3131
+ [formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
3132
+
3133
+ i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
3134
+ [formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
3135
+
3136
+ i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
3137
+ [formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
3138
+
3139
+ i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
3140
+ [formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
3141
+
3142
+ i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
3143
+ [formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
3144
+
3145
+ i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
3146
+ [formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
3147
+
3148
+ i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
3149
+ [formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
3150
+
3151
+ i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
3152
+ [formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
3153
+
3154
+ i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
3155
+ [formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
3156
+
3157
+ i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
3158
+ [formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
3159
+
3160
+ i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
3161
+ [formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
3162
+
3163
+ i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
3164
+ [formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
3165
+
3166
+ i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
3167
+ [formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
3168
+
3169
+ i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
3170
+ [formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
3171
+
3172
+ i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
3173
+ [formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
3174
+
3175
+ i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
3176
+ [formatValueAxis]="messages.formatValueAxis"
3177
+
3178
+ i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
3179
+ [formatYAxis]="messages.formatYAxis"
3180
+
3181
+ i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
3182
+ [formatValueAxisTitle]="messages.formatValueAxisTitle"
3183
+
3184
+ i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
3185
+ [formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
3186
+
3187
+ i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
3188
+ [formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
3189
+
3190
+ i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
3191
+ [formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
3192
+
3193
+ i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
3194
+ [formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
3195
+
3196
+ i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
3197
+ [formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
3198
+
3199
+ i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
3200
+ [formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
3201
+
3202
+ i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
3203
+ [formatValueAxisLabels]="messages.formatValueAxisLabels"
3204
+
3205
+ i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
3206
+ [formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
3207
+
3208
+ i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
3209
+ [formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
3210
+
3211
+ i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
3212
+ [formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
3213
+
3214
+ i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
3215
+ [formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
3216
+
3217
+ i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
3218
+ [formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
3219
+
3220
+ i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
3221
+ [formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
3222
+
3223
+ i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
3224
+ [formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
3225
+
3226
+ i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
3227
+ [formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
3228
+
3229
+ i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
3230
+ [formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
3231
+
3232
+ i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
3233
+ [formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
3234
+
3235
+ i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
3236
+ [formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
3237
+
3238
+ i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
3239
+ [formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
3240
+
2225
3241
  ></ng-container>
3242
+ <div *ngIf="windowSettings?.modal" @overlayAppear class="k-overlay"> </div>
2226
3243
  <kendo-window
2227
3244
  class="k-chart-wizard"
2228
- title="Chart Wizard"
2229
- [width]="stateService.windowSize.width"
2230
- [height]="stateService.windowSize.height"
3245
+ [title]="messageFor('windowTitle')"
3246
+ [width]="windowWidth"
3247
+ [height]="windowHeight"
3248
+ [minWidth]="windowSettings?.minWidth"
3249
+ [minHeight]="windowSettings?.minHeight"
3250
+ [state]="windowSettings?.state"
2231
3251
  [resizable]="true"
2232
3252
  (close)="close.emit()"
2233
3253
  >
@@ -2241,7 +3261,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2241
3261
  fillMode="flat"
2242
3262
  (itemClick)="onExport($event)"
2243
3263
  >
2244
- Export
3264
+ {{ messageFor('exportButton') }}
2245
3265
  </kendo-dropdownbutton>
2246
3266
  </div>
2247
3267
  <div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
@@ -2320,20 +3340,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2320
3340
  </kendo-chart>
2321
3341
  </div>
2322
3342
  </kendo-splitter-pane>
2323
- <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [size]="stateService.splitterPaneSize">
3343
+ <kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [collapsed]="collapsedConfigurationPane" [size]="stateService.splitterPaneSize">
2324
3344
  <kendo-tabstrip [keepTabContent]="true">
2325
- <kendo-tabstrip-tab title="Chart" [selected]="true">
3345
+ <kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
2326
3346
  <ng-template kendoTabContent>
2327
3347
  <kendo-chartwizard-property-pane-chart-tab>
2328
3348
  </kendo-chartwizard-property-pane-chart-tab>
2329
3349
  </ng-template>
2330
3350
  </kendo-tabstrip-tab>
2331
- <kendo-tabstrip-tab title="Data">
3351
+ <kendo-tabstrip-tab [title]="messageFor('tabData')">
2332
3352
  <ng-template kendoTabContent>
2333
3353
  <kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
2334
3354
  </ng-template>
2335
3355
  </kendo-tabstrip-tab>
2336
- <kendo-tabstrip-tab title="Format">
3356
+ <kendo-tabstrip-tab [title]="messageFor('tabFormat')">
2337
3357
  <ng-template kendoTabContent>
2338
3358
  <kendo-chartwizard-property-pane-format-tab>
2339
3359
  </kendo-chartwizard-property-pane-format-tab>
@@ -2374,15 +3394,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2374
3394
  ChartWizardPropertyPaneChartTabComponent,
2375
3395
  ChartWizardPropertyPaneFormatTabComponent,
2376
3396
  ChartWizardPropertyPaneDataTabComponent,
2377
- WatermarkOverlayComponent
3397
+ WatermarkOverlayComponent,
3398
+ LocalizedMessagesDirective
2378
3399
  ]
2379
3400
  }]
2380
- }], ctorParameters: function () { return [{ type: i2$1.LocalizationService }, { type: StateService }]; }, propDecorators: { data: [{
3401
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: StateService }]; }, propDecorators: { data: [{
2381
3402
  type: Input
2382
3403
  }], defaultState: [{
2383
3404
  type: Input
2384
3405
  }], exportOptions: [{
2385
3406
  type: Input
3407
+ }], collapsedConfigurationPane: [{
3408
+ type: Input
3409
+ }], windowSettings: [{
3410
+ type: Input
2386
3411
  }], close: [{
2387
3412
  type: Output
2388
3413
  }], export: [{
@@ -2493,7 +3518,7 @@ class ChartWizardGridBindingDirective {
2493
3518
  this.chartWizardDataChange.emit(this.chartWizardData);
2494
3519
  }
2495
3520
  }
2496
- ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: i1.GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
3521
+ ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: i1$1.GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
2497
3522
  ChartWizardGridBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardGridBindingDirective, isStandalone: true, selector: "[kendoChartWizardGridBinding]", inputs: { chartWizardData: "chartWizardData", data: ["kendoGridBinding", "data"], selectionKey: ["kendoGridSelectBy", "selectionKey"], columnKey: "columnKey" }, outputs: { chartWizardDataChange: "chartWizardDataChange" }, host: { listeners: { "selectedKeysChange": "onSelectionChange($event)" } }, exportAs: ["kendoChartWizardGridBinding"], ngImport: i0 });
2498
3523
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, decorators: [{
2499
3524
  type: Directive,
@@ -2502,7 +3527,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2502
3527
  exportAs: 'kendoChartWizardGridBinding',
2503
3528
  standalone: true
2504
3529
  }]
2505
- }], ctorParameters: function () { return [{ type: i1.GridComponent }]; }, propDecorators: { chartWizardData: [{
3530
+ }], ctorParameters: function () { return [{ type: i1$1.GridComponent }]; }, propDecorators: { chartWizardData: [{
2506
3531
  type: Input
2507
3532
  }], chartWizardDataChange: [{
2508
3533
  type: Output
@@ -2519,12 +3544,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2519
3544
  args: ['selectedKeysChange', ['$event']]
2520
3545
  }] } });
2521
3546
 
3547
+ /**
3548
+ * Custom component messages override default component messages.
3549
+ * @example
3550
+ * ```html
3551
+ * <kendo-chartwizard [data]="data">
3552
+ * <kendo-chartwizard-messages
3553
+ * windowTitle="Title"
3554
+ * ></kendo-chartwizard-messages>
3555
+ * </kendo-chartwizard>
3556
+ * ```
3557
+ */
3558
+ class CustomMessagesComponent extends Messages {
3559
+ constructor(service) {
3560
+ super();
3561
+ this.service = service;
3562
+ }
3563
+ get override() {
3564
+ return true;
3565
+ }
3566
+ }
3567
+ CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
3568
+ CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, isStandalone: true, selector: "kendo-chartwizard-messages", providers: [
3569
+ {
3570
+ provide: Messages,
3571
+ useExisting: forwardRef(() => CustomMessagesComponent)
3572
+ }
3573
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
3574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomMessagesComponent, decorators: [{
3575
+ type: Component,
3576
+ args: [{
3577
+ providers: [
3578
+ {
3579
+ provide: Messages,
3580
+ useExisting: forwardRef(() => CustomMessagesComponent)
3581
+ }
3582
+ ],
3583
+ selector: 'kendo-chartwizard-messages',
3584
+ template: ``,
3585
+ standalone: true
3586
+ }]
3587
+ }], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
3588
+
2522
3589
  /**
2523
3590
  * Utility array that contains all `@progress/kendo-angular-chart-wizard` related components and directives.
2524
3591
  */
2525
3592
  const KENDO_CHARTWIZARD = [
2526
3593
  ChartWizardComponent,
2527
- ChartWizardGridBindingDirective
3594
+ ChartWizardGridBindingDirective,
3595
+ CustomMessagesComponent
2528
3596
  ];
2529
3597
 
2530
3598
  //IMPORTANT: NgModule export kept for backwards compatibility
@@ -2538,7 +3606,7 @@ const KENDO_CHARTWIZARD = [
2538
3606
  class ChartWizardModule {
2539
3607
  }
2540
3608
  ChartWizardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2541
- ChartWizardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, imports: [ChartWizardComponent, ChartWizardGridBindingDirective], exports: [ChartWizardComponent, ChartWizardGridBindingDirective] });
3609
+ ChartWizardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, imports: [ChartWizardComponent, ChartWizardGridBindingDirective, CustomMessagesComponent], exports: [ChartWizardComponent, ChartWizardGridBindingDirective, CustomMessagesComponent] });
2542
3610
  ChartWizardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, providers: [
2543
3611
  ThemeService,
2544
3612
  PopupService,
@@ -2548,7 +3616,7 @@ ChartWizardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", versi
2548
3616
  DialogService,
2549
3617
  WindowService,
2550
3618
  WindowContainerService
2551
- ], imports: [ChartWizardComponent] });
3619
+ ], imports: [ChartWizardComponent, CustomMessagesComponent] });
2552
3620
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, decorators: [{
2553
3621
  type: NgModule,
2554
3622
  args: [{
@@ -2571,5 +3639,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2571
3639
  * Generated bundle index. Do not edit.
2572
3640
  */
2573
3641
 
2574
- export { ChartWizardComponent, ChartWizardGridBindingDirective, ChartWizardModule, ExportEvent, KENDO_CHARTWIZARD, getGridSelectedRows, getWizardDataFromDataRows, getWizardDataFromGridSelection };
3642
+ export { ChartWizardComponent, ChartWizardGridBindingDirective, ChartWizardModule, CustomMessagesComponent, ExportEvent, KENDO_CHARTWIZARD, getGridSelectedRows, getWizardDataFromDataRows, getWizardDataFromGridSelection };
2575
3643