@progress/kendo-angular-chart-wizard 21.1.1-develop.1 → 21.2.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/chart-wizard.component.mjs +655 -636
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/property-pane/data-tab.component.mjs +149 -145
- package/esm2022/property-pane/form-field.component.mjs +123 -105
- package/esm2022/property-pane/format-tab.component.mjs +798 -792
- package/fesm2022/progress-kendo-angular-chart-wizard.mjs +1727 -1677
- package/package.json +17 -17
- package/schematics/ngAdd/index.js +4 -0
|
@@ -17,7 +17,6 @@ import { exportPDF } from '@progress/kendo-drawing';
|
|
|
17
17
|
import * as i2 from '@angular/forms';
|
|
18
18
|
import * as i1$1 from '@progress/kendo-angular-grid';
|
|
19
19
|
import { GridComponent, ReactiveEditingDirective, DataBindingDirective, ToolbarTemplateDirective, RowReorderColumnComponent, ColumnComponent, CommandColumnComponent, CellTemplateDirective, GridToolbarFocusableDirective, RemoveCommandDirective } from '@progress/kendo-angular-grid';
|
|
20
|
-
import { NgIf, NgFor } from '@angular/common';
|
|
21
20
|
import { ExpansionPanelComponent, SplitterComponent, SplitterPaneComponent, TabStripComponent, TabStripTabComponent, TabContentDirective } from '@progress/kendo-angular-layout';
|
|
22
21
|
import { DropDownListComponent, ComboBoxComponent } from '@progress/kendo-angular-dropdowns';
|
|
23
22
|
import { ButtonComponent, DropDownButtonComponent } from '@progress/kendo-angular-buttons';
|
|
@@ -37,8 +36,8 @@ const packageMetadata = {
|
|
|
37
36
|
productName: 'Kendo UI for Angular',
|
|
38
37
|
productCode: 'KENDOUIANGULAR',
|
|
39
38
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
|
-
publishDate:
|
|
41
|
-
version: '21.
|
|
39
|
+
publishDate: 1763998505,
|
|
40
|
+
version: '21.2.0-develop.1',
|
|
42
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
|
43
42
|
};
|
|
44
43
|
|
|
@@ -236,82 +235,85 @@ class ChartWizardPropertyPaneDataTabComponent {
|
|
|
236
235
|
return this.localization.get(key);
|
|
237
236
|
}
|
|
238
237
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChartWizardPropertyPaneDataTabComponent, deps: [{ token: StateService }, { token: i2.FormBuilder }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: ChartWizardLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
239
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
238
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ChartWizardPropertyPaneDataTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-data-tab", viewQueries: [{ propertyName: "grid", first: true, predicate: GridComponent, descendants: true }], ngImport: i0, template: `
|
|
240
239
|
<kendo-expansionpanel [title]="messageFor('configuration')" [expanded]="true">
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
>
|
|
254
|
-
</kendo-dropdownlist>
|
|
255
|
-
</fieldset>
|
|
256
|
-
<fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.state.seriesType)">
|
|
257
|
-
<legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
|
|
258
|
-
<kendo-grid
|
|
259
|
-
#grid
|
|
260
|
-
[kendoGridReactiveEditing]="createFormGroup"
|
|
261
|
-
[kendoGridBinding]="stateService.state.series"
|
|
262
|
-
[rowReorderable]="true"
|
|
263
|
-
(rowReorder)="onRowReorder(grid)"
|
|
264
|
-
(remove)="removeData($event)"
|
|
265
|
-
>
|
|
266
|
-
<ng-template kendoGridToolbarTemplate>
|
|
267
|
-
<button
|
|
268
|
-
kendoButton
|
|
269
|
-
type="button"
|
|
270
|
-
[svgIcon]="plusIcon"
|
|
271
|
-
fillMode="flat"
|
|
272
|
-
rounded="medium"
|
|
273
|
-
[disabled]="isDisabled(grid)"
|
|
274
|
-
(click)="addData()"
|
|
275
|
-
>
|
|
276
|
-
{{ messageFor('configurationSeriesAdd') }}
|
|
277
|
-
</button>
|
|
278
|
-
</ng-template>
|
|
279
|
-
<kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
|
|
280
|
-
<kendo-grid-column field="name" title="">
|
|
281
|
-
</kendo-grid-column>
|
|
282
|
-
<kendo-grid-command-column [width]="40">
|
|
283
|
-
<ng-template kendoGridCellTemplate>
|
|
284
|
-
<button
|
|
285
|
-
[svgIcon]="trashIcon"
|
|
286
|
-
kendoGridRemoveCommand
|
|
287
|
-
fillMode="flat"
|
|
288
|
-
rounded="medium"
|
|
289
|
-
[disabled]="stateService.state.series.length < 2"
|
|
290
|
-
></button>
|
|
291
|
-
</ng-template>
|
|
292
|
-
</kendo-grid-command-column>
|
|
293
|
-
</kendo-grid>
|
|
294
|
-
</fieldset>
|
|
295
|
-
<fieldset
|
|
296
|
-
class="k-form-fieldset"
|
|
297
|
-
*ngIf="stateService.state.seriesType === 'pie'"
|
|
240
|
+
<form class="k-form k-form-md">
|
|
241
|
+
<fieldset class="k-form-fieldset">
|
|
242
|
+
<legend class="k-form-legend">
|
|
243
|
+
{{ stateService.state.seriesType === 'scatter' ? messageFor('configurationXAxis') : messageFor('configurationCategoryAxis') }}
|
|
244
|
+
</legend>
|
|
245
|
+
<kendo-dropdownlist
|
|
246
|
+
[data]="stateService.state.columns"
|
|
247
|
+
[value]="stateService.state.categoryField"
|
|
248
|
+
(valueChange)="updateState(categoryAxisX, $event)"
|
|
249
|
+
fillMode="outline"
|
|
250
|
+
rounded="medium"
|
|
251
|
+
size="medium"
|
|
298
252
|
>
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
253
|
+
</kendo-dropdownlist>
|
|
254
|
+
</fieldset>
|
|
255
|
+
@if (isCategorical(stateService.state.seriesType)) {
|
|
256
|
+
<fieldset class="k-form-fieldset">
|
|
257
|
+
<legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
|
|
258
|
+
<kendo-grid
|
|
259
|
+
#grid
|
|
260
|
+
[kendoGridReactiveEditing]="createFormGroup"
|
|
261
|
+
[kendoGridBinding]="stateService.state.series"
|
|
262
|
+
[rowReorderable]="true"
|
|
263
|
+
(rowReorder)="onRowReorder(grid)"
|
|
264
|
+
(remove)="removeData($event)"
|
|
265
|
+
>
|
|
266
|
+
<ng-template kendoGridToolbarTemplate>
|
|
267
|
+
<button
|
|
268
|
+
kendoButton
|
|
269
|
+
type="button"
|
|
270
|
+
[svgIcon]="plusIcon"
|
|
271
|
+
fillMode="flat"
|
|
272
|
+
rounded="medium"
|
|
273
|
+
[disabled]="isDisabled(grid)"
|
|
274
|
+
(click)="addData()"
|
|
275
|
+
>
|
|
276
|
+
{{ messageFor('configurationSeriesAdd') }}
|
|
277
|
+
</button>
|
|
278
|
+
</ng-template>
|
|
279
|
+
<kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
|
|
280
|
+
<kendo-grid-column field="name" title="">
|
|
281
|
+
</kendo-grid-column>
|
|
282
|
+
<kendo-grid-command-column [width]="40">
|
|
283
|
+
<ng-template kendoGridCellTemplate>
|
|
284
|
+
<button
|
|
285
|
+
[svgIcon]="trashIcon"
|
|
286
|
+
kendoGridRemoveCommand
|
|
287
|
+
fillMode="flat"
|
|
307
288
|
rounded="medium"
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
</
|
|
311
|
-
|
|
312
|
-
|
|
289
|
+
[disabled]="stateService.state.series.length < 2"
|
|
290
|
+
></button>
|
|
291
|
+
</ng-template>
|
|
292
|
+
</kendo-grid-command-column>
|
|
293
|
+
</kendo-grid>
|
|
294
|
+
</fieldset>
|
|
295
|
+
}
|
|
296
|
+
@if (stateService.state.seriesType === 'pie') {
|
|
297
|
+
<fieldset
|
|
298
|
+
class="k-form-fieldset"
|
|
299
|
+
>
|
|
300
|
+
<legend class="k-form-legend">
|
|
301
|
+
{{ messageFor('configurationValueAxis') }}
|
|
302
|
+
</legend>
|
|
303
|
+
<kendo-dropdownlist
|
|
304
|
+
[data]="stateService.state.columns"
|
|
305
|
+
[value]="stateService.state.valueField"
|
|
306
|
+
(valueChange)="updateState(valueAxisY, $event)"
|
|
307
|
+
fillMode="outline"
|
|
308
|
+
rounded="medium"
|
|
309
|
+
size="medium"
|
|
310
|
+
>
|
|
311
|
+
</kendo-dropdownlist>
|
|
312
|
+
</fieldset>
|
|
313
|
+
}
|
|
314
|
+
</form>
|
|
313
315
|
</kendo-expansionpanel>
|
|
314
|
-
|
|
316
|
+
`, 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", "adaptiveTitle", "adaptiveSubtitle", "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: "component", type: GridComponent, selector: "kendo-grid", inputs: ["data", "pageSize", "height", "rowHeight", "adaptiveMode", "detailRowHeight", "skip", "scrollable", "selectable", "sort", "size", "trackBy", "filter", "group", "virtualColumns", "filterable", "sortable", "pageable", "groupable", "gridResizable", "rowReorderable", "navigable", "autoSize", "rowClass", "rowSticky", "rowSelected", "isRowSelectable", "cellSelected", "resizable", "reorderable", "loading", "columnMenu", "hideHeader", "showInactiveTools", "isDetailExpanded", "isGroupExpanded", "dataLayoutMode"], outputs: ["filterChange", "pageChange", "groupChange", "sortChange", "selectionChange", "rowReorder", "dataStateChange", "gridStateChange", "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]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "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", "filterVariant", "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 });
|
|
315
317
|
}
|
|
316
318
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChartWizardPropertyPaneDataTabComponent, decorators: [{
|
|
317
319
|
type: Component,
|
|
@@ -321,85 +323,87 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
321
323
|
encapsulation: ViewEncapsulation.None,
|
|
322
324
|
template: `
|
|
323
325
|
<kendo-expansionpanel [title]="messageFor('configuration')" [expanded]="true">
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
>
|
|
337
|
-
</kendo-dropdownlist>
|
|
338
|
-
</fieldset>
|
|
339
|
-
<fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.state.seriesType)">
|
|
340
|
-
<legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
|
|
341
|
-
<kendo-grid
|
|
342
|
-
#grid
|
|
343
|
-
[kendoGridReactiveEditing]="createFormGroup"
|
|
344
|
-
[kendoGridBinding]="stateService.state.series"
|
|
345
|
-
[rowReorderable]="true"
|
|
346
|
-
(rowReorder)="onRowReorder(grid)"
|
|
347
|
-
(remove)="removeData($event)"
|
|
348
|
-
>
|
|
349
|
-
<ng-template kendoGridToolbarTemplate>
|
|
350
|
-
<button
|
|
351
|
-
kendoButton
|
|
352
|
-
type="button"
|
|
353
|
-
[svgIcon]="plusIcon"
|
|
354
|
-
fillMode="flat"
|
|
355
|
-
rounded="medium"
|
|
356
|
-
[disabled]="isDisabled(grid)"
|
|
357
|
-
(click)="addData()"
|
|
358
|
-
>
|
|
359
|
-
{{ messageFor('configurationSeriesAdd') }}
|
|
360
|
-
</button>
|
|
361
|
-
</ng-template>
|
|
362
|
-
<kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
|
|
363
|
-
<kendo-grid-column field="name" title="">
|
|
364
|
-
</kendo-grid-column>
|
|
365
|
-
<kendo-grid-command-column [width]="40">
|
|
366
|
-
<ng-template kendoGridCellTemplate>
|
|
367
|
-
<button
|
|
368
|
-
[svgIcon]="trashIcon"
|
|
369
|
-
kendoGridRemoveCommand
|
|
370
|
-
fillMode="flat"
|
|
371
|
-
rounded="medium"
|
|
372
|
-
[disabled]="stateService.state.series.length < 2"
|
|
373
|
-
></button>
|
|
374
|
-
</ng-template>
|
|
375
|
-
</kendo-grid-command-column>
|
|
376
|
-
</kendo-grid>
|
|
377
|
-
</fieldset>
|
|
378
|
-
<fieldset
|
|
379
|
-
class="k-form-fieldset"
|
|
380
|
-
*ngIf="stateService.state.seriesType === 'pie'"
|
|
326
|
+
<form class="k-form k-form-md">
|
|
327
|
+
<fieldset class="k-form-fieldset">
|
|
328
|
+
<legend class="k-form-legend">
|
|
329
|
+
{{ stateService.state.seriesType === 'scatter' ? messageFor('configurationXAxis') : messageFor('configurationCategoryAxis') }}
|
|
330
|
+
</legend>
|
|
331
|
+
<kendo-dropdownlist
|
|
332
|
+
[data]="stateService.state.columns"
|
|
333
|
+
[value]="stateService.state.categoryField"
|
|
334
|
+
(valueChange)="updateState(categoryAxisX, $event)"
|
|
335
|
+
fillMode="outline"
|
|
336
|
+
rounded="medium"
|
|
337
|
+
size="medium"
|
|
381
338
|
>
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
339
|
+
</kendo-dropdownlist>
|
|
340
|
+
</fieldset>
|
|
341
|
+
@if (isCategorical(stateService.state.seriesType)) {
|
|
342
|
+
<fieldset class="k-form-fieldset">
|
|
343
|
+
<legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
|
|
344
|
+
<kendo-grid
|
|
345
|
+
#grid
|
|
346
|
+
[kendoGridReactiveEditing]="createFormGroup"
|
|
347
|
+
[kendoGridBinding]="stateService.state.series"
|
|
348
|
+
[rowReorderable]="true"
|
|
349
|
+
(rowReorder)="onRowReorder(grid)"
|
|
350
|
+
(remove)="removeData($event)"
|
|
351
|
+
>
|
|
352
|
+
<ng-template kendoGridToolbarTemplate>
|
|
353
|
+
<button
|
|
354
|
+
kendoButton
|
|
355
|
+
type="button"
|
|
356
|
+
[svgIcon]="plusIcon"
|
|
357
|
+
fillMode="flat"
|
|
358
|
+
rounded="medium"
|
|
359
|
+
[disabled]="isDisabled(grid)"
|
|
360
|
+
(click)="addData()"
|
|
361
|
+
>
|
|
362
|
+
{{ messageFor('configurationSeriesAdd') }}
|
|
363
|
+
</button>
|
|
364
|
+
</ng-template>
|
|
365
|
+
<kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
|
|
366
|
+
<kendo-grid-column field="name" title="">
|
|
367
|
+
</kendo-grid-column>
|
|
368
|
+
<kendo-grid-command-column [width]="40">
|
|
369
|
+
<ng-template kendoGridCellTemplate>
|
|
370
|
+
<button
|
|
371
|
+
[svgIcon]="trashIcon"
|
|
372
|
+
kendoGridRemoveCommand
|
|
373
|
+
fillMode="flat"
|
|
390
374
|
rounded="medium"
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
</
|
|
394
|
-
|
|
395
|
-
|
|
375
|
+
[disabled]="stateService.state.series.length < 2"
|
|
376
|
+
></button>
|
|
377
|
+
</ng-template>
|
|
378
|
+
</kendo-grid-command-column>
|
|
379
|
+
</kendo-grid>
|
|
380
|
+
</fieldset>
|
|
381
|
+
}
|
|
382
|
+
@if (stateService.state.seriesType === 'pie') {
|
|
383
|
+
<fieldset
|
|
384
|
+
class="k-form-fieldset"
|
|
385
|
+
>
|
|
386
|
+
<legend class="k-form-legend">
|
|
387
|
+
{{ messageFor('configurationValueAxis') }}
|
|
388
|
+
</legend>
|
|
389
|
+
<kendo-dropdownlist
|
|
390
|
+
[data]="stateService.state.columns"
|
|
391
|
+
[value]="stateService.state.valueField"
|
|
392
|
+
(valueChange)="updateState(valueAxisY, $event)"
|
|
393
|
+
fillMode="outline"
|
|
394
|
+
rounded="medium"
|
|
395
|
+
size="medium"
|
|
396
|
+
>
|
|
397
|
+
</kendo-dropdownlist>
|
|
398
|
+
</fieldset>
|
|
399
|
+
}
|
|
400
|
+
</form>
|
|
396
401
|
</kendo-expansionpanel>
|
|
397
|
-
|
|
402
|
+
`,
|
|
398
403
|
standalone: true,
|
|
399
404
|
imports: [
|
|
400
405
|
ExpansionPanelComponent,
|
|
401
406
|
DropDownListComponent,
|
|
402
|
-
NgIf,
|
|
403
407
|
GridComponent,
|
|
404
408
|
ReactiveEditingDirective,
|
|
405
409
|
DataBindingDirective,
|
|
@@ -840,76 +844,86 @@ class ChartWizardPropertyPaneFormFieldComponent {
|
|
|
840
844
|
}
|
|
841
845
|
}
|
|
842
846
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChartWizardPropertyPaneFormFieldComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
843
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
844
|
-
|
|
847
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", 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: `
|
|
848
|
+
@if (hasLabel && !isLabelInsideFormFieldWrap && inputType !== 'checkbox') {
|
|
849
|
+
<kendo-label class="k-form-label" [text]="text"></kendo-label>
|
|
850
|
+
}
|
|
845
851
|
<div class="k-form-field-wrap">
|
|
852
|
+
@if (hasLabel && isLabelInsideFormFieldWrap && inputType !== 'checkbox') {
|
|
846
853
|
<kendo-label
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
[text]="text"
|
|
854
|
+
class="k-form-label"
|
|
855
|
+
[text]="text"
|
|
850
856
|
></kendo-label>
|
|
857
|
+
}
|
|
858
|
+
@if (inputType === 'numeric') {
|
|
851
859
|
<kendo-numerictextbox
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
[placeholder]="placeholder"
|
|
860
|
+
fillMode="outline"
|
|
861
|
+
rounded="medium"
|
|
862
|
+
[value]="value"
|
|
863
|
+
(valueChange)="valueChange.emit($event)"
|
|
864
|
+
[placeholder]="placeholder"
|
|
858
865
|
></kendo-numerictextbox>
|
|
866
|
+
}
|
|
867
|
+
@if (inputType === 'colorPicker') {
|
|
859
868
|
<kendo-colorpicker
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
(valueChange)="valueChange.emit($event)"
|
|
869
|
+
fillMode="outline"
|
|
870
|
+
rounded="medium"
|
|
871
|
+
[value]="value"
|
|
872
|
+
[disabled]="disabled"
|
|
873
|
+
(valueChange)="valueChange.emit($event)"
|
|
866
874
|
></kendo-colorpicker>
|
|
875
|
+
}
|
|
876
|
+
@if (inputType === 'dropDownList') {
|
|
867
877
|
<kendo-dropdownlist
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
(valueChange)="valueChange.emit($event)"
|
|
878
|
+
[data]="data"
|
|
879
|
+
textField="text"
|
|
880
|
+
valueField="value"
|
|
881
|
+
[valuePrimitive]="true"
|
|
882
|
+
fillMode="outline"
|
|
883
|
+
rounded="medium"
|
|
884
|
+
size="medium"
|
|
885
|
+
[value]="value"
|
|
886
|
+
(valueChange)="valueChange.emit($event)"
|
|
878
887
|
></kendo-dropdownlist>
|
|
888
|
+
}
|
|
889
|
+
@if (inputType === 'comboBox') {
|
|
879
890
|
<kendo-combobox
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
(valueChange)="valueChange.emit($event)"
|
|
891
|
+
[data]="data"
|
|
892
|
+
[value]="value"
|
|
893
|
+
textField="text"
|
|
894
|
+
valueField="value"
|
|
895
|
+
[valuePrimitive]="true"
|
|
896
|
+
fillMode="outline"
|
|
897
|
+
rounded="medium"
|
|
898
|
+
size="medium"
|
|
899
|
+
[placeholder]="placeholder"
|
|
900
|
+
(valueChange)="valueChange.emit($event)"
|
|
891
901
|
></kendo-combobox>
|
|
902
|
+
}
|
|
903
|
+
@if (inputType === 'text') {
|
|
892
904
|
<kendo-textbox
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
(valueChange)="valueChange.emit($event)"
|
|
905
|
+
fillMode="outline"
|
|
906
|
+
rounded="medium"
|
|
907
|
+
[placeholder]="placeholder"
|
|
908
|
+
[value]="value"
|
|
909
|
+
(valueChange)="valueChange.emit($event)"
|
|
899
910
|
></kendo-textbox>
|
|
911
|
+
}
|
|
912
|
+
@if (inputType === 'checkbox') {
|
|
900
913
|
<kendo-checkbox
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
(checkedStateChange)="valueChange.emit($event)"
|
|
914
|
+
class="k-checkbox-md k-rounded-md"
|
|
915
|
+
[checkedState]="value"
|
|
916
|
+
(checkedStateChange)="valueChange.emit($event)"
|
|
905
917
|
></kendo-checkbox>
|
|
918
|
+
}
|
|
919
|
+
@if (hasLabel && isLabelInsideFormFieldWrap && inputType === 'checkbox') {
|
|
906
920
|
<kendo-label
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
[text]="text"
|
|
921
|
+
class="k-checkbox-label"
|
|
922
|
+
[text]="text"
|
|
910
923
|
></kendo-label>
|
|
924
|
+
}
|
|
911
925
|
</div>
|
|
912
|
-
|
|
926
|
+
`, isInline: true, dependencies: [{ kind: "component", type: LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "adaptiveMode", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "adaptiveTitle", "adaptiveSubtitle", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "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: "component", type: ComboBoxComponent, selector: "kendo-combobox", inputs: ["icon", "svgIcon", "inputAttributes", "showStickyHeader", "focusableId", "allowCustom", "data", "value", "textField", "valueField", "valuePrimitive", "valueNormalizer", "placeholder", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "loading", "suggest", "clearButton", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode"], outputs: ["valueChange", "selectionChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur", "inputFocus", "inputBlur", "escape"], exportAs: ["kendoComboBox"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
913
927
|
}
|
|
914
928
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChartWizardPropertyPaneFormFieldComponent, decorators: [{
|
|
915
929
|
type: Component,
|
|
@@ -917,78 +931,87 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
917
931
|
selector: 'kendo-chartwizard-property-pane-form-field',
|
|
918
932
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
919
933
|
template: `
|
|
920
|
-
|
|
934
|
+
@if (hasLabel && !isLabelInsideFormFieldWrap && inputType !== 'checkbox') {
|
|
935
|
+
<kendo-label class="k-form-label" [text]="text"></kendo-label>
|
|
936
|
+
}
|
|
921
937
|
<div class="k-form-field-wrap">
|
|
938
|
+
@if (hasLabel && isLabelInsideFormFieldWrap && inputType !== 'checkbox') {
|
|
922
939
|
<kendo-label
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
[text]="text"
|
|
940
|
+
class="k-form-label"
|
|
941
|
+
[text]="text"
|
|
926
942
|
></kendo-label>
|
|
943
|
+
}
|
|
944
|
+
@if (inputType === 'numeric') {
|
|
927
945
|
<kendo-numerictextbox
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
[placeholder]="placeholder"
|
|
946
|
+
fillMode="outline"
|
|
947
|
+
rounded="medium"
|
|
948
|
+
[value]="value"
|
|
949
|
+
(valueChange)="valueChange.emit($event)"
|
|
950
|
+
[placeholder]="placeholder"
|
|
934
951
|
></kendo-numerictextbox>
|
|
952
|
+
}
|
|
953
|
+
@if (inputType === 'colorPicker') {
|
|
935
954
|
<kendo-colorpicker
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
(valueChange)="valueChange.emit($event)"
|
|
955
|
+
fillMode="outline"
|
|
956
|
+
rounded="medium"
|
|
957
|
+
[value]="value"
|
|
958
|
+
[disabled]="disabled"
|
|
959
|
+
(valueChange)="valueChange.emit($event)"
|
|
942
960
|
></kendo-colorpicker>
|
|
961
|
+
}
|
|
962
|
+
@if (inputType === 'dropDownList') {
|
|
943
963
|
<kendo-dropdownlist
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
(valueChange)="valueChange.emit($event)"
|
|
964
|
+
[data]="data"
|
|
965
|
+
textField="text"
|
|
966
|
+
valueField="value"
|
|
967
|
+
[valuePrimitive]="true"
|
|
968
|
+
fillMode="outline"
|
|
969
|
+
rounded="medium"
|
|
970
|
+
size="medium"
|
|
971
|
+
[value]="value"
|
|
972
|
+
(valueChange)="valueChange.emit($event)"
|
|
954
973
|
></kendo-dropdownlist>
|
|
974
|
+
}
|
|
975
|
+
@if (inputType === 'comboBox') {
|
|
955
976
|
<kendo-combobox
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
(valueChange)="valueChange.emit($event)"
|
|
977
|
+
[data]="data"
|
|
978
|
+
[value]="value"
|
|
979
|
+
textField="text"
|
|
980
|
+
valueField="value"
|
|
981
|
+
[valuePrimitive]="true"
|
|
982
|
+
fillMode="outline"
|
|
983
|
+
rounded="medium"
|
|
984
|
+
size="medium"
|
|
985
|
+
[placeholder]="placeholder"
|
|
986
|
+
(valueChange)="valueChange.emit($event)"
|
|
967
987
|
></kendo-combobox>
|
|
988
|
+
}
|
|
989
|
+
@if (inputType === 'text') {
|
|
968
990
|
<kendo-textbox
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
(valueChange)="valueChange.emit($event)"
|
|
991
|
+
fillMode="outline"
|
|
992
|
+
rounded="medium"
|
|
993
|
+
[placeholder]="placeholder"
|
|
994
|
+
[value]="value"
|
|
995
|
+
(valueChange)="valueChange.emit($event)"
|
|
975
996
|
></kendo-textbox>
|
|
997
|
+
}
|
|
998
|
+
@if (inputType === 'checkbox') {
|
|
976
999
|
<kendo-checkbox
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
(checkedStateChange)="valueChange.emit($event)"
|
|
1000
|
+
class="k-checkbox-md k-rounded-md"
|
|
1001
|
+
[checkedState]="value"
|
|
1002
|
+
(checkedStateChange)="valueChange.emit($event)"
|
|
981
1003
|
></kendo-checkbox>
|
|
1004
|
+
}
|
|
1005
|
+
@if (hasLabel && isLabelInsideFormFieldWrap && inputType === 'checkbox') {
|
|
982
1006
|
<kendo-label
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
[text]="text"
|
|
1007
|
+
class="k-checkbox-label"
|
|
1008
|
+
[text]="text"
|
|
986
1009
|
></kendo-label>
|
|
1010
|
+
}
|
|
987
1011
|
</div>
|
|
988
|
-
|
|
1012
|
+
`,
|
|
989
1013
|
standalone: true,
|
|
990
1014
|
imports: [
|
|
991
|
-
NgIf,
|
|
992
1015
|
LabelComponent,
|
|
993
1016
|
NumericTextBoxComponent,
|
|
994
1017
|
ColorPickerComponent,
|
|
@@ -1218,419 +1241,423 @@ class ChartWizardPropertyPaneFormatTabComponent {
|
|
|
1218
1241
|
return this.localization.get(key);
|
|
1219
1242
|
}
|
|
1220
1243
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChartWizardPropertyPaneFormatTabComponent, deps: [{ token: StateService }, { token: ChartWizardLocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1221
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1244
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ChartWizardPropertyPaneFormatTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-format-tab", ngImport: i0, template: `
|
|
1222
1245
|
<section>
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1246
|
+
<kendo-expansionpanel
|
|
1247
|
+
[style.max-width.px]="576"
|
|
1248
|
+
[title]="messageFor('formatChartArea')"
|
|
1249
|
+
[expanded]="true"
|
|
1250
|
+
[attr.dir]="stateService.direction"
|
|
1228
1251
|
>
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1252
|
+
<form class="k-form k-form-md">
|
|
1253
|
+
<fieldset class="k-form-fieldset">
|
|
1254
|
+
<legend class="k-form-legend">{{ messageFor('formatChartAreaMargins') }}</legend>
|
|
1255
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1256
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1257
|
+
[text]="messageFor('formatChartAreaMarginsLeft')"
|
|
1258
|
+
inputType="numeric"
|
|
1259
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1260
|
+
[value]="$any(stateService.state.area.margin).left"
|
|
1261
|
+
(valueChange)="updateState(areaMarginLeft, $event)"
|
|
1262
|
+
>
|
|
1263
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1264
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1265
|
+
[text]="messageFor('formatChartAreaMarginsRight')"
|
|
1266
|
+
inputType="numeric"
|
|
1267
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1268
|
+
[value]="$any(stateService.state.area.margin).right"
|
|
1269
|
+
(valueChange)="updateState(areaMarginRight, $event)"
|
|
1270
|
+
>
|
|
1271
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1272
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1273
|
+
[text]="messageFor('formatChartAreaMarginsTop')"
|
|
1274
|
+
inputType="numeric"
|
|
1275
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1276
|
+
[value]="$any(stateService.state.area.margin).top"
|
|
1277
|
+
(valueChange)="updateState(areaMarginTop, $event)"
|
|
1278
|
+
>
|
|
1279
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1280
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1281
|
+
[text]="messageFor('formatChartAreaMarginsBottom')"
|
|
1282
|
+
inputType="numeric"
|
|
1283
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1284
|
+
[value]="$any(stateService.state.area.margin).bottom"
|
|
1285
|
+
(valueChange)="updateState(areaMarginBottom, $event)"
|
|
1286
|
+
>
|
|
1287
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1288
|
+
</div>
|
|
1289
|
+
</fieldset>
|
|
1290
|
+
<fieldset class="k-form-fieldset">
|
|
1291
|
+
<legend class="k-form-legend">{{ messageFor('formatChartAreaBackground') }}</legend>
|
|
1292
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1293
|
+
[text]="messageFor('formatChartAreaBackgroundColor')"
|
|
1294
|
+
inputType="colorPicker"
|
|
1295
|
+
[value]="stateService.state.area?.background"
|
|
1296
|
+
(valueChange)="updateState(areaBackground, $event)"
|
|
1297
|
+
>
|
|
1298
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1299
|
+
</fieldset>
|
|
1300
|
+
</form>
|
|
1301
|
+
</kendo-expansionpanel>
|
|
1279
1302
|
</section>
|
|
1280
1303
|
<section>
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1304
|
+
<kendo-expansionpanel
|
|
1305
|
+
[style.max-width.px]="576"
|
|
1306
|
+
[title]="messageFor('formatTitle')"
|
|
1307
|
+
[expanded]="true"
|
|
1285
1308
|
>
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1309
|
+
<form class="k-form k-form-md">
|
|
1310
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1311
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1312
|
+
[text]="messageFor('formatTitleApplyTo')"
|
|
1313
|
+
inputType="dropDownList"
|
|
1314
|
+
[data]="chartTitles"
|
|
1315
|
+
[colSpan]="2"
|
|
1316
|
+
[value]="stateService.currentTitle"
|
|
1317
|
+
(valueChange)="changeCurrentTitle($event)"
|
|
1318
|
+
>
|
|
1319
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1320
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1321
|
+
[text]="messageFor('formatTitleLabel')"
|
|
1322
|
+
inputType="text"
|
|
1323
|
+
[colSpan]="2"
|
|
1324
|
+
[value]="chartTitleTypeText"
|
|
1325
|
+
(valueChange)="updateState(chartTitleTypeAction, $event)"
|
|
1326
|
+
>
|
|
1327
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1328
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1329
|
+
[text]="messageFor('formatTitleFont')"
|
|
1330
|
+
inputType="comboBox"
|
|
1331
|
+
[data]="fontNames"
|
|
1332
|
+
[colSpan]="2"
|
|
1333
|
+
[value]="chartTitleTypeFont"
|
|
1334
|
+
[placeholder]="messageFor('formatTitleFontPlaceholder')"
|
|
1335
|
+
(valueChange)="updateState(chartTitleTypeFontAction, $event)"
|
|
1336
|
+
>
|
|
1337
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1338
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1339
|
+
[text]="messageFor('formatTitleSize')"
|
|
1340
|
+
inputType="comboBox"
|
|
1341
|
+
[placeholder]="messageFor('formatTitleSizePlaceholder')"
|
|
1342
|
+
[data]="fontSizes"
|
|
1343
|
+
[value]="chartTitleTypeFontSize"
|
|
1344
|
+
(valueChange)="updateState(chartTitleTypeFontSizeAction, $event)"
|
|
1345
|
+
>
|
|
1346
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1347
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1348
|
+
[text]="messageFor('formatTitleColor')"
|
|
1349
|
+
inputType="colorPicker"
|
|
1350
|
+
[value]="chartTitleTypeColor"
|
|
1351
|
+
(valueChange)="updateState(chartTitleTypeColorAction, $event)"
|
|
1352
|
+
>
|
|
1353
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1354
|
+
</div>
|
|
1355
|
+
</form>
|
|
1356
|
+
</kendo-expansionpanel>
|
|
1334
1357
|
</section>
|
|
1335
1358
|
<section>
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1359
|
+
<kendo-expansionpanel
|
|
1360
|
+
[style.max-width.px]="576"
|
|
1361
|
+
[title]="messageFor('formatLegend')"
|
|
1362
|
+
[expanded]="true"
|
|
1340
1363
|
>
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1364
|
+
<form class="k-form k-form-md">
|
|
1365
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1366
|
+
<kendo-label [for]="toggleLegend" [text]="messageFor('formatLegendShowLegend')"></kendo-label>
|
|
1367
|
+
<kendo-switch
|
|
1368
|
+
#toggleLegend
|
|
1369
|
+
onLabel="On"
|
|
1370
|
+
offLabel="Off"
|
|
1371
|
+
thumbRounded="full"
|
|
1372
|
+
size="medium"
|
|
1373
|
+
[checked]="stateService.state.legend?.visible"
|
|
1374
|
+
(valueChange)="updateState(legendVisible, $event)"
|
|
1375
|
+
></kendo-switch>
|
|
1376
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1377
|
+
[text]="messageFor('formatLegendFont')"
|
|
1378
|
+
inputType="comboBox"
|
|
1379
|
+
[data]="fontNames"
|
|
1380
|
+
[colSpan]="2"
|
|
1381
|
+
[placeholder]="messageFor('formatLegendFontPlaceholder')"
|
|
1382
|
+
[value]="parseFont(stateService.state.legend?.labels?.font).name"
|
|
1383
|
+
(valueChange)="updateState(legendFontName, $event)"
|
|
1384
|
+
>
|
|
1385
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1386
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1387
|
+
[text]="messageFor('formatLegendSize')"
|
|
1388
|
+
inputType="comboBox"
|
|
1389
|
+
[data]="fontSizes"
|
|
1390
|
+
[placeholder]="messageFor('formatLegendSizePlaceholder')"
|
|
1391
|
+
[value]="parseFont(stateService.state.legend?.labels?.font).size"
|
|
1392
|
+
(valueChange)="updateState(legendFontSize, $event)"
|
|
1393
|
+
>
|
|
1394
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1395
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1396
|
+
[text]="messageFor('formatLegendColor')"
|
|
1397
|
+
inputType="colorPicker"
|
|
1398
|
+
[value]="stateService.state.legend?.labels?.color"
|
|
1399
|
+
(valueChange)="updateState(legendColor, $event)"
|
|
1400
|
+
>
|
|
1401
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1402
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1403
|
+
[text]="messageFor('formatLegendPosition')"
|
|
1404
|
+
inputType="dropDownList"
|
|
1405
|
+
[colSpan]="2"
|
|
1406
|
+
[data]="legendPositions"
|
|
1407
|
+
[value]="stateService.state.legend?.position"
|
|
1408
|
+
(valueChange)="updateState(legendPosition, $event)"
|
|
1409
|
+
>
|
|
1410
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1411
|
+
</div>
|
|
1412
|
+
</form>
|
|
1413
|
+
</kendo-expansionpanel>
|
|
1391
1414
|
</section>
|
|
1392
1415
|
<section>
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1416
|
+
<kendo-expansionpanel
|
|
1417
|
+
[style.max-width.px]="576"
|
|
1418
|
+
[title]="messageFor('formatSeries')"
|
|
1419
|
+
[expanded]="true"
|
|
1397
1420
|
>
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1421
|
+
<form class="k-form k-form-md">
|
|
1422
|
+
<div class="k-form-field">
|
|
1423
|
+
<kendo-label [for]="seriesDropDown" class="k-form-label" [text]="messageFor('formatSeriesApplyTo')"></kendo-label>
|
|
1424
|
+
<div class="k-form-field-wrap">
|
|
1425
|
+
<kendo-dropdownlist
|
|
1426
|
+
#seriesDropDown
|
|
1427
|
+
[data]="seriesData"
|
|
1428
|
+
textField="text"
|
|
1429
|
+
valueField="name"
|
|
1430
|
+
fillMode="outline"
|
|
1431
|
+
rounded="medium"
|
|
1432
|
+
size="medium"
|
|
1433
|
+
[value]="stateService.currentSeries"
|
|
1434
|
+
(valueChange)="updateCurrentSeries($event)"
|
|
1435
|
+
></kendo-dropdownlist>
|
|
1436
|
+
</div>
|
|
1437
|
+
</div>
|
|
1438
|
+
|
|
1439
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1440
|
+
[text]="messageFor('formatSeriesColor')"
|
|
1441
|
+
[value]="stateService.currentSeries?.color"
|
|
1442
|
+
inputType="colorPicker"
|
|
1443
|
+
[disabled]="stateService.currentSeries.name === defaultAllSeriesItem.name"
|
|
1444
|
+
(valueChange)="updateSeriesColor($event)"
|
|
1445
|
+
>
|
|
1446
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1447
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1448
|
+
[text]="messageFor('formatSeriesShowLabels')"
|
|
1449
|
+
[value]="showLabels"
|
|
1450
|
+
[isLabelInsideFormFieldWrap]="true"
|
|
1451
|
+
[colSpan]="2"
|
|
1452
|
+
inputType="checkbox"
|
|
1453
|
+
(valueChange)="toggleSeriesLabels($event)"
|
|
1454
|
+
>
|
|
1455
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1456
|
+
</form>
|
|
1457
|
+
</kendo-expansionpanel>
|
|
1458
|
+
</section>
|
|
1459
|
+
@if (stateService.state.seriesType !== 'pie') {
|
|
1460
|
+
<section class="k-row-start-1 k-row-end-3 k-col-start-3">
|
|
1461
|
+
<kendo-expansionpanel
|
|
1462
|
+
[style.max-width.px]="576"
|
|
1463
|
+
[title]="stateService.state.seriesType === 'scatter' ? messageFor('formatXAxis') : messageFor('formatCategoryAxis')"
|
|
1464
|
+
[expanded]="true"
|
|
1465
|
+
>
|
|
1466
|
+
<form class="k-form k-form-md">
|
|
1467
|
+
<fieldset class="k-form-fieldset">
|
|
1468
|
+
<legend class="k-form-legend">{{ messageFor('formatCategoryAxisTitle') }}</legend>
|
|
1469
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1416
1470
|
<kendo-chartwizard-property-pane-form-field
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1471
|
+
inputType="text"
|
|
1472
|
+
[hasLabel]="false"
|
|
1473
|
+
[colSpan]="2"
|
|
1474
|
+
[placeholder]="messageFor('formatCategoryAxisTitlePlaceholder')"
|
|
1475
|
+
[value]="stateService.state.categoryAxis[0]?.title?.text || null"
|
|
1476
|
+
(valueChange)="updateState(categoryAxisTitleText, $event)"
|
|
1477
|
+
>
|
|
1423
1478
|
</kendo-chartwizard-property-pane-form-field>
|
|
1424
1479
|
<kendo-chartwizard-property-pane-form-field
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1480
|
+
[text]="messageFor('formatCategoryAxisTitleFont')"
|
|
1481
|
+
inputType="comboBox"
|
|
1482
|
+
[data]="fontNames"
|
|
1483
|
+
[colSpan]="2"
|
|
1484
|
+
[placeholder]="messageFor('formatCategoryAxisTitleFontPlaceholder')"
|
|
1485
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).name"
|
|
1486
|
+
(valueChange)="updateState(categoryAxisTitleFontName, $event)"
|
|
1487
|
+
>
|
|
1432
1488
|
</kendo-chartwizard-property-pane-form-field>
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
[value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).size"
|
|
1502
|
-
(valueChange)="updateState(categoryAxisLabelsFontSize, $event)"
|
|
1503
|
-
>
|
|
1504
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1505
|
-
<kendo-chartwizard-property-pane-form-field
|
|
1506
|
-
[text]="messageFor('formatCategoryAxisLabelsColor')"
|
|
1507
|
-
inputType="colorPicker"
|
|
1508
|
-
[value]="stateService.state.categoryAxis[0]?.labels?.color"
|
|
1509
|
-
(valueChange)="updateState(categoryAxisLabelsColor, $event)"
|
|
1510
|
-
>
|
|
1511
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1512
|
-
<kendo-chartwizard-property-pane-form-field
|
|
1513
|
-
[text]="messageFor('formatCategoryAxisLabelsRotation')"
|
|
1514
|
-
inputType="dropDownList"
|
|
1515
|
-
[data]="labelsCategoryAxisRotation"
|
|
1516
|
-
[value]="stateService.state.categoryAxis[0]?.labels?.rotation"
|
|
1517
|
-
(valueChange)="updateState(categoryAxisLabelsRotation, $event)"
|
|
1518
|
-
>
|
|
1519
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1520
|
-
<span></span>
|
|
1521
|
-
<kendo-chartwizard-property-pane-form-field
|
|
1522
|
-
[text]="messageFor('formatCategoryAxisLabelsReverseOrder')"
|
|
1523
|
-
[isLabelInsideFormFieldWrap]="true"
|
|
1524
|
-
inputType="checkbox"
|
|
1525
|
-
[colSpan]="2"
|
|
1526
|
-
[value]="stateService.state.categoryAxis[0]?.reverse"
|
|
1527
|
-
(valueChange)="updateState(categoryAxisReverseOrder, $event)"
|
|
1528
|
-
>
|
|
1529
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1530
|
-
</div>
|
|
1531
|
-
</fieldset>
|
|
1532
|
-
</form>
|
|
1489
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1490
|
+
[text]="messageFor('formatCategoryAxisTitleSize')"
|
|
1491
|
+
inputType="comboBox"
|
|
1492
|
+
[placeholder]="messageFor('formatCategoryAxisTitleSizePlaceholder')"
|
|
1493
|
+
[data]="fontSizes"
|
|
1494
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).size"
|
|
1495
|
+
(valueChange)="updateState(categoryAxisTitleFontSize, $event)"
|
|
1496
|
+
>
|
|
1497
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1498
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1499
|
+
[text]="messageFor('formatCategoryAxisTitleColor')"
|
|
1500
|
+
inputType="colorPicker"
|
|
1501
|
+
[value]="stateService.state.categoryAxis[0]?.title?.color"
|
|
1502
|
+
(valueChange)="updateState(categoryAxisTitleColor, $event)"
|
|
1503
|
+
>
|
|
1504
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1505
|
+
</div>
|
|
1506
|
+
</fieldset>
|
|
1507
|
+
<fieldset class="k-form-fieldset">
|
|
1508
|
+
<legend class="k-form-legend">{{ messageFor('formatCategoryAxisLabels') }}</legend>
|
|
1509
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1510
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1511
|
+
[text]="messageFor('formatCategoryAxisLabelsFont')"
|
|
1512
|
+
inputType="comboBox"
|
|
1513
|
+
[data]="fontNames"
|
|
1514
|
+
[colSpan]="2"
|
|
1515
|
+
[placeholder]="messageFor('formatCategoryAxisLabelsFontPlaceholder')"
|
|
1516
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).name"
|
|
1517
|
+
(valueChange)="updateState(categoryAxisLabelsFontName, $event)"
|
|
1518
|
+
>
|
|
1519
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1520
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1521
|
+
[text]="messageFor('formatCategoryAxisLabelsSize')"
|
|
1522
|
+
inputType="comboBox"
|
|
1523
|
+
[data]="fontSizes"
|
|
1524
|
+
[placeholder]="messageFor('formatCategoryAxisLabelsSizePlaceholder')"
|
|
1525
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).size"
|
|
1526
|
+
(valueChange)="updateState(categoryAxisLabelsFontSize, $event)"
|
|
1527
|
+
>
|
|
1528
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1529
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1530
|
+
[text]="messageFor('formatCategoryAxisLabelsColor')"
|
|
1531
|
+
inputType="colorPicker"
|
|
1532
|
+
[value]="stateService.state.categoryAxis[0]?.labels?.color"
|
|
1533
|
+
(valueChange)="updateState(categoryAxisLabelsColor, $event)"
|
|
1534
|
+
>
|
|
1535
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1536
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1537
|
+
[text]="messageFor('formatCategoryAxisLabelsRotation')"
|
|
1538
|
+
inputType="dropDownList"
|
|
1539
|
+
[data]="labelsCategoryAxisRotation"
|
|
1540
|
+
[value]="stateService.state.categoryAxis[0]?.labels?.rotation"
|
|
1541
|
+
(valueChange)="updateState(categoryAxisLabelsRotation, $event)"
|
|
1542
|
+
>
|
|
1543
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1544
|
+
<span></span>
|
|
1545
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1546
|
+
[text]="messageFor('formatCategoryAxisLabelsReverseOrder')"
|
|
1547
|
+
[isLabelInsideFormFieldWrap]="true"
|
|
1548
|
+
inputType="checkbox"
|
|
1549
|
+
[colSpan]="2"
|
|
1550
|
+
[value]="stateService.state.categoryAxis[0]?.reverse"
|
|
1551
|
+
(valueChange)="updateState(categoryAxisReverseOrder, $event)"
|
|
1552
|
+
>
|
|
1553
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1554
|
+
</div>
|
|
1555
|
+
</fieldset>
|
|
1556
|
+
</form>
|
|
1533
1557
|
</kendo-expansionpanel>
|
|
1534
|
-
|
|
1535
|
-
|
|
1558
|
+
</section>
|
|
1559
|
+
}
|
|
1560
|
+
@if (stateService.state.seriesType !== 'pie') {
|
|
1561
|
+
<section class="k-row-start-1 k-row-end-3 k-col-start-4">
|
|
1536
1562
|
<kendo-expansionpanel
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1563
|
+
[style.max-width.px]="576"
|
|
1564
|
+
[title]="stateService.state.seriesType === 'scatter' ? messageFor('formatYAxis') : messageFor('formatValueAxis')"
|
|
1565
|
+
[expanded]="true"
|
|
1566
|
+
>
|
|
1567
|
+
<form class="k-form k-form-md">
|
|
1568
|
+
<fieldset class="k-form-fieldset">
|
|
1569
|
+
<legend class="k-form-legend">{{ messageFor('formatValueAxisTitle') }}</legend>
|
|
1570
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1571
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1572
|
+
inputType="text"
|
|
1573
|
+
[hasLabel]="false"
|
|
1574
|
+
[colSpan]="2"
|
|
1575
|
+
[placeholder]="messageFor('formatValueAxisTitlePlaceholder')"
|
|
1576
|
+
[value]="stateService.state.valueAxis[0]?.title?.text || null"
|
|
1577
|
+
(valueChange)="updateState(valueAxisTitleText, $event)"
|
|
1578
|
+
>
|
|
1579
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1580
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1581
|
+
[text]="messageFor('formatValueAxisTitleFont')"
|
|
1582
|
+
inputType="comboBox"
|
|
1583
|
+
[colSpan]="2"
|
|
1584
|
+
[data]="fontNames"
|
|
1585
|
+
[placeholder]="messageFor('formatValueAxisTitleFontPlaceholder')"
|
|
1586
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.title?.font).name"
|
|
1587
|
+
(valueChange)="updateState(valueAxisTitleFontName, $event)"
|
|
1588
|
+
>
|
|
1589
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1590
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1591
|
+
[text]="messageFor('formatValueAxisTitleSize')"
|
|
1592
|
+
inputType="comboBox"
|
|
1593
|
+
[placeholder]="messageFor('formatValueAxisTitleSizePlaceholder')"
|
|
1594
|
+
[data]="fontSizes"
|
|
1595
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.title?.font).size"
|
|
1596
|
+
(valueChange)="updateState(valueAxisTitleFontSize, $event)"
|
|
1597
|
+
>
|
|
1598
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1599
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1600
|
+
[text]="messageFor('formatValueAxisTitleColor')"
|
|
1601
|
+
inputType="colorPicker"
|
|
1602
|
+
[value]="stateService.state.valueAxis[0]?.title?.color"
|
|
1603
|
+
(valueChange)="updateState(valueAxisTitleColor, $event)"
|
|
1604
|
+
>
|
|
1605
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1606
|
+
</div>
|
|
1607
|
+
</fieldset>
|
|
1608
|
+
<fieldset class="k-form-fieldset">
|
|
1609
|
+
<legend class="k-form-legend">{{ messageFor('formatValueAxisLabels') }}</legend>
|
|
1610
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1611
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1612
|
+
[text]="messageFor('formatValueAxisLabelsFormat')"
|
|
1613
|
+
[colSpan]="2"
|
|
1614
|
+
inputType="dropDownList"
|
|
1615
|
+
[data]="labelFormats"
|
|
1616
|
+
[value]="labelFormatValue"
|
|
1617
|
+
(valueChange)="updateState(valueAxisLabelsFormat, $event)"
|
|
1618
|
+
>
|
|
1619
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1620
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1621
|
+
[text]="messageFor('formatValueAxisLabelsFont')"
|
|
1622
|
+
inputType="comboBox"
|
|
1623
|
+
[data]="fontNames"
|
|
1624
|
+
[colSpan]="2"
|
|
1625
|
+
[placeholder]="messageFor('formatValueAxisLabelsFontPlaceholder')"
|
|
1626
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).name"
|
|
1627
|
+
(valueChange)="updateState(valueAxisLabelsFontName, $event)"
|
|
1628
|
+
>
|
|
1629
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1630
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1631
|
+
[text]="messageFor('formatValueAxisLabelsSize')"
|
|
1632
|
+
inputType="comboBox"
|
|
1633
|
+
[data]="fontSizes"
|
|
1634
|
+
[placeholder]="messageFor('formatValueAxisLabelsSizePlaceholder')"
|
|
1635
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).size"
|
|
1636
|
+
(valueChange)="updateState(valueAxisLabelsFontSize, $event)"
|
|
1637
|
+
>
|
|
1638
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1639
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1640
|
+
[text]="messageFor('formatValueAxisLabelsColor')"
|
|
1641
|
+
inputType="colorPicker"
|
|
1642
|
+
[value]="stateService.state.valueAxis[0]?.labels?.color"
|
|
1643
|
+
(valueChange)="updateState(valueAxisLabelsColor, $event)"
|
|
1644
|
+
>
|
|
1645
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1646
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1647
|
+
[text]="messageFor('formatValueAxisLabelsRotation')"
|
|
1648
|
+
inputType="dropDownList"
|
|
1649
|
+
[data]="labelsValueAxisRotation"
|
|
1650
|
+
[value]="stateService.state.valueAxis[0]?.labels?.rotation"
|
|
1651
|
+
(valueChange)="updateState(valueAxisLabelsRotation, $event)"
|
|
1652
|
+
>
|
|
1653
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1654
|
+
</div>
|
|
1655
|
+
</fieldset>
|
|
1656
|
+
</form>
|
|
1631
1657
|
</kendo-expansionpanel>
|
|
1632
|
-
|
|
1633
|
-
|
|
1658
|
+
</section>
|
|
1659
|
+
}
|
|
1660
|
+
`, 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: ChartWizardPropertyPaneFormFieldComponent, selector: "kendo-chartwizard-property-pane-form-field", inputs: ["currentState", "action", "class", "inputType", "text", "data", "placeholder", "colSpan", "hasLabel", "isLabelInsideFormFieldWrap", "value", "disabled"], outputs: ["valueChange"] }, { kind: "component", type: LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: SwitchComponent, selector: "kendo-switch", inputs: ["focusableId", "onLabel", "offLabel", "checked", "disabled", "readonly", "tabindex", "size", "thumbRounded", "trackRounded", "tabIndex"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoSwitch"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1634
1661
|
}
|
|
1635
1662
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChartWizardPropertyPaneFormatTabComponent, decorators: [{
|
|
1636
1663
|
type: Component,
|
|
@@ -1639,425 +1666,428 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
1639
1666
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1640
1667
|
template: `
|
|
1641
1668
|
<section>
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1669
|
+
<kendo-expansionpanel
|
|
1670
|
+
[style.max-width.px]="576"
|
|
1671
|
+
[title]="messageFor('formatChartArea')"
|
|
1672
|
+
[expanded]="true"
|
|
1673
|
+
[attr.dir]="stateService.direction"
|
|
1647
1674
|
>
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1675
|
+
<form class="k-form k-form-md">
|
|
1676
|
+
<fieldset class="k-form-fieldset">
|
|
1677
|
+
<legend class="k-form-legend">{{ messageFor('formatChartAreaMargins') }}</legend>
|
|
1678
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1679
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1680
|
+
[text]="messageFor('formatChartAreaMarginsLeft')"
|
|
1681
|
+
inputType="numeric"
|
|
1682
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1683
|
+
[value]="$any(stateService.state.area.margin).left"
|
|
1684
|
+
(valueChange)="updateState(areaMarginLeft, $event)"
|
|
1685
|
+
>
|
|
1686
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1687
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1688
|
+
[text]="messageFor('formatChartAreaMarginsRight')"
|
|
1689
|
+
inputType="numeric"
|
|
1690
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1691
|
+
[value]="$any(stateService.state.area.margin).right"
|
|
1692
|
+
(valueChange)="updateState(areaMarginRight, $event)"
|
|
1693
|
+
>
|
|
1694
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1695
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1696
|
+
[text]="messageFor('formatChartAreaMarginsTop')"
|
|
1697
|
+
inputType="numeric"
|
|
1698
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1699
|
+
[value]="$any(stateService.state.area.margin).top"
|
|
1700
|
+
(valueChange)="updateState(areaMarginTop, $event)"
|
|
1701
|
+
>
|
|
1702
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1703
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1704
|
+
[text]="messageFor('formatChartAreaMarginsBottom')"
|
|
1705
|
+
inputType="numeric"
|
|
1706
|
+
[placeholder]="messageFor('formatChartAreaMarginsAuto')"
|
|
1707
|
+
[value]="$any(stateService.state.area.margin).bottom"
|
|
1708
|
+
(valueChange)="updateState(areaMarginBottom, $event)"
|
|
1709
|
+
>
|
|
1710
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1711
|
+
</div>
|
|
1712
|
+
</fieldset>
|
|
1713
|
+
<fieldset class="k-form-fieldset">
|
|
1714
|
+
<legend class="k-form-legend">{{ messageFor('formatChartAreaBackground') }}</legend>
|
|
1715
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1716
|
+
[text]="messageFor('formatChartAreaBackgroundColor')"
|
|
1717
|
+
inputType="colorPicker"
|
|
1718
|
+
[value]="stateService.state.area?.background"
|
|
1719
|
+
(valueChange)="updateState(areaBackground, $event)"
|
|
1720
|
+
>
|
|
1721
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1722
|
+
</fieldset>
|
|
1723
|
+
</form>
|
|
1724
|
+
</kendo-expansionpanel>
|
|
1698
1725
|
</section>
|
|
1699
1726
|
<section>
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1727
|
+
<kendo-expansionpanel
|
|
1728
|
+
[style.max-width.px]="576"
|
|
1729
|
+
[title]="messageFor('formatTitle')"
|
|
1730
|
+
[expanded]="true"
|
|
1704
1731
|
>
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1732
|
+
<form class="k-form k-form-md">
|
|
1733
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1734
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1735
|
+
[text]="messageFor('formatTitleApplyTo')"
|
|
1736
|
+
inputType="dropDownList"
|
|
1737
|
+
[data]="chartTitles"
|
|
1738
|
+
[colSpan]="2"
|
|
1739
|
+
[value]="stateService.currentTitle"
|
|
1740
|
+
(valueChange)="changeCurrentTitle($event)"
|
|
1741
|
+
>
|
|
1742
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1743
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1744
|
+
[text]="messageFor('formatTitleLabel')"
|
|
1745
|
+
inputType="text"
|
|
1746
|
+
[colSpan]="2"
|
|
1747
|
+
[value]="chartTitleTypeText"
|
|
1748
|
+
(valueChange)="updateState(chartTitleTypeAction, $event)"
|
|
1749
|
+
>
|
|
1750
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1751
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1752
|
+
[text]="messageFor('formatTitleFont')"
|
|
1753
|
+
inputType="comboBox"
|
|
1754
|
+
[data]="fontNames"
|
|
1755
|
+
[colSpan]="2"
|
|
1756
|
+
[value]="chartTitleTypeFont"
|
|
1757
|
+
[placeholder]="messageFor('formatTitleFontPlaceholder')"
|
|
1758
|
+
(valueChange)="updateState(chartTitleTypeFontAction, $event)"
|
|
1759
|
+
>
|
|
1760
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1761
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1762
|
+
[text]="messageFor('formatTitleSize')"
|
|
1763
|
+
inputType="comboBox"
|
|
1764
|
+
[placeholder]="messageFor('formatTitleSizePlaceholder')"
|
|
1765
|
+
[data]="fontSizes"
|
|
1766
|
+
[value]="chartTitleTypeFontSize"
|
|
1767
|
+
(valueChange)="updateState(chartTitleTypeFontSizeAction, $event)"
|
|
1768
|
+
>
|
|
1769
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1770
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1771
|
+
[text]="messageFor('formatTitleColor')"
|
|
1772
|
+
inputType="colorPicker"
|
|
1773
|
+
[value]="chartTitleTypeColor"
|
|
1774
|
+
(valueChange)="updateState(chartTitleTypeColorAction, $event)"
|
|
1775
|
+
>
|
|
1776
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1777
|
+
</div>
|
|
1778
|
+
</form>
|
|
1779
|
+
</kendo-expansionpanel>
|
|
1753
1780
|
</section>
|
|
1754
1781
|
<section>
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1782
|
+
<kendo-expansionpanel
|
|
1783
|
+
[style.max-width.px]="576"
|
|
1784
|
+
[title]="messageFor('formatLegend')"
|
|
1785
|
+
[expanded]="true"
|
|
1759
1786
|
>
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1787
|
+
<form class="k-form k-form-md">
|
|
1788
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1789
|
+
<kendo-label [for]="toggleLegend" [text]="messageFor('formatLegendShowLegend')"></kendo-label>
|
|
1790
|
+
<kendo-switch
|
|
1791
|
+
#toggleLegend
|
|
1792
|
+
onLabel="On"
|
|
1793
|
+
offLabel="Off"
|
|
1794
|
+
thumbRounded="full"
|
|
1795
|
+
size="medium"
|
|
1796
|
+
[checked]="stateService.state.legend?.visible"
|
|
1797
|
+
(valueChange)="updateState(legendVisible, $event)"
|
|
1798
|
+
></kendo-switch>
|
|
1799
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1800
|
+
[text]="messageFor('formatLegendFont')"
|
|
1801
|
+
inputType="comboBox"
|
|
1802
|
+
[data]="fontNames"
|
|
1803
|
+
[colSpan]="2"
|
|
1804
|
+
[placeholder]="messageFor('formatLegendFontPlaceholder')"
|
|
1805
|
+
[value]="parseFont(stateService.state.legend?.labels?.font).name"
|
|
1806
|
+
(valueChange)="updateState(legendFontName, $event)"
|
|
1807
|
+
>
|
|
1808
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1809
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1810
|
+
[text]="messageFor('formatLegendSize')"
|
|
1811
|
+
inputType="comboBox"
|
|
1812
|
+
[data]="fontSizes"
|
|
1813
|
+
[placeholder]="messageFor('formatLegendSizePlaceholder')"
|
|
1814
|
+
[value]="parseFont(stateService.state.legend?.labels?.font).size"
|
|
1815
|
+
(valueChange)="updateState(legendFontSize, $event)"
|
|
1816
|
+
>
|
|
1817
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1818
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1819
|
+
[text]="messageFor('formatLegendColor')"
|
|
1820
|
+
inputType="colorPicker"
|
|
1821
|
+
[value]="stateService.state.legend?.labels?.color"
|
|
1822
|
+
(valueChange)="updateState(legendColor, $event)"
|
|
1823
|
+
>
|
|
1824
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1825
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1826
|
+
[text]="messageFor('formatLegendPosition')"
|
|
1827
|
+
inputType="dropDownList"
|
|
1828
|
+
[colSpan]="2"
|
|
1829
|
+
[data]="legendPositions"
|
|
1830
|
+
[value]="stateService.state.legend?.position"
|
|
1831
|
+
(valueChange)="updateState(legendPosition, $event)"
|
|
1832
|
+
>
|
|
1833
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1834
|
+
</div>
|
|
1835
|
+
</form>
|
|
1836
|
+
</kendo-expansionpanel>
|
|
1810
1837
|
</section>
|
|
1811
1838
|
<section>
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1839
|
+
<kendo-expansionpanel
|
|
1840
|
+
[style.max-width.px]="576"
|
|
1841
|
+
[title]="messageFor('formatSeries')"
|
|
1842
|
+
[expanded]="true"
|
|
1816
1843
|
>
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1844
|
+
<form class="k-form k-form-md">
|
|
1845
|
+
<div class="k-form-field">
|
|
1846
|
+
<kendo-label [for]="seriesDropDown" class="k-form-label" [text]="messageFor('formatSeriesApplyTo')"></kendo-label>
|
|
1847
|
+
<div class="k-form-field-wrap">
|
|
1848
|
+
<kendo-dropdownlist
|
|
1849
|
+
#seriesDropDown
|
|
1850
|
+
[data]="seriesData"
|
|
1851
|
+
textField="text"
|
|
1852
|
+
valueField="name"
|
|
1853
|
+
fillMode="outline"
|
|
1854
|
+
rounded="medium"
|
|
1855
|
+
size="medium"
|
|
1856
|
+
[value]="stateService.currentSeries"
|
|
1857
|
+
(valueChange)="updateCurrentSeries($event)"
|
|
1858
|
+
></kendo-dropdownlist>
|
|
1859
|
+
</div>
|
|
1860
|
+
</div>
|
|
1861
|
+
|
|
1862
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1863
|
+
[text]="messageFor('formatSeriesColor')"
|
|
1864
|
+
[value]="stateService.currentSeries?.color"
|
|
1865
|
+
inputType="colorPicker"
|
|
1866
|
+
[disabled]="stateService.currentSeries.name === defaultAllSeriesItem.name"
|
|
1867
|
+
(valueChange)="updateSeriesColor($event)"
|
|
1868
|
+
>
|
|
1869
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1870
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1871
|
+
[text]="messageFor('formatSeriesShowLabels')"
|
|
1872
|
+
[value]="showLabels"
|
|
1873
|
+
[isLabelInsideFormFieldWrap]="true"
|
|
1874
|
+
[colSpan]="2"
|
|
1875
|
+
inputType="checkbox"
|
|
1876
|
+
(valueChange)="toggleSeriesLabels($event)"
|
|
1877
|
+
>
|
|
1878
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1879
|
+
</form>
|
|
1880
|
+
</kendo-expansionpanel>
|
|
1881
|
+
</section>
|
|
1882
|
+
@if (stateService.state.seriesType !== 'pie') {
|
|
1883
|
+
<section class="k-row-start-1 k-row-end-3 k-col-start-3">
|
|
1884
|
+
<kendo-expansionpanel
|
|
1885
|
+
[style.max-width.px]="576"
|
|
1886
|
+
[title]="stateService.state.seriesType === 'scatter' ? messageFor('formatXAxis') : messageFor('formatCategoryAxis')"
|
|
1887
|
+
[expanded]="true"
|
|
1888
|
+
>
|
|
1889
|
+
<form class="k-form k-form-md">
|
|
1890
|
+
<fieldset class="k-form-fieldset">
|
|
1891
|
+
<legend class="k-form-legend">{{ messageFor('formatCategoryAxisTitle') }}</legend>
|
|
1892
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1835
1893
|
<kendo-chartwizard-property-pane-form-field
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1894
|
+
inputType="text"
|
|
1895
|
+
[hasLabel]="false"
|
|
1896
|
+
[colSpan]="2"
|
|
1897
|
+
[placeholder]="messageFor('formatCategoryAxisTitlePlaceholder')"
|
|
1898
|
+
[value]="stateService.state.categoryAxis[0]?.title?.text || null"
|
|
1899
|
+
(valueChange)="updateState(categoryAxisTitleText, $event)"
|
|
1900
|
+
>
|
|
1842
1901
|
</kendo-chartwizard-property-pane-form-field>
|
|
1843
1902
|
<kendo-chartwizard-property-pane-form-field
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1903
|
+
[text]="messageFor('formatCategoryAxisTitleFont')"
|
|
1904
|
+
inputType="comboBox"
|
|
1905
|
+
[data]="fontNames"
|
|
1906
|
+
[colSpan]="2"
|
|
1907
|
+
[placeholder]="messageFor('formatCategoryAxisTitleFontPlaceholder')"
|
|
1908
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).name"
|
|
1909
|
+
(valueChange)="updateState(categoryAxisTitleFontName, $event)"
|
|
1910
|
+
>
|
|
1851
1911
|
</kendo-chartwizard-property-pane-form-field>
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
[value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).size"
|
|
1921
|
-
(valueChange)="updateState(categoryAxisLabelsFontSize, $event)"
|
|
1922
|
-
>
|
|
1923
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1924
|
-
<kendo-chartwizard-property-pane-form-field
|
|
1925
|
-
[text]="messageFor('formatCategoryAxisLabelsColor')"
|
|
1926
|
-
inputType="colorPicker"
|
|
1927
|
-
[value]="stateService.state.categoryAxis[0]?.labels?.color"
|
|
1928
|
-
(valueChange)="updateState(categoryAxisLabelsColor, $event)"
|
|
1929
|
-
>
|
|
1930
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1931
|
-
<kendo-chartwizard-property-pane-form-field
|
|
1932
|
-
[text]="messageFor('formatCategoryAxisLabelsRotation')"
|
|
1933
|
-
inputType="dropDownList"
|
|
1934
|
-
[data]="labelsCategoryAxisRotation"
|
|
1935
|
-
[value]="stateService.state.categoryAxis[0]?.labels?.rotation"
|
|
1936
|
-
(valueChange)="updateState(categoryAxisLabelsRotation, $event)"
|
|
1937
|
-
>
|
|
1938
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1939
|
-
<span></span>
|
|
1940
|
-
<kendo-chartwizard-property-pane-form-field
|
|
1941
|
-
[text]="messageFor('formatCategoryAxisLabelsReverseOrder')"
|
|
1942
|
-
[isLabelInsideFormFieldWrap]="true"
|
|
1943
|
-
inputType="checkbox"
|
|
1944
|
-
[colSpan]="2"
|
|
1945
|
-
[value]="stateService.state.categoryAxis[0]?.reverse"
|
|
1946
|
-
(valueChange)="updateState(categoryAxisReverseOrder, $event)"
|
|
1947
|
-
>
|
|
1948
|
-
</kendo-chartwizard-property-pane-form-field>
|
|
1949
|
-
</div>
|
|
1950
|
-
</fieldset>
|
|
1951
|
-
</form>
|
|
1912
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1913
|
+
[text]="messageFor('formatCategoryAxisTitleSize')"
|
|
1914
|
+
inputType="comboBox"
|
|
1915
|
+
[placeholder]="messageFor('formatCategoryAxisTitleSizePlaceholder')"
|
|
1916
|
+
[data]="fontSizes"
|
|
1917
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.title?.font).size"
|
|
1918
|
+
(valueChange)="updateState(categoryAxisTitleFontSize, $event)"
|
|
1919
|
+
>
|
|
1920
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1921
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1922
|
+
[text]="messageFor('formatCategoryAxisTitleColor')"
|
|
1923
|
+
inputType="colorPicker"
|
|
1924
|
+
[value]="stateService.state.categoryAxis[0]?.title?.color"
|
|
1925
|
+
(valueChange)="updateState(categoryAxisTitleColor, $event)"
|
|
1926
|
+
>
|
|
1927
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1928
|
+
</div>
|
|
1929
|
+
</fieldset>
|
|
1930
|
+
<fieldset class="k-form-fieldset">
|
|
1931
|
+
<legend class="k-form-legend">{{ messageFor('formatCategoryAxisLabels') }}</legend>
|
|
1932
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1933
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1934
|
+
[text]="messageFor('formatCategoryAxisLabelsFont')"
|
|
1935
|
+
inputType="comboBox"
|
|
1936
|
+
[data]="fontNames"
|
|
1937
|
+
[colSpan]="2"
|
|
1938
|
+
[placeholder]="messageFor('formatCategoryAxisLabelsFontPlaceholder')"
|
|
1939
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).name"
|
|
1940
|
+
(valueChange)="updateState(categoryAxisLabelsFontName, $event)"
|
|
1941
|
+
>
|
|
1942
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1943
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1944
|
+
[text]="messageFor('formatCategoryAxisLabelsSize')"
|
|
1945
|
+
inputType="comboBox"
|
|
1946
|
+
[data]="fontSizes"
|
|
1947
|
+
[placeholder]="messageFor('formatCategoryAxisLabelsSizePlaceholder')"
|
|
1948
|
+
[value]="parseFont(stateService.state.categoryAxis[0]?.labels?.font).size"
|
|
1949
|
+
(valueChange)="updateState(categoryAxisLabelsFontSize, $event)"
|
|
1950
|
+
>
|
|
1951
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1952
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1953
|
+
[text]="messageFor('formatCategoryAxisLabelsColor')"
|
|
1954
|
+
inputType="colorPicker"
|
|
1955
|
+
[value]="stateService.state.categoryAxis[0]?.labels?.color"
|
|
1956
|
+
(valueChange)="updateState(categoryAxisLabelsColor, $event)"
|
|
1957
|
+
>
|
|
1958
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1959
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1960
|
+
[text]="messageFor('formatCategoryAxisLabelsRotation')"
|
|
1961
|
+
inputType="dropDownList"
|
|
1962
|
+
[data]="labelsCategoryAxisRotation"
|
|
1963
|
+
[value]="stateService.state.categoryAxis[0]?.labels?.rotation"
|
|
1964
|
+
(valueChange)="updateState(categoryAxisLabelsRotation, $event)"
|
|
1965
|
+
>
|
|
1966
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1967
|
+
<span></span>
|
|
1968
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1969
|
+
[text]="messageFor('formatCategoryAxisLabelsReverseOrder')"
|
|
1970
|
+
[isLabelInsideFormFieldWrap]="true"
|
|
1971
|
+
inputType="checkbox"
|
|
1972
|
+
[colSpan]="2"
|
|
1973
|
+
[value]="stateService.state.categoryAxis[0]?.reverse"
|
|
1974
|
+
(valueChange)="updateState(categoryAxisReverseOrder, $event)"
|
|
1975
|
+
>
|
|
1976
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
1977
|
+
</div>
|
|
1978
|
+
</fieldset>
|
|
1979
|
+
</form>
|
|
1952
1980
|
</kendo-expansionpanel>
|
|
1953
|
-
|
|
1954
|
-
|
|
1981
|
+
</section>
|
|
1982
|
+
}
|
|
1983
|
+
@if (stateService.state.seriesType !== 'pie') {
|
|
1984
|
+
<section class="k-row-start-1 k-row-end-3 k-col-start-4">
|
|
1955
1985
|
<kendo-expansionpanel
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
1986
|
+
[style.max-width.px]="576"
|
|
1987
|
+
[title]="stateService.state.seriesType === 'scatter' ? messageFor('formatYAxis') : messageFor('formatValueAxis')"
|
|
1988
|
+
[expanded]="true"
|
|
1989
|
+
>
|
|
1990
|
+
<form class="k-form k-form-md">
|
|
1991
|
+
<fieldset class="k-form-fieldset">
|
|
1992
|
+
<legend class="k-form-legend">{{ messageFor('formatValueAxisTitle') }}</legend>
|
|
1993
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
1994
|
+
<kendo-chartwizard-property-pane-form-field
|
|
1995
|
+
inputType="text"
|
|
1996
|
+
[hasLabel]="false"
|
|
1997
|
+
[colSpan]="2"
|
|
1998
|
+
[placeholder]="messageFor('formatValueAxisTitlePlaceholder')"
|
|
1999
|
+
[value]="stateService.state.valueAxis[0]?.title?.text || null"
|
|
2000
|
+
(valueChange)="updateState(valueAxisTitleText, $event)"
|
|
2001
|
+
>
|
|
2002
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2003
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2004
|
+
[text]="messageFor('formatValueAxisTitleFont')"
|
|
2005
|
+
inputType="comboBox"
|
|
2006
|
+
[colSpan]="2"
|
|
2007
|
+
[data]="fontNames"
|
|
2008
|
+
[placeholder]="messageFor('formatValueAxisTitleFontPlaceholder')"
|
|
2009
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.title?.font).name"
|
|
2010
|
+
(valueChange)="updateState(valueAxisTitleFontName, $event)"
|
|
2011
|
+
>
|
|
2012
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2013
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2014
|
+
[text]="messageFor('formatValueAxisTitleSize')"
|
|
2015
|
+
inputType="comboBox"
|
|
2016
|
+
[placeholder]="messageFor('formatValueAxisTitleSizePlaceholder')"
|
|
2017
|
+
[data]="fontSizes"
|
|
2018
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.title?.font).size"
|
|
2019
|
+
(valueChange)="updateState(valueAxisTitleFontSize, $event)"
|
|
2020
|
+
>
|
|
2021
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2022
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2023
|
+
[text]="messageFor('formatValueAxisTitleColor')"
|
|
2024
|
+
inputType="colorPicker"
|
|
2025
|
+
[value]="stateService.state.valueAxis[0]?.title?.color"
|
|
2026
|
+
(valueChange)="updateState(valueAxisTitleColor, $event)"
|
|
2027
|
+
>
|
|
2028
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2029
|
+
</div>
|
|
2030
|
+
</fieldset>
|
|
2031
|
+
<fieldset class="k-form-fieldset">
|
|
2032
|
+
<legend class="k-form-legend">{{ messageFor('formatValueAxisLabels') }}</legend>
|
|
2033
|
+
<div class="k-form-layout k-d-grid k-grid-cols-2 k-gap-x-4">
|
|
2034
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2035
|
+
[text]="messageFor('formatValueAxisLabelsFormat')"
|
|
2036
|
+
[colSpan]="2"
|
|
2037
|
+
inputType="dropDownList"
|
|
2038
|
+
[data]="labelFormats"
|
|
2039
|
+
[value]="labelFormatValue"
|
|
2040
|
+
(valueChange)="updateState(valueAxisLabelsFormat, $event)"
|
|
2041
|
+
>
|
|
2042
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2043
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2044
|
+
[text]="messageFor('formatValueAxisLabelsFont')"
|
|
2045
|
+
inputType="comboBox"
|
|
2046
|
+
[data]="fontNames"
|
|
2047
|
+
[colSpan]="2"
|
|
2048
|
+
[placeholder]="messageFor('formatValueAxisLabelsFontPlaceholder')"
|
|
2049
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).name"
|
|
2050
|
+
(valueChange)="updateState(valueAxisLabelsFontName, $event)"
|
|
2051
|
+
>
|
|
2052
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2053
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2054
|
+
[text]="messageFor('formatValueAxisLabelsSize')"
|
|
2055
|
+
inputType="comboBox"
|
|
2056
|
+
[data]="fontSizes"
|
|
2057
|
+
[placeholder]="messageFor('formatValueAxisLabelsSizePlaceholder')"
|
|
2058
|
+
[value]="parseFont(stateService.state.valueAxis[0]?.labels?.font).size"
|
|
2059
|
+
(valueChange)="updateState(valueAxisLabelsFontSize, $event)"
|
|
2060
|
+
>
|
|
2061
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2062
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2063
|
+
[text]="messageFor('formatValueAxisLabelsColor')"
|
|
2064
|
+
inputType="colorPicker"
|
|
2065
|
+
[value]="stateService.state.valueAxis[0]?.labels?.color"
|
|
2066
|
+
(valueChange)="updateState(valueAxisLabelsColor, $event)"
|
|
2067
|
+
>
|
|
2068
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2069
|
+
<kendo-chartwizard-property-pane-form-field
|
|
2070
|
+
[text]="messageFor('formatValueAxisLabelsRotation')"
|
|
2071
|
+
inputType="dropDownList"
|
|
2072
|
+
[data]="labelsValueAxisRotation"
|
|
2073
|
+
[value]="stateService.state.valueAxis[0]?.labels?.rotation"
|
|
2074
|
+
(valueChange)="updateState(valueAxisLabelsRotation, $event)"
|
|
2075
|
+
>
|
|
2076
|
+
</kendo-chartwizard-property-pane-form-field>
|
|
2077
|
+
</div>
|
|
2078
|
+
</fieldset>
|
|
2079
|
+
</form>
|
|
2050
2080
|
</kendo-expansionpanel>
|
|
2051
|
-
|
|
2052
|
-
|
|
2081
|
+
</section>
|
|
2082
|
+
}
|
|
2083
|
+
`,
|
|
2053
2084
|
standalone: true,
|
|
2054
2085
|
imports: [
|
|
2055
2086
|
ExpansionPanelComponent,
|
|
2056
2087
|
ChartWizardPropertyPaneFormFieldComponent,
|
|
2057
2088
|
LabelComponent,
|
|
2058
2089
|
SwitchComponent,
|
|
2059
|
-
DropDownListComponent
|
|
2060
|
-
NgIf
|
|
2090
|
+
DropDownListComponent
|
|
2061
2091
|
]
|
|
2062
2092
|
}]
|
|
2063
2093
|
}], ctorParameters: () => [{ type: StateService }, { type: ChartWizardLocalizationService }, { type: i0.ChangeDetectorRef }] });
|
|
@@ -2922,7 +2952,7 @@ class ChartWizardComponent {
|
|
|
2922
2952
|
return isPresent(this.windowSettings?.height) ? this.windowSettings.height : this.stateService.windowSize.height;
|
|
2923
2953
|
}
|
|
2924
2954
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChartWizardComponent, deps: [{ token: i1.LocalizationService }, { token: StateService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2925
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2955
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ChartWizardComponent, isStandalone: true, selector: "kendo-chartwizard", inputs: { data: "data", defaultState: "defaultState", exportOptions: "exportOptions", collapsedConfigurationPane: "collapsedConfigurationPane", windowSettings: "windowSettings" }, outputs: { close: "close", export: "export" }, host: { properties: { "attr.dir": "this.dir" } }, providers: [
|
|
2926
2956
|
LocalizationService,
|
|
2927
2957
|
{
|
|
2928
2958
|
provide: L10N_PREFIX,
|
|
@@ -2936,373 +2966,376 @@ class ChartWizardComponent {
|
|
|
2936
2966
|
StateService
|
|
2937
2967
|
], 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: `
|
|
2938
2968
|
<ng-container
|
|
2939
|
-
|
|
2969
|
+
kendoChartWizardLocalizedMessages
|
|
2940
2970
|
|
|
2941
|
-
|
|
2942
|
-
|
|
2971
|
+
i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
|
|
2972
|
+
[windowTitle]="messages.windowTitle"
|
|
2943
2973
|
|
|
2944
|
-
|
|
2945
|
-
|
|
2974
|
+
i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
|
|
2975
|
+
[exportButton]="messages.exportButton"
|
|
2946
2976
|
|
|
2947
|
-
|
|
2948
|
-
|
|
2977
|
+
i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
|
|
2978
|
+
[exportPDFButton]="messages.exportPDFButton"
|
|
2949
2979
|
|
|
2950
|
-
|
|
2951
|
-
|
|
2980
|
+
i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
|
|
2981
|
+
[exportSVGButton]="messages.exportSVGButton"
|
|
2952
2982
|
|
|
2953
|
-
|
|
2954
|
-
|
|
2983
|
+
i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
|
|
2984
|
+
[exportPNGButton]="messages.exportPNGButton"
|
|
2955
2985
|
|
|
2956
|
-
|
|
2957
|
-
|
|
2986
|
+
i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
|
|
2987
|
+
[tabChart]="messages.tabChart"
|
|
2958
2988
|
|
|
2959
|
-
|
|
2960
|
-
|
|
2989
|
+
i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
|
|
2990
|
+
[tabData]="messages.tabData"
|
|
2961
2991
|
|
|
2962
|
-
|
|
2963
|
-
|
|
2992
|
+
i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
|
|
2993
|
+
[tabFormat]="messages.tabFormat"
|
|
2964
2994
|
|
|
2965
|
-
|
|
2966
|
-
|
|
2995
|
+
i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
|
|
2996
|
+
[barChart]="messages.barChart"
|
|
2967
2997
|
|
|
2968
|
-
|
|
2969
|
-
|
|
2998
|
+
i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
|
|
2999
|
+
[barChartBar]="messages.barChartBar"
|
|
2970
3000
|
|
|
2971
|
-
|
|
2972
|
-
|
|
3001
|
+
i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
|
|
3002
|
+
[barChartStackedBar]="messages.barChartStackedBar"
|
|
2973
3003
|
|
|
2974
|
-
|
|
2975
|
-
|
|
3004
|
+
i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
|
|
3005
|
+
[barChart100StackedBar]="messages.barChart100StackedBar"
|
|
2976
3006
|
|
|
2977
|
-
|
|
2978
|
-
|
|
3007
|
+
i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
|
|
3008
|
+
[pieChart]="messages.pieChart"
|
|
2979
3009
|
|
|
2980
|
-
|
|
2981
|
-
|
|
3010
|
+
i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
|
|
3011
|
+
[pieChartPie]="messages.pieChartPie"
|
|
2982
3012
|
|
|
2983
|
-
|
|
2984
|
-
|
|
3013
|
+
i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
|
|
3014
|
+
[columnChart]="messages.columnChart"
|
|
2985
3015
|
|
|
2986
|
-
|
|
2987
|
-
|
|
3016
|
+
i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
|
|
3017
|
+
[columnChartColumn]="messages.columnChartColumn"
|
|
2988
3018
|
|
|
2989
|
-
|
|
2990
|
-
|
|
3019
|
+
i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
|
|
3020
|
+
[columnChartStackedColumn]="messages.columnChartStackedColumn"
|
|
2991
3021
|
|
|
2992
|
-
|
|
2993
|
-
|
|
3022
|
+
i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
|
|
3023
|
+
[columnChart100StackedColumn]="messages.columnChart100StackedColumn"
|
|
2994
3024
|
|
|
2995
|
-
|
|
2996
|
-
|
|
3025
|
+
i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
|
|
3026
|
+
[lineChart]="messages.lineChart"
|
|
2997
3027
|
|
|
2998
|
-
|
|
2999
|
-
|
|
3028
|
+
i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
|
|
3029
|
+
[lineChartLine]="messages.lineChartLine"
|
|
3000
3030
|
|
|
3001
|
-
|
|
3002
|
-
|
|
3031
|
+
i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
|
|
3032
|
+
[lineChartStackedLine]="messages.lineChartStackedLine"
|
|
3003
3033
|
|
|
3004
|
-
|
|
3005
|
-
|
|
3034
|
+
i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
|
|
3035
|
+
[lineChart100StackedLine]="messages.lineChart100StackedLine"
|
|
3006
3036
|
|
|
3007
|
-
|
|
3008
|
-
|
|
3037
|
+
i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
|
|
3038
|
+
[scatterChart]="messages.scatterChart"
|
|
3009
3039
|
|
|
3010
|
-
|
|
3011
|
-
|
|
3040
|
+
i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
|
|
3041
|
+
[scatterChartScatter]="messages.scatterChartScatter"
|
|
3012
3042
|
|
|
3013
|
-
|
|
3014
|
-
|
|
3043
|
+
i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
|
|
3044
|
+
[configuration]="messages.configuration"
|
|
3015
3045
|
|
|
3016
|
-
|
|
3017
|
-
|
|
3046
|
+
i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
|
|
3047
|
+
[configurationCategoryAxis]="messages.configurationCategoryAxis"
|
|
3018
3048
|
|
|
3019
|
-
|
|
3020
|
-
|
|
3049
|
+
i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
|
|
3050
|
+
[configurationXAxis]="messages.configurationXAxis"
|
|
3021
3051
|
|
|
3022
|
-
|
|
3023
|
-
|
|
3052
|
+
i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
|
|
3053
|
+
[configurationValueAxis]="messages.configurationValueAxis"
|
|
3024
3054
|
|
|
3025
|
-
|
|
3026
|
-
|
|
3055
|
+
i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
|
|
3056
|
+
[configurationSeries]="messages.configurationSeries"
|
|
3027
3057
|
|
|
3028
|
-
|
|
3029
|
-
|
|
3058
|
+
i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
|
|
3059
|
+
[configurationSeriesAdd]="messages.configurationSeriesAdd"
|
|
3030
3060
|
|
|
3031
|
-
|
|
3032
|
-
|
|
3061
|
+
i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
|
|
3062
|
+
[formatChartArea]="messages.formatChartArea"
|
|
3033
3063
|
|
|
3034
|
-
|
|
3035
|
-
|
|
3064
|
+
i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
|
|
3065
|
+
[formatChartAreaMargins]="messages.formatChartAreaMargins"
|
|
3036
3066
|
|
|
3037
|
-
|
|
3038
|
-
|
|
3067
|
+
i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
|
|
3068
|
+
[formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
|
|
3039
3069
|
|
|
3040
|
-
|
|
3041
|
-
|
|
3070
|
+
i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
|
|
3071
|
+
[formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
|
|
3042
3072
|
|
|
3043
|
-
|
|
3044
|
-
|
|
3073
|
+
i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
|
|
3074
|
+
[formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
|
|
3045
3075
|
|
|
3046
|
-
|
|
3047
|
-
|
|
3076
|
+
i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
|
|
3077
|
+
[formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
|
|
3048
3078
|
|
|
3049
|
-
|
|
3050
|
-
|
|
3079
|
+
i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
|
|
3080
|
+
[formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
|
|
3051
3081
|
|
|
3052
|
-
|
|
3053
|
-
|
|
3082
|
+
i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
|
|
3083
|
+
[formatChartAreaBackground]="messages.formatChartAreaBackground"
|
|
3054
3084
|
|
|
3055
|
-
|
|
3056
|
-
|
|
3085
|
+
i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
|
|
3086
|
+
[formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
|
|
3057
3087
|
|
|
3058
|
-
|
|
3059
|
-
|
|
3088
|
+
i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
|
|
3089
|
+
[formatTitle]="messages.formatTitle"
|
|
3060
3090
|
|
|
3061
|
-
|
|
3062
|
-
|
|
3091
|
+
i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
|
|
3092
|
+
[formatTitleApplyTo]="messages.formatTitleApplyTo"
|
|
3063
3093
|
|
|
3064
|
-
|
|
3065
|
-
|
|
3094
|
+
i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
|
|
3095
|
+
[formatTitleChartTitle]="messages.formatTitleChartTitle"
|
|
3066
3096
|
|
|
3067
|
-
|
|
3068
|
-
|
|
3097
|
+
i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
|
|
3098
|
+
[formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
|
|
3069
3099
|
|
|
3070
|
-
|
|
3071
|
-
|
|
3100
|
+
i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
|
|
3101
|
+
[formatTitleLabel]="messages.formatTitleLabel"
|
|
3072
3102
|
|
|
3073
|
-
|
|
3074
|
-
|
|
3103
|
+
i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
|
|
3104
|
+
[formatTitleFont]="messages.formatTitleFont"
|
|
3075
3105
|
|
|
3076
|
-
|
|
3077
|
-
|
|
3106
|
+
i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
|
|
3107
|
+
[formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
|
|
3078
3108
|
|
|
3079
|
-
|
|
3080
|
-
|
|
3109
|
+
i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
|
|
3110
|
+
[formatTitleSize]="messages.formatTitleSize"
|
|
3081
3111
|
|
|
3082
|
-
|
|
3083
|
-
|
|
3112
|
+
i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
|
|
3113
|
+
[formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
|
|
3084
3114
|
|
|
3085
|
-
|
|
3086
|
-
|
|
3115
|
+
i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
|
|
3116
|
+
[formatTitleColor]="messages.formatTitleColor"
|
|
3087
3117
|
|
|
3088
|
-
|
|
3089
|
-
|
|
3118
|
+
i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
|
|
3119
|
+
[formatSeries]="messages.formatSeries"
|
|
3090
3120
|
|
|
3091
|
-
|
|
3092
|
-
|
|
3121
|
+
i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
|
|
3122
|
+
[formatSeriesApplyTo]="messages.formatSeriesApplyTo"
|
|
3093
3123
|
|
|
3094
|
-
|
|
3095
|
-
|
|
3124
|
+
i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
|
|
3125
|
+
[formatSeriesAllSeries]="messages.formatSeriesAllSeries"
|
|
3096
3126
|
|
|
3097
|
-
|
|
3098
|
-
|
|
3127
|
+
i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
|
|
3128
|
+
[formatSeriesColor]="messages.formatSeriesColor"
|
|
3099
3129
|
|
|
3100
|
-
|
|
3101
|
-
|
|
3130
|
+
i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
|
|
3131
|
+
[formatSeriesShowLabels]="messages.formatSeriesShowLabels"
|
|
3102
3132
|
|
|
3103
|
-
|
|
3104
|
-
|
|
3133
|
+
i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
|
|
3134
|
+
[formatLegend]="messages.formatLegend"
|
|
3105
3135
|
|
|
3106
|
-
|
|
3107
|
-
|
|
3136
|
+
i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
|
|
3137
|
+
[formatLegendShowLegend]="messages.formatLegendShowLegend"
|
|
3108
3138
|
|
|
3109
|
-
|
|
3110
|
-
|
|
3139
|
+
i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
|
|
3140
|
+
[formatLegendFont]="messages.formatLegendFont"
|
|
3111
3141
|
|
|
3112
|
-
|
|
3113
|
-
|
|
3142
|
+
i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
|
|
3143
|
+
[formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
|
|
3114
3144
|
|
|
3115
|
-
|
|
3116
|
-
|
|
3145
|
+
i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
|
|
3146
|
+
[formatLegendSize]="messages.formatLegendSize"
|
|
3117
3147
|
|
|
3118
|
-
|
|
3119
|
-
|
|
3148
|
+
i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
|
|
3149
|
+
[formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
|
|
3120
3150
|
|
|
3121
|
-
|
|
3122
|
-
|
|
3151
|
+
i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
|
|
3152
|
+
[formatLegendColor]="messages.formatLegendColor"
|
|
3123
3153
|
|
|
3124
|
-
|
|
3125
|
-
|
|
3154
|
+
i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
|
|
3155
|
+
[formatLegendPosition]="messages.formatLegendPosition"
|
|
3126
3156
|
|
|
3127
|
-
|
|
3128
|
-
|
|
3157
|
+
i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
|
|
3158
|
+
[formatLegendPositionTop]="messages.formatLegendPositionTop"
|
|
3129
3159
|
|
|
3130
|
-
|
|
3131
|
-
|
|
3160
|
+
i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
|
|
3161
|
+
[formatLegendPositionBottom]="messages.formatLegendPositionBottom"
|
|
3132
3162
|
|
|
3133
|
-
|
|
3134
|
-
|
|
3163
|
+
i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
|
|
3164
|
+
[formatLegendPositionLeft]="messages.formatLegendPositionLeft"
|
|
3135
3165
|
|
|
3136
|
-
|
|
3137
|
-
|
|
3166
|
+
i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
|
|
3167
|
+
[formatLegendPositionRight]="messages.formatLegendPositionRight"
|
|
3138
3168
|
|
|
3139
|
-
|
|
3140
|
-
|
|
3169
|
+
i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
|
|
3170
|
+
[formatCategoryAxis]="messages.formatCategoryAxis"
|
|
3141
3171
|
|
|
3142
|
-
|
|
3143
|
-
|
|
3172
|
+
i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
|
|
3173
|
+
[formatXAxis]="messages.formatXAxis"
|
|
3144
3174
|
|
|
3145
|
-
|
|
3146
|
-
|
|
3175
|
+
i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
|
|
3176
|
+
[formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
|
|
3147
3177
|
|
|
3148
|
-
|
|
3149
|
-
|
|
3178
|
+
i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
|
|
3179
|
+
[formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
|
|
3150
3180
|
|
|
3151
|
-
|
|
3152
|
-
|
|
3181
|
+
i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
|
|
3182
|
+
[formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
|
|
3153
3183
|
|
|
3154
|
-
|
|
3155
|
-
|
|
3184
|
+
i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
|
|
3185
|
+
[formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
|
|
3156
3186
|
|
|
3157
|
-
|
|
3158
|
-
|
|
3187
|
+
i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
|
|
3188
|
+
[formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
|
|
3159
3189
|
|
|
3160
|
-
|
|
3161
|
-
|
|
3190
|
+
i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
|
|
3191
|
+
[formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
|
|
3162
3192
|
|
|
3163
|
-
|
|
3164
|
-
|
|
3193
|
+
i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
|
|
3194
|
+
[formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
|
|
3165
3195
|
|
|
3166
|
-
|
|
3167
|
-
|
|
3196
|
+
i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
|
|
3197
|
+
[formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
|
|
3168
3198
|
|
|
3169
|
-
|
|
3170
|
-
|
|
3199
|
+
i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
|
|
3200
|
+
[formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
|
|
3171
3201
|
|
|
3172
|
-
|
|
3173
|
-
|
|
3202
|
+
i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
|
|
3203
|
+
[formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
|
|
3174
3204
|
|
|
3175
|
-
|
|
3176
|
-
|
|
3205
|
+
i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
|
|
3206
|
+
[formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
|
|
3177
3207
|
|
|
3178
|
-
|
|
3179
|
-
|
|
3208
|
+
i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
|
|
3209
|
+
[formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
|
|
3180
3210
|
|
|
3181
|
-
|
|
3182
|
-
|
|
3211
|
+
i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
|
|
3212
|
+
[formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
|
|
3183
3213
|
|
|
3184
|
-
|
|
3185
|
-
|
|
3214
|
+
i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
|
|
3215
|
+
[formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
|
|
3186
3216
|
|
|
3187
|
-
|
|
3188
|
-
|
|
3217
|
+
i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
|
|
3218
|
+
[formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
|
|
3189
3219
|
|
|
3190
|
-
|
|
3191
|
-
|
|
3220
|
+
i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
|
|
3221
|
+
[formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
|
|
3192
3222
|
|
|
3193
|
-
|
|
3194
|
-
|
|
3223
|
+
i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
|
|
3224
|
+
[formatValueAxis]="messages.formatValueAxis"
|
|
3195
3225
|
|
|
3196
|
-
|
|
3197
|
-
|
|
3226
|
+
i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
|
|
3227
|
+
[formatYAxis]="messages.formatYAxis"
|
|
3198
3228
|
|
|
3199
|
-
|
|
3200
|
-
|
|
3229
|
+
i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
|
|
3230
|
+
[formatValueAxisTitle]="messages.formatValueAxisTitle"
|
|
3201
3231
|
|
|
3202
|
-
|
|
3203
|
-
|
|
3232
|
+
i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
|
|
3233
|
+
[formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
|
|
3204
3234
|
|
|
3205
|
-
|
|
3206
|
-
|
|
3235
|
+
i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
|
|
3236
|
+
[formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
|
|
3207
3237
|
|
|
3208
|
-
|
|
3209
|
-
|
|
3238
|
+
i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
|
|
3239
|
+
[formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
|
|
3210
3240
|
|
|
3211
|
-
|
|
3212
|
-
|
|
3241
|
+
i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
|
|
3242
|
+
[formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
|
|
3213
3243
|
|
|
3214
|
-
|
|
3215
|
-
|
|
3244
|
+
i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
|
|
3245
|
+
[formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
|
|
3216
3246
|
|
|
3217
|
-
|
|
3218
|
-
|
|
3247
|
+
i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
|
|
3248
|
+
[formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
|
|
3219
3249
|
|
|
3220
|
-
|
|
3221
|
-
|
|
3250
|
+
i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
|
|
3251
|
+
[formatValueAxisLabels]="messages.formatValueAxisLabels"
|
|
3222
3252
|
|
|
3223
|
-
|
|
3224
|
-
|
|
3253
|
+
i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3254
|
+
[formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
|
|
3225
3255
|
|
|
3226
|
-
|
|
3227
|
-
|
|
3256
|
+
i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3257
|
+
[formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
|
|
3228
3258
|
|
|
3229
|
-
|
|
3230
|
-
|
|
3259
|
+
i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3260
|
+
[formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
|
|
3231
3261
|
|
|
3232
|
-
|
|
3233
|
-
|
|
3262
|
+
i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3263
|
+
[formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
|
|
3234
3264
|
|
|
3235
|
-
|
|
3236
|
-
|
|
3265
|
+
i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3266
|
+
[formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
|
|
3237
3267
|
|
|
3238
|
-
|
|
3239
|
-
|
|
3268
|
+
i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
|
|
3269
|
+
[formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
|
|
3240
3270
|
|
|
3241
|
-
|
|
3242
|
-
|
|
3271
|
+
i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
|
|
3272
|
+
[formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
|
|
3243
3273
|
|
|
3244
|
-
|
|
3245
|
-
|
|
3274
|
+
i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
|
|
3275
|
+
[formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
|
|
3246
3276
|
|
|
3247
|
-
|
|
3248
|
-
|
|
3277
|
+
i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
|
|
3278
|
+
[formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
|
|
3249
3279
|
|
|
3250
|
-
|
|
3251
|
-
|
|
3280
|
+
i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
|
|
3281
|
+
[formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
|
|
3252
3282
|
|
|
3253
|
-
|
|
3254
|
-
|
|
3283
|
+
i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
|
|
3284
|
+
[formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
|
|
3255
3285
|
|
|
3256
|
-
|
|
3257
|
-
|
|
3286
|
+
i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
|
|
3287
|
+
[formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
|
|
3258
3288
|
|
|
3259
3289
|
></ng-container>
|
|
3260
|
-
|
|
3290
|
+
@if (windowSettings?.modal) {
|
|
3291
|
+
<div @overlayAppear class="k-overlay"> </div>
|
|
3292
|
+
}
|
|
3261
3293
|
<kendo-window
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3294
|
+
class="k-chart-wizard"
|
|
3295
|
+
[title]="messageFor('windowTitle')"
|
|
3296
|
+
[width]="windowWidth"
|
|
3297
|
+
[height]="windowHeight"
|
|
3298
|
+
[minWidth]="windowSettings?.minWidth"
|
|
3299
|
+
[minHeight]="windowSettings?.minHeight"
|
|
3300
|
+
[state]="windowSettings?.state"
|
|
3301
|
+
[resizable]="true"
|
|
3302
|
+
(close)="close.emit()"
|
|
3303
|
+
>
|
|
3304
|
+
<kendo-splitter class="k-chart-wizard-splitter">
|
|
3305
|
+
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
|
3306
|
+
<div class="k-preview-pane-header">
|
|
3307
|
+
<kendo-dropdownbutton
|
|
3308
|
+
[svgIcon]="exportIcon"
|
|
3309
|
+
[data]="exportDropdownItems"
|
|
3310
|
+
textField="text"
|
|
3311
|
+
fillMode="flat"
|
|
3312
|
+
(itemClick)="onExport($event)"
|
|
3313
|
+
>
|
|
3314
|
+
{{ messageFor('exportButton') }}
|
|
3315
|
+
</kendo-dropdownbutton>
|
|
3316
|
+
</div>
|
|
3317
|
+
<div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
|
|
3318
|
+
<kendo-chart [transitions]="false" [style.width.%]="100" [style.height.%]="100">
|
|
3319
|
+
<kendo-chart-title
|
|
3320
|
+
[text]="stateService.state.title?.text"
|
|
3321
|
+
[font]="stateService.state.title?.font"
|
|
3322
|
+
[color]="stateService.state.title?.color"
|
|
3323
|
+
></kendo-chart-title>
|
|
3324
|
+
<kendo-chart-subtitle
|
|
3325
|
+
[text]="stateService.state.subtitle?.text"
|
|
3326
|
+
[font]="stateService.state.subtitle?.font"
|
|
3327
|
+
[color]="stateService.state.subtitle?.color"
|
|
3328
|
+
></kendo-chart-subtitle>
|
|
3329
|
+
<kendo-chart-area
|
|
3330
|
+
[background]="stateService.state.area?.background"
|
|
3331
|
+
[margin]="stateService.state.area?.margin"
|
|
3332
|
+
>
|
|
3333
|
+
</kendo-chart-area>
|
|
3334
|
+
@if (stateService.state.categoryAxis) {
|
|
3335
|
+
<kendo-chart-category-axis>
|
|
3336
|
+
@for (axis of stateService.state.categoryAxis; track $index) {
|
|
3337
|
+
<kendo-chart-category-axis-item
|
|
3338
|
+
[categories]="axis.categories"
|
|
3306
3339
|
[title]="{
|
|
3307
3340
|
text: axis.title?.text,
|
|
3308
3341
|
font: axis.title?.font,
|
|
@@ -3313,12 +3346,14 @@ class ChartWizardComponent {
|
|
|
3313
3346
|
font: axis.labels?.font,
|
|
3314
3347
|
color: axis.labels?.color
|
|
3315
3348
|
}"
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3349
|
+
[reverse]="axis.reverse"
|
|
3350
|
+
>
|
|
3351
|
+
</kendo-chart-category-axis-item>
|
|
3352
|
+
}
|
|
3353
|
+
@if (stateService.state.valueAxis) {
|
|
3354
|
+
<kendo-chart-value-axis>
|
|
3355
|
+
@for (axis of stateService.state.valueAxis; track $index) {
|
|
3356
|
+
<kendo-chart-value-axis-item
|
|
3322
3357
|
[title]="{
|
|
3323
3358
|
text: axis.title?.text,
|
|
3324
3359
|
font: axis.title?.font,
|
|
@@ -3330,59 +3365,65 @@ class ChartWizardComponent {
|
|
|
3330
3365
|
color: axis.labels?.color,
|
|
3331
3366
|
format: axis.labels?.format
|
|
3332
3367
|
}"
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3368
|
+
>
|
|
3369
|
+
</kendo-chart-value-axis-item>
|
|
3370
|
+
}
|
|
3371
|
+
</kendo-chart-value-axis>
|
|
3372
|
+
}
|
|
3373
|
+
</kendo-chart-category-axis>
|
|
3374
|
+
}
|
|
3375
|
+
<kendo-chart-series>
|
|
3376
|
+
@for (series of stateService.state.series; track $index) {
|
|
3377
|
+
<kendo-chart-series-item
|
|
3378
|
+
[type]="series.type"
|
|
3379
|
+
[data]="series.data"
|
|
3380
|
+
[stack]="series.stack"
|
|
3381
|
+
[field]="series.field"
|
|
3382
|
+
[categoryField]="series.categoryField"
|
|
3383
|
+
[name]="series.name"
|
|
3384
|
+
[color]="series.color"
|
|
3385
|
+
[labels]="{ visible: series.labels?.visible }"
|
|
3386
|
+
[width]="series.width"
|
|
3387
|
+
>
|
|
3388
|
+
</kendo-chart-series-item>
|
|
3389
|
+
}
|
|
3390
|
+
</kendo-chart-series>
|
|
3391
|
+
<kendo-chart-legend
|
|
3392
|
+
[visible]="stateService.state.legend?.visible"
|
|
3393
|
+
[position]="stateService.state.legend?.position"
|
|
3394
|
+
[labels]="stateService.state.legend?.labels"
|
|
3395
|
+
>
|
|
3396
|
+
</kendo-chart-legend>
|
|
3397
|
+
</kendo-chart>
|
|
3398
|
+
</div>
|
|
3399
|
+
</kendo-splitter-pane>
|
|
3400
|
+
<kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [collapsed]="collapsedConfigurationPane" [size]="stateService.splitterPaneSize">
|
|
3401
|
+
<kendo-tabstrip [keepTabContent]="true">
|
|
3402
|
+
<kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
|
|
3403
|
+
<ng-template kendoTabContent>
|
|
3404
|
+
<kendo-chartwizard-property-pane-chart-tab>
|
|
3405
|
+
</kendo-chartwizard-property-pane-chart-tab>
|
|
3406
|
+
</ng-template>
|
|
3407
|
+
</kendo-tabstrip-tab>
|
|
3408
|
+
<kendo-tabstrip-tab [title]="messageFor('tabData')">
|
|
3409
|
+
<ng-template kendoTabContent>
|
|
3410
|
+
<kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
|
|
3411
|
+
</ng-template>
|
|
3412
|
+
</kendo-tabstrip-tab>
|
|
3413
|
+
<kendo-tabstrip-tab [title]="messageFor('tabFormat')">
|
|
3414
|
+
<ng-template kendoTabContent>
|
|
3415
|
+
<kendo-chartwizard-property-pane-format-tab>
|
|
3416
|
+
</kendo-chartwizard-property-pane-format-tab>
|
|
3417
|
+
</ng-template>
|
|
3418
|
+
</kendo-tabstrip-tab>
|
|
3419
|
+
</kendo-tabstrip>
|
|
3420
|
+
</kendo-splitter-pane>
|
|
3421
|
+
</kendo-splitter>
|
|
3422
|
+
@if (showLicenseWatermark) {
|
|
3423
|
+
<div kendoWatermarkOverlay [licenseMessage]="licenseMessage"></div>
|
|
3424
|
+
}
|
|
3384
3425
|
</kendo-window>
|
|
3385
|
-
|
|
3426
|
+
`, 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", "splitterBarClass"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { kind: "component", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "splitterBarAttributes", "splitterBarClass", "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", "noData", "observeStyles", "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: "component", type: CategoryAxisComponent, selector: "kendo-chart-category-axis" }, { 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", "pattern", "patternField", "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", "focusHighlight"] }, { kind: "component", type: TabStripComponent, selector: "kendo-tabstrip", inputs: ["height", "animate", "tabAlignment", "tabPosition", "keepTabContent", "closable", "scrollable", "size", "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]", inputs: ["licenseMessage"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoChartWizardLocalizedMessages]" }], animations: [
|
|
3386
3427
|
trigger('overlayAppear', [
|
|
3387
3428
|
state('in', style({ opacity: 1 })),
|
|
3388
3429
|
transition('void => *', [style({ opacity: 0.1 }), animate('.3s cubic-bezier(.2, .6, .4, 1)')])
|
|
@@ -3416,373 +3457,376 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3416
3457
|
selector: 'kendo-chartwizard',
|
|
3417
3458
|
template: `
|
|
3418
3459
|
<ng-container
|
|
3419
|
-
|
|
3460
|
+
kendoChartWizardLocalizedMessages
|
|
3420
3461
|
|
|
3421
|
-
|
|
3422
|
-
|
|
3462
|
+
i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
|
|
3463
|
+
[windowTitle]="messages.windowTitle"
|
|
3423
3464
|
|
|
3424
|
-
|
|
3425
|
-
|
|
3465
|
+
i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
|
|
3466
|
+
[exportButton]="messages.exportButton"
|
|
3426
3467
|
|
|
3427
|
-
|
|
3428
|
-
|
|
3468
|
+
i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
|
|
3469
|
+
[exportPDFButton]="messages.exportPDFButton"
|
|
3429
3470
|
|
|
3430
|
-
|
|
3431
|
-
|
|
3471
|
+
i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
|
|
3472
|
+
[exportSVGButton]="messages.exportSVGButton"
|
|
3432
3473
|
|
|
3433
|
-
|
|
3434
|
-
|
|
3474
|
+
i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
|
|
3475
|
+
[exportPNGButton]="messages.exportPNGButton"
|
|
3435
3476
|
|
|
3436
|
-
|
|
3437
|
-
|
|
3477
|
+
i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
|
|
3478
|
+
[tabChart]="messages.tabChart"
|
|
3438
3479
|
|
|
3439
|
-
|
|
3440
|
-
|
|
3480
|
+
i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
|
|
3481
|
+
[tabData]="messages.tabData"
|
|
3441
3482
|
|
|
3442
|
-
|
|
3443
|
-
|
|
3483
|
+
i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
|
|
3484
|
+
[tabFormat]="messages.tabFormat"
|
|
3444
3485
|
|
|
3445
|
-
|
|
3446
|
-
|
|
3486
|
+
i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
|
|
3487
|
+
[barChart]="messages.barChart"
|
|
3447
3488
|
|
|
3448
|
-
|
|
3449
|
-
|
|
3489
|
+
i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
|
|
3490
|
+
[barChartBar]="messages.barChartBar"
|
|
3450
3491
|
|
|
3451
|
-
|
|
3452
|
-
|
|
3492
|
+
i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
|
|
3493
|
+
[barChartStackedBar]="messages.barChartStackedBar"
|
|
3453
3494
|
|
|
3454
|
-
|
|
3455
|
-
|
|
3495
|
+
i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
|
|
3496
|
+
[barChart100StackedBar]="messages.barChart100StackedBar"
|
|
3456
3497
|
|
|
3457
|
-
|
|
3458
|
-
|
|
3498
|
+
i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
|
|
3499
|
+
[pieChart]="messages.pieChart"
|
|
3459
3500
|
|
|
3460
|
-
|
|
3461
|
-
|
|
3501
|
+
i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
|
|
3502
|
+
[pieChartPie]="messages.pieChartPie"
|
|
3462
3503
|
|
|
3463
|
-
|
|
3464
|
-
|
|
3504
|
+
i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
|
|
3505
|
+
[columnChart]="messages.columnChart"
|
|
3465
3506
|
|
|
3466
|
-
|
|
3467
|
-
|
|
3507
|
+
i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
|
|
3508
|
+
[columnChartColumn]="messages.columnChartColumn"
|
|
3468
3509
|
|
|
3469
|
-
|
|
3470
|
-
|
|
3510
|
+
i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
|
|
3511
|
+
[columnChartStackedColumn]="messages.columnChartStackedColumn"
|
|
3471
3512
|
|
|
3472
|
-
|
|
3473
|
-
|
|
3513
|
+
i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
|
|
3514
|
+
[columnChart100StackedColumn]="messages.columnChart100StackedColumn"
|
|
3474
3515
|
|
|
3475
|
-
|
|
3476
|
-
|
|
3516
|
+
i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
|
|
3517
|
+
[lineChart]="messages.lineChart"
|
|
3477
3518
|
|
|
3478
|
-
|
|
3479
|
-
|
|
3519
|
+
i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
|
|
3520
|
+
[lineChartLine]="messages.lineChartLine"
|
|
3480
3521
|
|
|
3481
|
-
|
|
3482
|
-
|
|
3522
|
+
i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
|
|
3523
|
+
[lineChartStackedLine]="messages.lineChartStackedLine"
|
|
3483
3524
|
|
|
3484
|
-
|
|
3485
|
-
|
|
3525
|
+
i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
|
|
3526
|
+
[lineChart100StackedLine]="messages.lineChart100StackedLine"
|
|
3486
3527
|
|
|
3487
|
-
|
|
3488
|
-
|
|
3528
|
+
i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
|
|
3529
|
+
[scatterChart]="messages.scatterChart"
|
|
3489
3530
|
|
|
3490
|
-
|
|
3491
|
-
|
|
3531
|
+
i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
|
|
3532
|
+
[scatterChartScatter]="messages.scatterChartScatter"
|
|
3492
3533
|
|
|
3493
|
-
|
|
3494
|
-
|
|
3534
|
+
i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
|
|
3535
|
+
[configuration]="messages.configuration"
|
|
3495
3536
|
|
|
3496
|
-
|
|
3497
|
-
|
|
3537
|
+
i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
|
|
3538
|
+
[configurationCategoryAxis]="messages.configurationCategoryAxis"
|
|
3498
3539
|
|
|
3499
|
-
|
|
3500
|
-
|
|
3540
|
+
i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
|
|
3541
|
+
[configurationXAxis]="messages.configurationXAxis"
|
|
3501
3542
|
|
|
3502
|
-
|
|
3503
|
-
|
|
3543
|
+
i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
|
|
3544
|
+
[configurationValueAxis]="messages.configurationValueAxis"
|
|
3504
3545
|
|
|
3505
|
-
|
|
3506
|
-
|
|
3546
|
+
i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
|
|
3547
|
+
[configurationSeries]="messages.configurationSeries"
|
|
3507
3548
|
|
|
3508
|
-
|
|
3509
|
-
|
|
3549
|
+
i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
|
|
3550
|
+
[configurationSeriesAdd]="messages.configurationSeriesAdd"
|
|
3510
3551
|
|
|
3511
|
-
|
|
3512
|
-
|
|
3552
|
+
i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
|
|
3553
|
+
[formatChartArea]="messages.formatChartArea"
|
|
3513
3554
|
|
|
3514
|
-
|
|
3515
|
-
|
|
3555
|
+
i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
|
|
3556
|
+
[formatChartAreaMargins]="messages.formatChartAreaMargins"
|
|
3516
3557
|
|
|
3517
|
-
|
|
3518
|
-
|
|
3558
|
+
i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
|
|
3559
|
+
[formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
|
|
3519
3560
|
|
|
3520
|
-
|
|
3521
|
-
|
|
3561
|
+
i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
|
|
3562
|
+
[formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
|
|
3522
3563
|
|
|
3523
|
-
|
|
3524
|
-
|
|
3564
|
+
i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
|
|
3565
|
+
[formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
|
|
3525
3566
|
|
|
3526
|
-
|
|
3527
|
-
|
|
3567
|
+
i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
|
|
3568
|
+
[formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
|
|
3528
3569
|
|
|
3529
|
-
|
|
3530
|
-
|
|
3570
|
+
i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
|
|
3571
|
+
[formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
|
|
3531
3572
|
|
|
3532
|
-
|
|
3533
|
-
|
|
3573
|
+
i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
|
|
3574
|
+
[formatChartAreaBackground]="messages.formatChartAreaBackground"
|
|
3534
3575
|
|
|
3535
|
-
|
|
3536
|
-
|
|
3576
|
+
i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
|
|
3577
|
+
[formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
|
|
3537
3578
|
|
|
3538
|
-
|
|
3539
|
-
|
|
3579
|
+
i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
|
|
3580
|
+
[formatTitle]="messages.formatTitle"
|
|
3540
3581
|
|
|
3541
|
-
|
|
3542
|
-
|
|
3582
|
+
i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
|
|
3583
|
+
[formatTitleApplyTo]="messages.formatTitleApplyTo"
|
|
3543
3584
|
|
|
3544
|
-
|
|
3545
|
-
|
|
3585
|
+
i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
|
|
3586
|
+
[formatTitleChartTitle]="messages.formatTitleChartTitle"
|
|
3546
3587
|
|
|
3547
|
-
|
|
3548
|
-
|
|
3588
|
+
i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
|
|
3589
|
+
[formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
|
|
3549
3590
|
|
|
3550
|
-
|
|
3551
|
-
|
|
3591
|
+
i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
|
|
3592
|
+
[formatTitleLabel]="messages.formatTitleLabel"
|
|
3552
3593
|
|
|
3553
|
-
|
|
3554
|
-
|
|
3594
|
+
i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
|
|
3595
|
+
[formatTitleFont]="messages.formatTitleFont"
|
|
3555
3596
|
|
|
3556
|
-
|
|
3557
|
-
|
|
3597
|
+
i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
|
|
3598
|
+
[formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
|
|
3558
3599
|
|
|
3559
|
-
|
|
3560
|
-
|
|
3600
|
+
i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
|
|
3601
|
+
[formatTitleSize]="messages.formatTitleSize"
|
|
3561
3602
|
|
|
3562
|
-
|
|
3563
|
-
|
|
3603
|
+
i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
|
|
3604
|
+
[formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
|
|
3564
3605
|
|
|
3565
|
-
|
|
3566
|
-
|
|
3606
|
+
i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
|
|
3607
|
+
[formatTitleColor]="messages.formatTitleColor"
|
|
3567
3608
|
|
|
3568
|
-
|
|
3569
|
-
|
|
3609
|
+
i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
|
|
3610
|
+
[formatSeries]="messages.formatSeries"
|
|
3570
3611
|
|
|
3571
|
-
|
|
3572
|
-
|
|
3612
|
+
i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
|
|
3613
|
+
[formatSeriesApplyTo]="messages.formatSeriesApplyTo"
|
|
3573
3614
|
|
|
3574
|
-
|
|
3575
|
-
|
|
3615
|
+
i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
|
|
3616
|
+
[formatSeriesAllSeries]="messages.formatSeriesAllSeries"
|
|
3576
3617
|
|
|
3577
|
-
|
|
3578
|
-
|
|
3618
|
+
i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
|
|
3619
|
+
[formatSeriesColor]="messages.formatSeriesColor"
|
|
3579
3620
|
|
|
3580
|
-
|
|
3581
|
-
|
|
3621
|
+
i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
|
|
3622
|
+
[formatSeriesShowLabels]="messages.formatSeriesShowLabels"
|
|
3582
3623
|
|
|
3583
|
-
|
|
3584
|
-
|
|
3624
|
+
i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
|
|
3625
|
+
[formatLegend]="messages.formatLegend"
|
|
3585
3626
|
|
|
3586
|
-
|
|
3587
|
-
|
|
3627
|
+
i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
|
|
3628
|
+
[formatLegendShowLegend]="messages.formatLegendShowLegend"
|
|
3588
3629
|
|
|
3589
|
-
|
|
3590
|
-
|
|
3630
|
+
i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
|
|
3631
|
+
[formatLegendFont]="messages.formatLegendFont"
|
|
3591
3632
|
|
|
3592
|
-
|
|
3593
|
-
|
|
3633
|
+
i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
|
|
3634
|
+
[formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
|
|
3594
3635
|
|
|
3595
|
-
|
|
3596
|
-
|
|
3636
|
+
i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
|
|
3637
|
+
[formatLegendSize]="messages.formatLegendSize"
|
|
3597
3638
|
|
|
3598
|
-
|
|
3599
|
-
|
|
3639
|
+
i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
|
|
3640
|
+
[formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
|
|
3600
3641
|
|
|
3601
|
-
|
|
3602
|
-
|
|
3642
|
+
i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
|
|
3643
|
+
[formatLegendColor]="messages.formatLegendColor"
|
|
3603
3644
|
|
|
3604
|
-
|
|
3605
|
-
|
|
3645
|
+
i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
|
|
3646
|
+
[formatLegendPosition]="messages.formatLegendPosition"
|
|
3606
3647
|
|
|
3607
|
-
|
|
3608
|
-
|
|
3648
|
+
i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
|
|
3649
|
+
[formatLegendPositionTop]="messages.formatLegendPositionTop"
|
|
3609
3650
|
|
|
3610
|
-
|
|
3611
|
-
|
|
3651
|
+
i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
|
|
3652
|
+
[formatLegendPositionBottom]="messages.formatLegendPositionBottom"
|
|
3612
3653
|
|
|
3613
|
-
|
|
3614
|
-
|
|
3654
|
+
i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
|
|
3655
|
+
[formatLegendPositionLeft]="messages.formatLegendPositionLeft"
|
|
3615
3656
|
|
|
3616
|
-
|
|
3617
|
-
|
|
3657
|
+
i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
|
|
3658
|
+
[formatLegendPositionRight]="messages.formatLegendPositionRight"
|
|
3618
3659
|
|
|
3619
|
-
|
|
3620
|
-
|
|
3660
|
+
i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
|
|
3661
|
+
[formatCategoryAxis]="messages.formatCategoryAxis"
|
|
3621
3662
|
|
|
3622
|
-
|
|
3623
|
-
|
|
3663
|
+
i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
|
|
3664
|
+
[formatXAxis]="messages.formatXAxis"
|
|
3624
3665
|
|
|
3625
|
-
|
|
3626
|
-
|
|
3666
|
+
i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
|
|
3667
|
+
[formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
|
|
3627
3668
|
|
|
3628
|
-
|
|
3629
|
-
|
|
3669
|
+
i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
|
|
3670
|
+
[formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
|
|
3630
3671
|
|
|
3631
|
-
|
|
3632
|
-
|
|
3672
|
+
i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
|
|
3673
|
+
[formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
|
|
3633
3674
|
|
|
3634
|
-
|
|
3635
|
-
|
|
3675
|
+
i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
|
|
3676
|
+
[formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
|
|
3636
3677
|
|
|
3637
|
-
|
|
3638
|
-
|
|
3678
|
+
i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
|
|
3679
|
+
[formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
|
|
3639
3680
|
|
|
3640
|
-
|
|
3641
|
-
|
|
3681
|
+
i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
|
|
3682
|
+
[formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
|
|
3642
3683
|
|
|
3643
|
-
|
|
3644
|
-
|
|
3684
|
+
i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
|
|
3685
|
+
[formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
|
|
3645
3686
|
|
|
3646
|
-
|
|
3647
|
-
|
|
3687
|
+
i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
|
|
3688
|
+
[formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
|
|
3648
3689
|
|
|
3649
|
-
|
|
3650
|
-
|
|
3690
|
+
i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
|
|
3691
|
+
[formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
|
|
3651
3692
|
|
|
3652
|
-
|
|
3653
|
-
|
|
3693
|
+
i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
|
|
3694
|
+
[formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
|
|
3654
3695
|
|
|
3655
|
-
|
|
3656
|
-
|
|
3696
|
+
i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
|
|
3697
|
+
[formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
|
|
3657
3698
|
|
|
3658
|
-
|
|
3659
|
-
|
|
3699
|
+
i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
|
|
3700
|
+
[formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
|
|
3660
3701
|
|
|
3661
|
-
|
|
3662
|
-
|
|
3702
|
+
i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
|
|
3703
|
+
[formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
|
|
3663
3704
|
|
|
3664
|
-
|
|
3665
|
-
|
|
3705
|
+
i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
|
|
3706
|
+
[formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
|
|
3666
3707
|
|
|
3667
|
-
|
|
3668
|
-
|
|
3708
|
+
i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
|
|
3709
|
+
[formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
|
|
3669
3710
|
|
|
3670
|
-
|
|
3671
|
-
|
|
3711
|
+
i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
|
|
3712
|
+
[formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
|
|
3672
3713
|
|
|
3673
|
-
|
|
3674
|
-
|
|
3714
|
+
i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
|
|
3715
|
+
[formatValueAxis]="messages.formatValueAxis"
|
|
3675
3716
|
|
|
3676
|
-
|
|
3677
|
-
|
|
3717
|
+
i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
|
|
3718
|
+
[formatYAxis]="messages.formatYAxis"
|
|
3678
3719
|
|
|
3679
|
-
|
|
3680
|
-
|
|
3720
|
+
i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
|
|
3721
|
+
[formatValueAxisTitle]="messages.formatValueAxisTitle"
|
|
3681
3722
|
|
|
3682
|
-
|
|
3683
|
-
|
|
3723
|
+
i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
|
|
3724
|
+
[formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
|
|
3684
3725
|
|
|
3685
|
-
|
|
3686
|
-
|
|
3726
|
+
i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
|
|
3727
|
+
[formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
|
|
3687
3728
|
|
|
3688
|
-
|
|
3689
|
-
|
|
3729
|
+
i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
|
|
3730
|
+
[formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
|
|
3690
3731
|
|
|
3691
|
-
|
|
3692
|
-
|
|
3732
|
+
i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
|
|
3733
|
+
[formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
|
|
3693
3734
|
|
|
3694
|
-
|
|
3695
|
-
|
|
3735
|
+
i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
|
|
3736
|
+
[formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
|
|
3696
3737
|
|
|
3697
|
-
|
|
3698
|
-
|
|
3738
|
+
i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
|
|
3739
|
+
[formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
|
|
3699
3740
|
|
|
3700
|
-
|
|
3701
|
-
|
|
3741
|
+
i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
|
|
3742
|
+
[formatValueAxisLabels]="messages.formatValueAxisLabels"
|
|
3702
3743
|
|
|
3703
|
-
|
|
3704
|
-
|
|
3744
|
+
i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3745
|
+
[formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
|
|
3705
3746
|
|
|
3706
|
-
|
|
3707
|
-
|
|
3747
|
+
i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3748
|
+
[formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
|
|
3708
3749
|
|
|
3709
|
-
|
|
3710
|
-
|
|
3750
|
+
i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3751
|
+
[formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
|
|
3711
3752
|
|
|
3712
|
-
|
|
3713
|
-
|
|
3753
|
+
i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3754
|
+
[formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
|
|
3714
3755
|
|
|
3715
|
-
|
|
3716
|
-
|
|
3756
|
+
i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
|
|
3757
|
+
[formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
|
|
3717
3758
|
|
|
3718
|
-
|
|
3719
|
-
|
|
3759
|
+
i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
|
|
3760
|
+
[formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
|
|
3720
3761
|
|
|
3721
|
-
|
|
3722
|
-
|
|
3762
|
+
i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
|
|
3763
|
+
[formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
|
|
3723
3764
|
|
|
3724
|
-
|
|
3725
|
-
|
|
3765
|
+
i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
|
|
3766
|
+
[formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
|
|
3726
3767
|
|
|
3727
|
-
|
|
3728
|
-
|
|
3768
|
+
i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
|
|
3769
|
+
[formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
|
|
3729
3770
|
|
|
3730
|
-
|
|
3731
|
-
|
|
3771
|
+
i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
|
|
3772
|
+
[formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
|
|
3732
3773
|
|
|
3733
|
-
|
|
3734
|
-
|
|
3774
|
+
i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
|
|
3775
|
+
[formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
|
|
3735
3776
|
|
|
3736
|
-
|
|
3737
|
-
|
|
3777
|
+
i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
|
|
3778
|
+
[formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
|
|
3738
3779
|
|
|
3739
3780
|
></ng-container>
|
|
3740
|
-
|
|
3781
|
+
@if (windowSettings?.modal) {
|
|
3782
|
+
<div @overlayAppear class="k-overlay"> </div>
|
|
3783
|
+
}
|
|
3741
3784
|
<kendo-window
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3785
|
+
class="k-chart-wizard"
|
|
3786
|
+
[title]="messageFor('windowTitle')"
|
|
3787
|
+
[width]="windowWidth"
|
|
3788
|
+
[height]="windowHeight"
|
|
3789
|
+
[minWidth]="windowSettings?.minWidth"
|
|
3790
|
+
[minHeight]="windowSettings?.minHeight"
|
|
3791
|
+
[state]="windowSettings?.state"
|
|
3792
|
+
[resizable]="true"
|
|
3793
|
+
(close)="close.emit()"
|
|
3794
|
+
>
|
|
3795
|
+
<kendo-splitter class="k-chart-wizard-splitter">
|
|
3796
|
+
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
|
3797
|
+
<div class="k-preview-pane-header">
|
|
3798
|
+
<kendo-dropdownbutton
|
|
3799
|
+
[svgIcon]="exportIcon"
|
|
3800
|
+
[data]="exportDropdownItems"
|
|
3801
|
+
textField="text"
|
|
3802
|
+
fillMode="flat"
|
|
3803
|
+
(itemClick)="onExport($event)"
|
|
3804
|
+
>
|
|
3805
|
+
{{ messageFor('exportButton') }}
|
|
3806
|
+
</kendo-dropdownbutton>
|
|
3807
|
+
</div>
|
|
3808
|
+
<div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
|
|
3809
|
+
<kendo-chart [transitions]="false" [style.width.%]="100" [style.height.%]="100">
|
|
3810
|
+
<kendo-chart-title
|
|
3811
|
+
[text]="stateService.state.title?.text"
|
|
3812
|
+
[font]="stateService.state.title?.font"
|
|
3813
|
+
[color]="stateService.state.title?.color"
|
|
3814
|
+
></kendo-chart-title>
|
|
3815
|
+
<kendo-chart-subtitle
|
|
3816
|
+
[text]="stateService.state.subtitle?.text"
|
|
3817
|
+
[font]="stateService.state.subtitle?.font"
|
|
3818
|
+
[color]="stateService.state.subtitle?.color"
|
|
3819
|
+
></kendo-chart-subtitle>
|
|
3820
|
+
<kendo-chart-area
|
|
3821
|
+
[background]="stateService.state.area?.background"
|
|
3822
|
+
[margin]="stateService.state.area?.margin"
|
|
3823
|
+
>
|
|
3824
|
+
</kendo-chart-area>
|
|
3825
|
+
@if (stateService.state.categoryAxis) {
|
|
3826
|
+
<kendo-chart-category-axis>
|
|
3827
|
+
@for (axis of stateService.state.categoryAxis; track $index) {
|
|
3828
|
+
<kendo-chart-category-axis-item
|
|
3829
|
+
[categories]="axis.categories"
|
|
3786
3830
|
[title]="{
|
|
3787
3831
|
text: axis.title?.text,
|
|
3788
3832
|
font: axis.title?.font,
|
|
@@ -3793,12 +3837,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3793
3837
|
font: axis.labels?.font,
|
|
3794
3838
|
color: axis.labels?.color
|
|
3795
3839
|
}"
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3840
|
+
[reverse]="axis.reverse"
|
|
3841
|
+
>
|
|
3842
|
+
</kendo-chart-category-axis-item>
|
|
3843
|
+
}
|
|
3844
|
+
@if (stateService.state.valueAxis) {
|
|
3845
|
+
<kendo-chart-value-axis>
|
|
3846
|
+
@for (axis of stateService.state.valueAxis; track $index) {
|
|
3847
|
+
<kendo-chart-value-axis-item
|
|
3802
3848
|
[title]="{
|
|
3803
3849
|
text: axis.title?.text,
|
|
3804
3850
|
font: axis.title?.font,
|
|
@@ -3810,59 +3856,65 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3810
3856
|
color: axis.labels?.color,
|
|
3811
3857
|
format: axis.labels?.format
|
|
3812
3858
|
}"
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3859
|
+
>
|
|
3860
|
+
</kendo-chart-value-axis-item>
|
|
3861
|
+
}
|
|
3862
|
+
</kendo-chart-value-axis>
|
|
3863
|
+
}
|
|
3864
|
+
</kendo-chart-category-axis>
|
|
3865
|
+
}
|
|
3866
|
+
<kendo-chart-series>
|
|
3867
|
+
@for (series of stateService.state.series; track $index) {
|
|
3868
|
+
<kendo-chart-series-item
|
|
3869
|
+
[type]="series.type"
|
|
3870
|
+
[data]="series.data"
|
|
3871
|
+
[stack]="series.stack"
|
|
3872
|
+
[field]="series.field"
|
|
3873
|
+
[categoryField]="series.categoryField"
|
|
3874
|
+
[name]="series.name"
|
|
3875
|
+
[color]="series.color"
|
|
3876
|
+
[labels]="{ visible: series.labels?.visible }"
|
|
3877
|
+
[width]="series.width"
|
|
3878
|
+
>
|
|
3879
|
+
</kendo-chart-series-item>
|
|
3880
|
+
}
|
|
3881
|
+
</kendo-chart-series>
|
|
3882
|
+
<kendo-chart-legend
|
|
3883
|
+
[visible]="stateService.state.legend?.visible"
|
|
3884
|
+
[position]="stateService.state.legend?.position"
|
|
3885
|
+
[labels]="stateService.state.legend?.labels"
|
|
3886
|
+
>
|
|
3887
|
+
</kendo-chart-legend>
|
|
3888
|
+
</kendo-chart>
|
|
3889
|
+
</div>
|
|
3890
|
+
</kendo-splitter-pane>
|
|
3891
|
+
<kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [collapsed]="collapsedConfigurationPane" [size]="stateService.splitterPaneSize">
|
|
3892
|
+
<kendo-tabstrip [keepTabContent]="true">
|
|
3893
|
+
<kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
|
|
3894
|
+
<ng-template kendoTabContent>
|
|
3895
|
+
<kendo-chartwizard-property-pane-chart-tab>
|
|
3896
|
+
</kendo-chartwizard-property-pane-chart-tab>
|
|
3897
|
+
</ng-template>
|
|
3898
|
+
</kendo-tabstrip-tab>
|
|
3899
|
+
<kendo-tabstrip-tab [title]="messageFor('tabData')">
|
|
3900
|
+
<ng-template kendoTabContent>
|
|
3901
|
+
<kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
|
|
3902
|
+
</ng-template>
|
|
3903
|
+
</kendo-tabstrip-tab>
|
|
3904
|
+
<kendo-tabstrip-tab [title]="messageFor('tabFormat')">
|
|
3905
|
+
<ng-template kendoTabContent>
|
|
3906
|
+
<kendo-chartwizard-property-pane-format-tab>
|
|
3907
|
+
</kendo-chartwizard-property-pane-format-tab>
|
|
3908
|
+
</ng-template>
|
|
3909
|
+
</kendo-tabstrip-tab>
|
|
3910
|
+
</kendo-tabstrip>
|
|
3911
|
+
</kendo-splitter-pane>
|
|
3912
|
+
</kendo-splitter>
|
|
3913
|
+
@if (showLicenseWatermark) {
|
|
3914
|
+
<div kendoWatermarkOverlay [licenseMessage]="licenseMessage"></div>
|
|
3915
|
+
}
|
|
3864
3916
|
</kendo-window>
|
|
3865
|
-
|
|
3917
|
+
`,
|
|
3866
3918
|
standalone: true,
|
|
3867
3919
|
imports: [
|
|
3868
3920
|
WindowComponent,
|
|
@@ -3873,9 +3925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
3873
3925
|
TitleComponent,
|
|
3874
3926
|
SubtitleComponent,
|
|
3875
3927
|
ChartAreaComponent,
|
|
3876
|
-
NgIf,
|
|
3877
3928
|
CategoryAxisComponent,
|
|
3878
|
-
NgFor,
|
|
3879
3929
|
CategoryAxisItemComponent,
|
|
3880
3930
|
ValueAxisComponent,
|
|
3881
3931
|
ValueAxisItemComponent,
|