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