@progress/kendo-angular-chart-wizard 16.11.0-develop.1 → 16.11.0-develop.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chart-wizard.component.d.ts +112 -4
- package/chart-wizard.module.d.ts +2 -1
- package/directives.d.ts +2 -1
- package/esm2020/chart-wizard.component.mjs +683 -30
- package/esm2020/chart-wizard.module.mjs +3 -2
- package/esm2020/directives.mjs +3 -1
- package/esm2020/index.mjs +1 -0
- package/esm2020/localization/chartwizard-localization.service.mjs +31 -0
- package/esm2020/localization/custom-messages.component.mjs +50 -0
- package/esm2020/localization/localized-messages.directive.mjs +38 -0
- package/esm2020/localization/messages.mjs +233 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/property-pane/chart-tab.component.mjs +39 -36
- package/esm2020/property-pane/data-tab.component.mjs +20 -14
- package/esm2020/property-pane/form-field.component.mjs +2 -2
- package/esm2020/property-pane/format-tab.component.mjs +176 -137
- package/fesm2015/progress-kendo-angular-chart-wizard.mjs +1251 -230
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +1249 -230
- package/index.d.ts +1 -0
- package/localization/chartwizard-localization.service.d.ts +14 -0
- package/localization/custom-messages.component.d.ts +25 -0
- package/localization/localized-messages.directive.d.ts +16 -0
- package/localization/messages.d.ts +437 -0
- package/package.json +16 -16
- package/property-pane/chart-tab.component.d.ts +3 -2
- package/property-pane/data-tab.component.d.ts +4 -1
- package/property-pane/format-tab.component.d.ts +15 -7
@@ -12,6 +12,7 @@ import { KENDO_CHARTWIZARD } from './directives';
|
|
12
12
|
import * as i0 from "@angular/core";
|
13
13
|
import * as i1 from "./chart-wizard.component";
|
14
14
|
import * as i2 from "./grid-integration/grid-chart-wizard.directive";
|
15
|
+
import * as i3 from "./localization/custom-messages.component";
|
15
16
|
//IMPORTANT: NgModule export kept for backwards compatibility
|
16
17
|
/**
|
17
18
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart Wizard component and directives.
|
@@ -23,7 +24,7 @@ import * as i2 from "./grid-integration/grid-chart-wizard.directive";
|
|
23
24
|
export class ChartWizardModule {
|
24
25
|
}
|
25
26
|
ChartWizardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
26
|
-
ChartWizardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, imports: [i1.ChartWizardComponent, i2.ChartWizardGridBindingDirective], exports: [i1.ChartWizardComponent, i2.ChartWizardGridBindingDirective] });
|
27
|
+
ChartWizardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, imports: [i1.ChartWizardComponent, i2.ChartWizardGridBindingDirective, i3.CustomMessagesComponent], exports: [i1.ChartWizardComponent, i2.ChartWizardGridBindingDirective, i3.CustomMessagesComponent] });
|
27
28
|
ChartWizardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, providers: [
|
28
29
|
ThemeService,
|
29
30
|
PopupService,
|
@@ -33,7 +34,7 @@ ChartWizardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", versi
|
|
33
34
|
DialogService,
|
34
35
|
WindowService,
|
35
36
|
WindowContainerService
|
36
|
-
], imports: [i1.ChartWizardComponent] });
|
37
|
+
], imports: [i1.ChartWizardComponent, i3.CustomMessagesComponent] });
|
37
38
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardModule, decorators: [{
|
38
39
|
type: NgModule,
|
39
40
|
args: [{
|
package/esm2020/directives.mjs
CHANGED
@@ -4,10 +4,12 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartWizardComponent } from "./chart-wizard.component";
|
6
6
|
import { ChartWizardGridBindingDirective } from "./grid-integration/grid-chart-wizard.directive";
|
7
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
7
8
|
/**
|
8
9
|
* Utility array that contains all `@progress/kendo-angular-chart-wizard` related components and directives.
|
9
10
|
*/
|
10
11
|
export const KENDO_CHARTWIZARD = [
|
11
12
|
ChartWizardComponent,
|
12
|
-
ChartWizardGridBindingDirective
|
13
|
+
ChartWizardGridBindingDirective,
|
14
|
+
CustomMessagesComponent
|
13
15
|
];
|
package/esm2020/index.mjs
CHANGED
@@ -7,5 +7,6 @@ export * from './chart-wizard.module';
|
|
7
7
|
export * from './grid-integration';
|
8
8
|
export * from './common';
|
9
9
|
export * from './events';
|
10
|
+
export { CustomMessagesComponent } from './localization/custom-messages.component';
|
10
11
|
export { ChartWizardModule } from './chart-wizard.module';
|
11
12
|
export { KENDO_CHARTWIZARD } from './directives';
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { Inject, Injectable, Optional } from '@angular/core';
|
6
|
+
import { LocalizationService, L10N_PREFIX, MessageService, RTL } from '@progress/kendo-angular-l10n';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
import * as i1 from "@progress/kendo-angular-l10n";
|
9
|
+
/**
|
10
|
+
* @hidden
|
11
|
+
*/
|
12
|
+
export class ChartWizardLocalizationService extends LocalizationService {
|
13
|
+
constructor(prefix, messageService, _rtl) {
|
14
|
+
super(prefix, messageService, _rtl);
|
15
|
+
}
|
16
|
+
}
|
17
|
+
ChartWizardLocalizationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
18
|
+
ChartWizardLocalizationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardLocalizationService });
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardLocalizationService, decorators: [{
|
20
|
+
type: Injectable
|
21
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
22
|
+
type: Inject,
|
23
|
+
args: [L10N_PREFIX]
|
24
|
+
}] }, { type: i1.MessageService, decorators: [{
|
25
|
+
type: Optional
|
26
|
+
}] }, { type: undefined, decorators: [{
|
27
|
+
type: Optional
|
28
|
+
}, {
|
29
|
+
type: Inject,
|
30
|
+
args: [RTL]
|
31
|
+
}] }]; } });
|
@@ -0,0 +1,50 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { Component, forwardRef } from '@angular/core';
|
6
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
7
|
+
import { Messages } from './messages';
|
8
|
+
import * as i0 from "@angular/core";
|
9
|
+
import * as i1 from "@progress/kendo-angular-l10n";
|
10
|
+
/**
|
11
|
+
* Custom component messages override default component messages.
|
12
|
+
* @example
|
13
|
+
* ```html
|
14
|
+
* <kendo-chartwizard [data]="data">
|
15
|
+
* <kendo-chartwizard-messages
|
16
|
+
* windowTitle="Title"
|
17
|
+
* ></kendo-chartwizard-messages>
|
18
|
+
* </kendo-chartwizard>
|
19
|
+
* ```
|
20
|
+
*/
|
21
|
+
export class CustomMessagesComponent extends Messages {
|
22
|
+
constructor(service) {
|
23
|
+
super();
|
24
|
+
this.service = service;
|
25
|
+
}
|
26
|
+
get override() {
|
27
|
+
return true;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
31
|
+
CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, isStandalone: true, selector: "kendo-chartwizard-messages", providers: [
|
32
|
+
{
|
33
|
+
provide: Messages,
|
34
|
+
useExisting: forwardRef(() => CustomMessagesComponent)
|
35
|
+
}
|
36
|
+
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomMessagesComponent, decorators: [{
|
38
|
+
type: Component,
|
39
|
+
args: [{
|
40
|
+
providers: [
|
41
|
+
{
|
42
|
+
provide: Messages,
|
43
|
+
useExisting: forwardRef(() => CustomMessagesComponent)
|
44
|
+
}
|
45
|
+
],
|
46
|
+
selector: 'kendo-chartwizard-messages',
|
47
|
+
template: ``,
|
48
|
+
standalone: true
|
49
|
+
}]
|
50
|
+
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { Directive, forwardRef } from '@angular/core';
|
6
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
7
|
+
import { Messages } from './messages';
|
8
|
+
import * as i0 from "@angular/core";
|
9
|
+
import * as i1 from "@progress/kendo-angular-l10n";
|
10
|
+
/**
|
11
|
+
* @hidden
|
12
|
+
*/
|
13
|
+
export class LocalizedMessagesDirective extends Messages {
|
14
|
+
constructor(service) {
|
15
|
+
super();
|
16
|
+
this.service = service;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
20
|
+
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoChartWizardLocalizedMessages]", providers: [
|
21
|
+
{
|
22
|
+
provide: Messages,
|
23
|
+
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
24
|
+
}
|
25
|
+
], usesInheritance: true, ngImport: i0 });
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
|
27
|
+
type: Directive,
|
28
|
+
args: [{
|
29
|
+
providers: [
|
30
|
+
{
|
31
|
+
provide: Messages,
|
32
|
+
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
33
|
+
}
|
34
|
+
],
|
35
|
+
selector: '[kendoChartWizardLocalizedMessages]',
|
36
|
+
standalone: true
|
37
|
+
}]
|
38
|
+
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
@@ -0,0 +1,233 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { Directive } from '@angular/core';
|
6
|
+
import { Input } from '@angular/core';
|
7
|
+
import { ComponentMessages } from '@progress/kendo-angular-l10n';
|
8
|
+
import * as i0 from "@angular/core";
|
9
|
+
/**
|
10
|
+
* @hidden
|
11
|
+
*/
|
12
|
+
export class Messages extends ComponentMessages {
|
13
|
+
}
|
14
|
+
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
15
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: Messages, selector: "[kendoChartWizardMessages]", inputs: { windowTitle: "windowTitle", exportButton: "exportButton", exportPDFButton: "exportPDFButton", exportSVGButton: "exportSVGButton", exportPNGButton: "exportPNGButton", tabChart: "tabChart", tabData: "tabData", tabFormat: "tabFormat", barChart: "barChart", barChartBar: "barChartBar", barChartStackedBar: "barChartStackedBar", barChart100StackedBar: "barChart100StackedBar", pieChart: "pieChart", pieChartPie: "pieChartPie", columnChart: "columnChart", columnChartColumn: "columnChartColumn", columnChartStackedColumn: "columnChartStackedColumn", columnChart100StackedColumn: "columnChart100StackedColumn", lineChart: "lineChart", lineChartLine: "lineChartLine", lineChartStackedLine: "lineChartStackedLine", lineChart100StackedLine: "lineChart100StackedLine", scatterChart: "scatterChart", scatterChartScatter: "scatterChartScatter", configuration: "configuration", configurationCategoryAxis: "configurationCategoryAxis", configurationXAxis: "configurationXAxis", configurationValueAxis: "configurationValueAxis", configurationSeries: "configurationSeries", configurationSeriesAdd: "configurationSeriesAdd", formatChartArea: "formatChartArea", formatChartAreaMargins: "formatChartAreaMargins", formatChartAreaMarginsAuto: "formatChartAreaMarginsAuto", formatChartAreaMarginsLeft: "formatChartAreaMarginsLeft", formatChartAreaMarginsRight: "formatChartAreaMarginsRight", formatChartAreaMarginsTop: "formatChartAreaMarginsTop", formatChartAreaMarginsBottom: "formatChartAreaMarginsBottom", formatChartAreaBackground: "formatChartAreaBackground", formatChartAreaBackgroundColor: "formatChartAreaBackgroundColor", formatTitle: "formatTitle", formatTitleApplyTo: "formatTitleApplyTo", formatTitleChartTitle: "formatTitleChartTitle", formatTitleChartSubtitle: "formatTitleChartSubtitle", formatTitleLabel: "formatTitleLabel", formatTitleFont: "formatTitleFont", formatTitleFontPlaceholder: "formatTitleFontPlaceholder", formatTitleSize: "formatTitleSize", formatTitleSizePlaceholder: "formatTitleSizePlaceholder", formatTitleColor: "formatTitleColor", formatSeries: "formatSeries", formatSeriesApplyTo: "formatSeriesApplyTo", formatSeriesAllSeries: "formatSeriesAllSeries", formatSeriesColor: "formatSeriesColor", formatSeriesShowLabels: "formatSeriesShowLabels", formatLegend: "formatLegend", formatLegendShowLegend: "formatLegendShowLegend", formatLegendFont: "formatLegendFont", formatLegendFontPlaceholder: "formatLegendFontPlaceholder", formatLegendSize: "formatLegendSize", formatLegendSizePlaceholder: "formatLegendSizePlaceholder", formatLegendColor: "formatLegendColor", formatLegendPosition: "formatLegendPosition", formatLegendPositionTop: "formatLegendPositionTop", formatLegendPositionBottom: "formatLegendPositionBottom", formatLegendPositionLeft: "formatLegendPositionLeft", formatLegendPositionRight: "formatLegendPositionRight", formatCategoryAxis: "formatCategoryAxis", formatXAxis: "formatXAxis", formatCategoryAxisTitle: "formatCategoryAxisTitle", formatCategoryAxisTitlePlaceholder: "formatCategoryAxisTitlePlaceholder", formatCategoryAxisTitleFont: "formatCategoryAxisTitleFont", formatCategoryAxisTitleFontPlaceholder: "formatCategoryAxisTitleFontPlaceholder", formatCategoryAxisTitleSize: "formatCategoryAxisTitleSize", formatCategoryAxisTitleSizePlaceholder: "formatCategoryAxisTitleSizePlaceholder", formatCategoryAxisTitleColor: "formatCategoryAxisTitleColor", formatCategoryAxisLabels: "formatCategoryAxisLabels", formatCategoryAxisLabelsFont: "formatCategoryAxisLabelsFont", formatCategoryAxisLabelsFontPlaceholder: "formatCategoryAxisLabelsFontPlaceholder", formatCategoryAxisLabelsSize: "formatCategoryAxisLabelsSize", formatCategoryAxisLabelsSizePlaceholder: "formatCategoryAxisLabelsSizePlaceholder", formatCategoryAxisLabelsColor: "formatCategoryAxisLabelsColor", formatCategoryAxisLabelsRotation: "formatCategoryAxisLabelsRotation", formatCategoryAxisLabelsRotationAuto: "formatCategoryAxisLabelsRotationAuto", formatCategoryAxisLabelsReverseOrder: "formatCategoryAxisLabelsReverseOrder", formatValueAxis: "formatValueAxis", formatYAxis: "formatYAxis", formatValueAxisTitle: "formatValueAxisTitle", formatValueAxisTitlePlaceholder: "formatValueAxisTitlePlaceholder", formatValueAxisTitleFont: "formatValueAxisTitleFont", formatValueAxisTitleFontPlaceholder: "formatValueAxisTitleFontPlaceholder", formatValueAxisTitleSize: "formatValueAxisTitleSize", formatValueAxisTitleSizePlaceholder: "formatValueAxisTitleSizePlaceholder", formatValueAxisTitleColor: "formatValueAxisTitleColor", formatValueAxisLabels: "formatValueAxisLabels", formatValueAxisLabelsFormat: "formatValueAxisLabelsFormat", formatValueAxisLabelsFormatText: "formatValueAxisLabelsFormatText", formatValueAxisLabelsFormatNumber: "formatValueAxisLabelsFormatNumber", formatValueAxisLabelsFormatCurrency: "formatValueAxisLabelsFormatCurrency", formatValueAxisLabelsFormatPercent: "formatValueAxisLabelsFormatPercent", formatValueAxisLabelsFont: "formatValueAxisLabelsFont", formatValueAxisLabelsFontPlaceholder: "formatValueAxisLabelsFontPlaceholder", formatValueAxisLabelsSize: "formatValueAxisLabelsSize", formatValueAxisLabelsSizePlaceholder: "formatValueAxisLabelsSizePlaceholder", formatValueAxisLabelsColor: "formatValueAxisLabelsColor", formatValueAxisLabelsRotation: "formatValueAxisLabelsRotation", formatValueAxisLabelsRotationAuto: "formatValueAxisLabelsRotationAuto" }, usesInheritance: true, ngImport: i0 });
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, decorators: [{
|
17
|
+
type: Directive,
|
18
|
+
args: [{
|
19
|
+
selector: '[kendoChartWizardMessages]'
|
20
|
+
}]
|
21
|
+
}], propDecorators: { windowTitle: [{
|
22
|
+
type: Input
|
23
|
+
}], exportButton: [{
|
24
|
+
type: Input
|
25
|
+
}], exportPDFButton: [{
|
26
|
+
type: Input
|
27
|
+
}], exportSVGButton: [{
|
28
|
+
type: Input
|
29
|
+
}], exportPNGButton: [{
|
30
|
+
type: Input
|
31
|
+
}], tabChart: [{
|
32
|
+
type: Input
|
33
|
+
}], tabData: [{
|
34
|
+
type: Input
|
35
|
+
}], tabFormat: [{
|
36
|
+
type: Input
|
37
|
+
}], barChart: [{
|
38
|
+
type: Input
|
39
|
+
}], barChartBar: [{
|
40
|
+
type: Input
|
41
|
+
}], barChartStackedBar: [{
|
42
|
+
type: Input
|
43
|
+
}], barChart100StackedBar: [{
|
44
|
+
type: Input
|
45
|
+
}], pieChart: [{
|
46
|
+
type: Input
|
47
|
+
}], pieChartPie: [{
|
48
|
+
type: Input
|
49
|
+
}], columnChart: [{
|
50
|
+
type: Input
|
51
|
+
}], columnChartColumn: [{
|
52
|
+
type: Input
|
53
|
+
}], columnChartStackedColumn: [{
|
54
|
+
type: Input
|
55
|
+
}], columnChart100StackedColumn: [{
|
56
|
+
type: Input
|
57
|
+
}], lineChart: [{
|
58
|
+
type: Input
|
59
|
+
}], lineChartLine: [{
|
60
|
+
type: Input
|
61
|
+
}], lineChartStackedLine: [{
|
62
|
+
type: Input
|
63
|
+
}], lineChart100StackedLine: [{
|
64
|
+
type: Input
|
65
|
+
}], scatterChart: [{
|
66
|
+
type: Input
|
67
|
+
}], scatterChartScatter: [{
|
68
|
+
type: Input
|
69
|
+
}], configuration: [{
|
70
|
+
type: Input
|
71
|
+
}], configurationCategoryAxis: [{
|
72
|
+
type: Input
|
73
|
+
}], configurationXAxis: [{
|
74
|
+
type: Input
|
75
|
+
}], configurationValueAxis: [{
|
76
|
+
type: Input
|
77
|
+
}], configurationSeries: [{
|
78
|
+
type: Input
|
79
|
+
}], configurationSeriesAdd: [{
|
80
|
+
type: Input
|
81
|
+
}], formatChartArea: [{
|
82
|
+
type: Input
|
83
|
+
}], formatChartAreaMargins: [{
|
84
|
+
type: Input
|
85
|
+
}], formatChartAreaMarginsAuto: [{
|
86
|
+
type: Input
|
87
|
+
}], formatChartAreaMarginsLeft: [{
|
88
|
+
type: Input
|
89
|
+
}], formatChartAreaMarginsRight: [{
|
90
|
+
type: Input
|
91
|
+
}], formatChartAreaMarginsTop: [{
|
92
|
+
type: Input
|
93
|
+
}], formatChartAreaMarginsBottom: [{
|
94
|
+
type: Input
|
95
|
+
}], formatChartAreaBackground: [{
|
96
|
+
type: Input
|
97
|
+
}], formatChartAreaBackgroundColor: [{
|
98
|
+
type: Input
|
99
|
+
}], formatTitle: [{
|
100
|
+
type: Input
|
101
|
+
}], formatTitleApplyTo: [{
|
102
|
+
type: Input
|
103
|
+
}], formatTitleChartTitle: [{
|
104
|
+
type: Input
|
105
|
+
}], formatTitleChartSubtitle: [{
|
106
|
+
type: Input
|
107
|
+
}], formatTitleLabel: [{
|
108
|
+
type: Input
|
109
|
+
}], formatTitleFont: [{
|
110
|
+
type: Input
|
111
|
+
}], formatTitleFontPlaceholder: [{
|
112
|
+
type: Input
|
113
|
+
}], formatTitleSize: [{
|
114
|
+
type: Input
|
115
|
+
}], formatTitleSizePlaceholder: [{
|
116
|
+
type: Input
|
117
|
+
}], formatTitleColor: [{
|
118
|
+
type: Input
|
119
|
+
}], formatSeries: [{
|
120
|
+
type: Input
|
121
|
+
}], formatSeriesApplyTo: [{
|
122
|
+
type: Input
|
123
|
+
}], formatSeriesAllSeries: [{
|
124
|
+
type: Input
|
125
|
+
}], formatSeriesColor: [{
|
126
|
+
type: Input
|
127
|
+
}], formatSeriesShowLabels: [{
|
128
|
+
type: Input
|
129
|
+
}], formatLegend: [{
|
130
|
+
type: Input
|
131
|
+
}], formatLegendShowLegend: [{
|
132
|
+
type: Input
|
133
|
+
}], formatLegendFont: [{
|
134
|
+
type: Input
|
135
|
+
}], formatLegendFontPlaceholder: [{
|
136
|
+
type: Input
|
137
|
+
}], formatLegendSize: [{
|
138
|
+
type: Input
|
139
|
+
}], formatLegendSizePlaceholder: [{
|
140
|
+
type: Input
|
141
|
+
}], formatLegendColor: [{
|
142
|
+
type: Input
|
143
|
+
}], formatLegendPosition: [{
|
144
|
+
type: Input
|
145
|
+
}], formatLegendPositionTop: [{
|
146
|
+
type: Input
|
147
|
+
}], formatLegendPositionBottom: [{
|
148
|
+
type: Input
|
149
|
+
}], formatLegendPositionLeft: [{
|
150
|
+
type: Input
|
151
|
+
}], formatLegendPositionRight: [{
|
152
|
+
type: Input
|
153
|
+
}], formatCategoryAxis: [{
|
154
|
+
type: Input
|
155
|
+
}], formatXAxis: [{
|
156
|
+
type: Input
|
157
|
+
}], formatCategoryAxisTitle: [{
|
158
|
+
type: Input
|
159
|
+
}], formatCategoryAxisTitlePlaceholder: [{
|
160
|
+
type: Input
|
161
|
+
}], formatCategoryAxisTitleFont: [{
|
162
|
+
type: Input
|
163
|
+
}], formatCategoryAxisTitleFontPlaceholder: [{
|
164
|
+
type: Input
|
165
|
+
}], formatCategoryAxisTitleSize: [{
|
166
|
+
type: Input
|
167
|
+
}], formatCategoryAxisTitleSizePlaceholder: [{
|
168
|
+
type: Input
|
169
|
+
}], formatCategoryAxisTitleColor: [{
|
170
|
+
type: Input
|
171
|
+
}], formatCategoryAxisLabels: [{
|
172
|
+
type: Input
|
173
|
+
}], formatCategoryAxisLabelsFont: [{
|
174
|
+
type: Input
|
175
|
+
}], formatCategoryAxisLabelsFontPlaceholder: [{
|
176
|
+
type: Input
|
177
|
+
}], formatCategoryAxisLabelsSize: [{
|
178
|
+
type: Input
|
179
|
+
}], formatCategoryAxisLabelsSizePlaceholder: [{
|
180
|
+
type: Input
|
181
|
+
}], formatCategoryAxisLabelsColor: [{
|
182
|
+
type: Input
|
183
|
+
}], formatCategoryAxisLabelsRotation: [{
|
184
|
+
type: Input
|
185
|
+
}], formatCategoryAxisLabelsRotationAuto: [{
|
186
|
+
type: Input
|
187
|
+
}], formatCategoryAxisLabelsReverseOrder: [{
|
188
|
+
type: Input
|
189
|
+
}], formatValueAxis: [{
|
190
|
+
type: Input
|
191
|
+
}], formatYAxis: [{
|
192
|
+
type: Input
|
193
|
+
}], formatValueAxisTitle: [{
|
194
|
+
type: Input
|
195
|
+
}], formatValueAxisTitlePlaceholder: [{
|
196
|
+
type: Input
|
197
|
+
}], formatValueAxisTitleFont: [{
|
198
|
+
type: Input
|
199
|
+
}], formatValueAxisTitleFontPlaceholder: [{
|
200
|
+
type: Input
|
201
|
+
}], formatValueAxisTitleSize: [{
|
202
|
+
type: Input
|
203
|
+
}], formatValueAxisTitleSizePlaceholder: [{
|
204
|
+
type: Input
|
205
|
+
}], formatValueAxisTitleColor: [{
|
206
|
+
type: Input
|
207
|
+
}], formatValueAxisLabels: [{
|
208
|
+
type: Input
|
209
|
+
}], formatValueAxisLabelsFormat: [{
|
210
|
+
type: Input
|
211
|
+
}], formatValueAxisLabelsFormatText: [{
|
212
|
+
type: Input
|
213
|
+
}], formatValueAxisLabelsFormatNumber: [{
|
214
|
+
type: Input
|
215
|
+
}], formatValueAxisLabelsFormatCurrency: [{
|
216
|
+
type: Input
|
217
|
+
}], formatValueAxisLabelsFormatPercent: [{
|
218
|
+
type: Input
|
219
|
+
}], formatValueAxisLabelsFont: [{
|
220
|
+
type: Input
|
221
|
+
}], formatValueAxisLabelsFontPlaceholder: [{
|
222
|
+
type: Input
|
223
|
+
}], formatValueAxisLabelsSize: [{
|
224
|
+
type: Input
|
225
|
+
}], formatValueAxisLabelsSizePlaceholder: [{
|
226
|
+
type: Input
|
227
|
+
}], formatValueAxisLabelsColor: [{
|
228
|
+
type: Input
|
229
|
+
}], formatValueAxisLabelsRotation: [{
|
230
|
+
type: Input
|
231
|
+
}], formatValueAxisLabelsRotationAuto: [{
|
232
|
+
type: Input
|
233
|
+
}] } });
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-chart-wizard',
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
12
|
-
publishDate:
|
13
|
-
version: '16.11.0-develop.
|
12
|
+
publishDate: 1727949862,
|
13
|
+
version: '16.11.0-develop.11',
|
14
14
|
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',
|
15
15
|
};
|