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