@progress/kendo-angular-chart-wizard 16.11.0-develop.9 → 16.12.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chart-wizard.component.d.ts +131 -5
- package/chart-wizard.module.d.ts +2 -1
- package/common/window-settings.d.ts +34 -0
- package/directives.d.ts +2 -1
- package/esm2020/chart-wizard.component.mjs +736 -38
- package/esm2020/chart-wizard.module.mjs +3 -2
- package/esm2020/common/window-settings.mjs +5 -0
- 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 +19 -13
- 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 +1305 -237
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +1301 -237
- package/index.d.ts +3 -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 +17 -17
- 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
@@ -7,10 +7,10 @@ import { chartBarClusteredIcon, chartBarStacked100Icon, chartBarStackedIcon, cha
|
|
7
7
|
import { StateService } from '../state.service';
|
8
8
|
import { ExpansionPanelComponent } from '@progress/kendo-angular-layout';
|
9
9
|
import { ChartWizardSeriesTypeButtonComponent } from '../series-type-button.component';
|
10
|
-
import {
|
10
|
+
import { ChartWizardLocalizationService } from '../localization/chartwizard-localization.service';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
import * as i1 from "../state.service";
|
13
|
-
import * as i2 from "
|
13
|
+
import * as i2 from "../localization/chartwizard-localization.service";
|
14
14
|
/**
|
15
15
|
* @hidden
|
16
16
|
*/
|
@@ -43,27 +43,30 @@ export class ChartWizardPropertyPaneChartTabComponent {
|
|
43
43
|
detectChanges() {
|
44
44
|
this.cdr.detectChanges();
|
45
45
|
}
|
46
|
+
messageFor(key) {
|
47
|
+
return this.localization.get(key);
|
48
|
+
}
|
46
49
|
}
|
47
|
-
ChartWizardPropertyPaneChartTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneChartTabComponent, deps: [{ token: i1.StateService }, { token: i0.ChangeDetectorRef }, { token: i2.
|
50
|
+
ChartWizardPropertyPaneChartTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneChartTabComponent, deps: [{ token: i1.StateService }, { token: i0.ChangeDetectorRef }, { token: i2.ChartWizardLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
48
51
|
ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneChartTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-chart-tab", ngImport: i0, template: `
|
49
|
-
<kendo-expansionpanel title="
|
52
|
+
<kendo-expansionpanel [title]="messageFor('barChart')" [expanded]="true">
|
50
53
|
<div class="k-chart-types-wrapper">
|
51
54
|
<kendo-chartwizard-series-type-button
|
52
|
-
title="
|
55
|
+
[title]="messageFor('barChartBar')"
|
53
56
|
[chartTypeIcon]="chartBarClusteredIcon"
|
54
57
|
seriesType="bar"
|
55
58
|
[stack]="false"
|
56
59
|
>
|
57
60
|
</kendo-chartwizard-series-type-button>
|
58
61
|
<kendo-chartwizard-series-type-button
|
59
|
-
title="
|
62
|
+
[title]="messageFor('barChartStackedBar')"
|
60
63
|
[chartTypeIcon]="chartBarStackedIcon"
|
61
64
|
seriesType="bar"
|
62
65
|
[stack]="true"
|
63
66
|
>
|
64
67
|
</kendo-chartwizard-series-type-button>
|
65
68
|
<kendo-chartwizard-series-type-button
|
66
|
-
title="
|
69
|
+
[title]="messageFor('barChart100StackedBar')"
|
67
70
|
[chartTypeIcon]="chartBarStacked100Icon"
|
68
71
|
seriesType="bar"
|
69
72
|
[stack]="{ type: '100%' }"
|
@@ -71,10 +74,10 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
|
|
71
74
|
</kendo-chartwizard-series-type-button>
|
72
75
|
</div>
|
73
76
|
</kendo-expansionpanel>
|
74
|
-
<kendo-expansionpanel title="
|
77
|
+
<kendo-expansionpanel [title]="messageFor('pieChart')" [expanded]="true">
|
75
78
|
<div class="k-chart-types-wrapper">
|
76
79
|
<kendo-chartwizard-series-type-button
|
77
|
-
title="
|
80
|
+
[title]="messageFor('pieChartPie')"
|
78
81
|
[chartTypeIcon]="chartPieIcon"
|
79
82
|
seriesType="pie"
|
80
83
|
[stack]="undefined"
|
@@ -82,24 +85,24 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
|
|
82
85
|
</kendo-chartwizard-series-type-button>
|
83
86
|
</div>
|
84
87
|
</kendo-expansionpanel>
|
85
|
-
<kendo-expansionpanel title="
|
88
|
+
<kendo-expansionpanel [title]="messageFor('columnChart')" [expanded]="true">
|
86
89
|
<div class="k-chart-types-wrapper">
|
87
90
|
<kendo-chartwizard-series-type-button
|
88
|
-
title="
|
91
|
+
[title]="messageFor('columnChartColumn')"
|
89
92
|
[chartTypeIcon]="chartColumnClusteredIcon"
|
90
93
|
seriesType="column"
|
91
94
|
[stack]="false"
|
92
95
|
>
|
93
96
|
</kendo-chartwizard-series-type-button>
|
94
97
|
<kendo-chartwizard-series-type-button
|
95
|
-
title="
|
98
|
+
[title]="messageFor('columnChartStackedColumn')"
|
96
99
|
[chartTypeIcon]="chartColumnStackedIcon"
|
97
100
|
seriesType="column"
|
98
101
|
[stack]="true"
|
99
102
|
>
|
100
103
|
</kendo-chartwizard-series-type-button>
|
101
104
|
<kendo-chartwizard-series-type-button
|
102
|
-
title="
|
105
|
+
[title]="messageFor('columnChart100StackedColumn')"
|
103
106
|
[chartTypeIcon]="chartColumnStacked100Icon"
|
104
107
|
seriesType="column"
|
105
108
|
[stack]="{ type: '100%' }"
|
@@ -107,24 +110,24 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
|
|
107
110
|
</kendo-chartwizard-series-type-button>
|
108
111
|
</div>
|
109
112
|
</kendo-expansionpanel>
|
110
|
-
<kendo-expansionpanel title="
|
113
|
+
<kendo-expansionpanel [title]="messageFor('lineChart')" [expanded]="true">
|
111
114
|
<div class="k-chart-types-wrapper">
|
112
115
|
<kendo-chartwizard-series-type-button
|
113
|
-
title="
|
116
|
+
[title]="messageFor('lineChartLine')"
|
114
117
|
[chartTypeIcon]="chartLineIcon"
|
115
118
|
seriesType="line"
|
116
119
|
[stack]="false"
|
117
120
|
>
|
118
121
|
</kendo-chartwizard-series-type-button>
|
119
122
|
<kendo-chartwizard-series-type-button
|
120
|
-
title="
|
123
|
+
[title]="messageFor('lineChartStackedLine')"
|
121
124
|
[chartTypeIcon]="chartLineStackedIcon"
|
122
125
|
seriesType="line"
|
123
126
|
[stack]="true"
|
124
127
|
>
|
125
128
|
</kendo-chartwizard-series-type-button>
|
126
129
|
<kendo-chartwizard-series-type-button
|
127
|
-
title="
|
130
|
+
[title]="messageFor('lineChart100StackedLine')"
|
128
131
|
[chartTypeIcon]="chartLineStacked100Icon"
|
129
132
|
seriesType="line"
|
130
133
|
[stack]="{ type: '100%' }"
|
@@ -132,10 +135,10 @@ ChartWizardPropertyPaneChartTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ min
|
|
132
135
|
</kendo-chartwizard-series-type-button>
|
133
136
|
</div>
|
134
137
|
</kendo-expansionpanel>
|
135
|
-
<kendo-expansionpanel title="
|
138
|
+
<kendo-expansionpanel [title]="messageFor('scatterChart')" [expanded]="true">
|
136
139
|
<div class="k-chart-types-wrapper">
|
137
140
|
<kendo-chartwizard-series-type-button
|
138
|
-
title="
|
141
|
+
[title]="messageFor('scatterChartScatter')"
|
139
142
|
[chartTypeIcon]="chartScatterIcon"
|
140
143
|
seriesType="scatter"
|
141
144
|
[stack]="false"
|
@@ -150,24 +153,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
150
153
|
selector: 'kendo-chartwizard-property-pane-chart-tab',
|
151
154
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
152
155
|
template: `
|
153
|
-
<kendo-expansionpanel title="
|
156
|
+
<kendo-expansionpanel [title]="messageFor('barChart')" [expanded]="true">
|
154
157
|
<div class="k-chart-types-wrapper">
|
155
158
|
<kendo-chartwizard-series-type-button
|
156
|
-
title="
|
159
|
+
[title]="messageFor('barChartBar')"
|
157
160
|
[chartTypeIcon]="chartBarClusteredIcon"
|
158
161
|
seriesType="bar"
|
159
162
|
[stack]="false"
|
160
163
|
>
|
161
164
|
</kendo-chartwizard-series-type-button>
|
162
165
|
<kendo-chartwizard-series-type-button
|
163
|
-
title="
|
166
|
+
[title]="messageFor('barChartStackedBar')"
|
164
167
|
[chartTypeIcon]="chartBarStackedIcon"
|
165
168
|
seriesType="bar"
|
166
169
|
[stack]="true"
|
167
170
|
>
|
168
171
|
</kendo-chartwizard-series-type-button>
|
169
172
|
<kendo-chartwizard-series-type-button
|
170
|
-
title="
|
173
|
+
[title]="messageFor('barChart100StackedBar')"
|
171
174
|
[chartTypeIcon]="chartBarStacked100Icon"
|
172
175
|
seriesType="bar"
|
173
176
|
[stack]="{ type: '100%' }"
|
@@ -175,10 +178,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
175
178
|
</kendo-chartwizard-series-type-button>
|
176
179
|
</div>
|
177
180
|
</kendo-expansionpanel>
|
178
|
-
<kendo-expansionpanel title="
|
181
|
+
<kendo-expansionpanel [title]="messageFor('pieChart')" [expanded]="true">
|
179
182
|
<div class="k-chart-types-wrapper">
|
180
183
|
<kendo-chartwizard-series-type-button
|
181
|
-
title="
|
184
|
+
[title]="messageFor('pieChartPie')"
|
182
185
|
[chartTypeIcon]="chartPieIcon"
|
183
186
|
seriesType="pie"
|
184
187
|
[stack]="undefined"
|
@@ -186,24 +189,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
186
189
|
</kendo-chartwizard-series-type-button>
|
187
190
|
</div>
|
188
191
|
</kendo-expansionpanel>
|
189
|
-
<kendo-expansionpanel title="
|
192
|
+
<kendo-expansionpanel [title]="messageFor('columnChart')" [expanded]="true">
|
190
193
|
<div class="k-chart-types-wrapper">
|
191
194
|
<kendo-chartwizard-series-type-button
|
192
|
-
title="
|
195
|
+
[title]="messageFor('columnChartColumn')"
|
193
196
|
[chartTypeIcon]="chartColumnClusteredIcon"
|
194
197
|
seriesType="column"
|
195
198
|
[stack]="false"
|
196
199
|
>
|
197
200
|
</kendo-chartwizard-series-type-button>
|
198
201
|
<kendo-chartwizard-series-type-button
|
199
|
-
title="
|
202
|
+
[title]="messageFor('columnChartStackedColumn')"
|
200
203
|
[chartTypeIcon]="chartColumnStackedIcon"
|
201
204
|
seriesType="column"
|
202
205
|
[stack]="true"
|
203
206
|
>
|
204
207
|
</kendo-chartwizard-series-type-button>
|
205
208
|
<kendo-chartwizard-series-type-button
|
206
|
-
title="
|
209
|
+
[title]="messageFor('columnChart100StackedColumn')"
|
207
210
|
[chartTypeIcon]="chartColumnStacked100Icon"
|
208
211
|
seriesType="column"
|
209
212
|
[stack]="{ type: '100%' }"
|
@@ -211,24 +214,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
211
214
|
</kendo-chartwizard-series-type-button>
|
212
215
|
</div>
|
213
216
|
</kendo-expansionpanel>
|
214
|
-
<kendo-expansionpanel title="
|
217
|
+
<kendo-expansionpanel [title]="messageFor('lineChart')" [expanded]="true">
|
215
218
|
<div class="k-chart-types-wrapper">
|
216
219
|
<kendo-chartwizard-series-type-button
|
217
|
-
title="
|
220
|
+
[title]="messageFor('lineChartLine')"
|
218
221
|
[chartTypeIcon]="chartLineIcon"
|
219
222
|
seriesType="line"
|
220
223
|
[stack]="false"
|
221
224
|
>
|
222
225
|
</kendo-chartwizard-series-type-button>
|
223
226
|
<kendo-chartwizard-series-type-button
|
224
|
-
title="
|
227
|
+
[title]="messageFor('lineChartStackedLine')"
|
225
228
|
[chartTypeIcon]="chartLineStackedIcon"
|
226
229
|
seriesType="line"
|
227
230
|
[stack]="true"
|
228
231
|
>
|
229
232
|
</kendo-chartwizard-series-type-button>
|
230
233
|
<kendo-chartwizard-series-type-button
|
231
|
-
title="
|
234
|
+
[title]="messageFor('lineChart100StackedLine')"
|
232
235
|
[chartTypeIcon]="chartLineStacked100Icon"
|
233
236
|
seriesType="line"
|
234
237
|
[stack]="{ type: '100%' }"
|
@@ -236,10 +239,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
236
239
|
</kendo-chartwizard-series-type-button>
|
237
240
|
</div>
|
238
241
|
</kendo-expansionpanel>
|
239
|
-
<kendo-expansionpanel title="
|
242
|
+
<kendo-expansionpanel [title]="messageFor('scatterChart')" [expanded]="true">
|
240
243
|
<div class="k-chart-types-wrapper">
|
241
244
|
<kendo-chartwizard-series-type-button
|
242
|
-
title="
|
245
|
+
[title]="messageFor('scatterChartScatter')"
|
243
246
|
[chartTypeIcon]="chartScatterIcon"
|
244
247
|
seriesType="scatter"
|
245
248
|
[stack]="false"
|
@@ -251,4 +254,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
251
254
|
standalone: true,
|
252
255
|
imports: [ExpansionPanelComponent, ChartWizardSeriesTypeButtonComponent]
|
253
256
|
}]
|
254
|
-
}], ctorParameters: function () { return [{ type: i1.StateService }, { type: i0.ChangeDetectorRef }, { type: i2.
|
257
|
+
}], ctorParameters: function () { return [{ type: i1.StateService }, { type: i0.ChangeDetectorRef }, { type: i2.ChartWizardLocalizationService }]; } });
|
@@ -12,18 +12,21 @@ import { NgIf } from '@angular/common';
|
|
12
12
|
import { ExpansionPanelComponent } from '@progress/kendo-angular-layout';
|
13
13
|
import { DropDownListComponent, ValueTemplateDirective } from '@progress/kendo-angular-dropdowns';
|
14
14
|
import { ButtonComponent, FocusableDirective } from '@progress/kendo-angular-buttons';
|
15
|
+
import { ChartWizardLocalizationService } from '../localization/chartwizard-localization.service';
|
15
16
|
import * as i0 from "@angular/core";
|
16
17
|
import * as i1 from "../state.service";
|
17
18
|
import * as i2 from "@angular/forms";
|
19
|
+
import * as i3 from "../localization/chartwizard-localization.service";
|
18
20
|
/**
|
19
21
|
* @hidden
|
20
22
|
*/
|
21
23
|
export class ChartWizardPropertyPaneDataTabComponent {
|
22
|
-
constructor(stateService, formBuilder, cdr, renderer) {
|
24
|
+
constructor(stateService, formBuilder, cdr, renderer, localization) {
|
23
25
|
this.stateService = stateService;
|
24
26
|
this.formBuilder = formBuilder;
|
25
27
|
this.cdr = cdr;
|
26
28
|
this.renderer = renderer;
|
29
|
+
this.localization = localization;
|
27
30
|
this.categoryAxisX = ActionTypes.categoryAxisX;
|
28
31
|
this.valueAxisY = ActionTypes.valueAxisY;
|
29
32
|
this.trashIcon = trashIcon;
|
@@ -69,14 +72,17 @@ export class ChartWizardPropertyPaneDataTabComponent {
|
|
69
72
|
detectChanges() {
|
70
73
|
this.cdr.detectChanges();
|
71
74
|
}
|
75
|
+
messageFor(key) {
|
76
|
+
return this.localization.get(key);
|
77
|
+
}
|
72
78
|
}
|
73
|
-
ChartWizardPropertyPaneDataTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneDataTabComponent, deps: [{ token: i1.StateService }, { token: i2.FormBuilder }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
79
|
+
ChartWizardPropertyPaneDataTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneDataTabComponent, deps: [{ token: i1.StateService }, { token: i2.FormBuilder }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i3.ChartWizardLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
74
80
|
ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneDataTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-data-tab", viewQueries: [{ propertyName: "grid", first: true, predicate: GridComponent, descendants: true }], ngImport: i0, template: `
|
75
|
-
<kendo-expansionpanel title="
|
81
|
+
<kendo-expansionpanel [title]="messageFor('configuration')" [expanded]="true">
|
76
82
|
<form class="k-form k-form-md">
|
77
83
|
<fieldset class="k-form-fieldset">
|
78
84
|
<legend class="k-form-legend">
|
79
|
-
{{ stateService.state.seriesType === 'scatter' ? '
|
85
|
+
{{ stateService.state.seriesType === 'scatter' ? messageFor('configurationXAxis') : messageFor('configurationCategoryAxis') }}
|
80
86
|
</legend>
|
81
87
|
<kendo-dropdownlist
|
82
88
|
[data]="stateService.state.columns"
|
@@ -89,7 +95,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
89
95
|
</kendo-dropdownlist>
|
90
96
|
</fieldset>
|
91
97
|
<fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.state.seriesType)">
|
92
|
-
<legend class="k-form-legend">
|
98
|
+
<legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
|
93
99
|
<kendo-grid
|
94
100
|
#grid
|
95
101
|
[kendoGridReactiveEditing]="createFormGroup"
|
@@ -108,7 +114,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
108
114
|
[disabled]="isDisabled(grid)"
|
109
115
|
(click)="addData()"
|
110
116
|
>
|
111
|
-
|
117
|
+
{{ messageFor('configurationSeriesAdd') }}
|
112
118
|
</button>
|
113
119
|
</ng-template>
|
114
120
|
<kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
|
@@ -132,7 +138,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
132
138
|
*ngIf="stateService.state.seriesType === 'pie'"
|
133
139
|
>
|
134
140
|
<legend class="k-form-legend">
|
135
|
-
{{ '
|
141
|
+
{{ messageFor('configurationValueAxis') }}
|
136
142
|
</legend>
|
137
143
|
<kendo-dropdownlist
|
138
144
|
[data]="stateService.state.columns"
|
@@ -154,11 +160,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
154
160
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
155
161
|
encapsulation: ViewEncapsulation.None,
|
156
162
|
template: `
|
157
|
-
<kendo-expansionpanel title="
|
163
|
+
<kendo-expansionpanel [title]="messageFor('configuration')" [expanded]="true">
|
158
164
|
<form class="k-form k-form-md">
|
159
165
|
<fieldset class="k-form-fieldset">
|
160
166
|
<legend class="k-form-legend">
|
161
|
-
{{ stateService.state.seriesType === 'scatter' ? '
|
167
|
+
{{ stateService.state.seriesType === 'scatter' ? messageFor('configurationXAxis') : messageFor('configurationCategoryAxis') }}
|
162
168
|
</legend>
|
163
169
|
<kendo-dropdownlist
|
164
170
|
[data]="stateService.state.columns"
|
@@ -171,7 +177,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
171
177
|
</kendo-dropdownlist>
|
172
178
|
</fieldset>
|
173
179
|
<fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.state.seriesType)">
|
174
|
-
<legend class="k-form-legend">
|
180
|
+
<legend class="k-form-legend">{{ messageFor('configurationSeries') }}</legend>
|
175
181
|
<kendo-grid
|
176
182
|
#grid
|
177
183
|
[kendoGridReactiveEditing]="createFormGroup"
|
@@ -190,7 +196,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
190
196
|
[disabled]="isDisabled(grid)"
|
191
197
|
(click)="addData()"
|
192
198
|
>
|
193
|
-
|
199
|
+
{{ messageFor('configurationSeriesAdd') }}
|
194
200
|
</button>
|
195
201
|
</ng-template>
|
196
202
|
<kendo-grid-rowreorder-column [width]="40"></kendo-grid-rowreorder-column>
|
@@ -214,7 +220,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
214
220
|
*ngIf="stateService.state.seriesType === 'pie'"
|
215
221
|
>
|
216
222
|
<legend class="k-form-legend">
|
217
|
-
{{ '
|
223
|
+
{{ messageFor('configurationValueAxis') }}
|
218
224
|
</legend>
|
219
225
|
<kendo-dropdownlist
|
220
226
|
[data]="stateService.state.columns"
|
@@ -249,7 +255,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
249
255
|
RemoveCommandDirective
|
250
256
|
]
|
251
257
|
}]
|
252
|
-
}], ctorParameters: function () { return [{ type: i1.StateService }, { type: i2.FormBuilder }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { grid: [{
|
258
|
+
}], ctorParameters: function () { return [{ type: i1.StateService }, { type: i2.FormBuilder }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: i3.ChartWizardLocalizationService }]; }, propDecorators: { grid: [{
|
253
259
|
type: ViewChild,
|
254
260
|
args: [GridComponent]
|
255
261
|
}] } });
|
@@ -62,7 +62,7 @@ ChartWizardPropertyPaneFormFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
|
|
62
62
|
rounded="medium"
|
63
63
|
[value]="value"
|
64
64
|
(valueChange)="valueChange.emit($event)"
|
65
|
-
placeholder="
|
65
|
+
[placeholder]="placeholder"
|
66
66
|
></kendo-numerictextbox>
|
67
67
|
<kendo-colorpicker
|
68
68
|
*ngIf="inputType === 'colorPicker'"
|
@@ -137,7 +137,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
137
137
|
rounded="medium"
|
138
138
|
[value]="value"
|
139
139
|
(valueChange)="valueChange.emit($event)"
|
140
|
-
placeholder="
|
140
|
+
[placeholder]="placeholder"
|
141
141
|
></kendo-numerictextbox>
|
142
142
|
<kendo-colorpicker
|
143
143
|
*ngIf="inputType === 'colorPicker'"
|