@progress/kendo-angular-chart-wizard 16.11.0-develop.1 → 16.11.0-develop.11

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