@progress/kendo-angular-chart-wizard 16.6.3-develop.1 → 16.6.3-develop.2
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-state.d.ts +9 -2
- package/common/models.d.ts +6 -0
- package/esm2020/chart-wizard-state.mjs +27 -11
- package/esm2020/chart-wizard.component.mjs +10 -12
- package/esm2020/common/models.mjs +4 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/property-pane/data-tab.component.mjs +7 -5
- package/esm2020/property-pane/form-field.component.mjs +6 -1
- package/esm2020/property-pane/format-tab.component.mjs +52 -19
- package/esm2020/state.service.mjs +2 -1
- package/fesm2015/progress-kendo-angular-chart-wizard.mjs +109 -51
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +108 -51
- package/package.json +16 -16
- package/property-pane/form-field.component.d.ts +2 -1
- package/property-pane/format-tab.component.d.ts +10 -2
@@ -34,8 +34,8 @@ const packageMetadata = {
|
|
34
34
|
name: '@progress/kendo-angular-chart-wizard',
|
35
35
|
productName: 'Kendo UI for Angular',
|
36
36
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
37
|
-
publishDate:
|
38
|
-
version: '16.6.3-develop.
|
37
|
+
publishDate: 1723102230,
|
38
|
+
version: '16.6.3-develop.2',
|
39
39
|
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',
|
40
40
|
};
|
41
41
|
|
@@ -77,6 +77,7 @@ const fontNames = [
|
|
77
77
|
* @hidden
|
78
78
|
*/
|
79
79
|
const rotations = [
|
80
|
+
{ text: 'Auto', value: 'auto' },
|
80
81
|
{ text: '0°', value: 0 },
|
81
82
|
{ text: '45°', value: 45 },
|
82
83
|
{ text: '90°', value: 90 },
|
@@ -123,10 +124,11 @@ const axesDefinitions = {
|
|
123
124
|
],
|
124
125
|
pie: [
|
125
126
|
{ axisType: 'category', types: categoryTypes },
|
126
|
-
{ axisType: 'value', types: valueTypes },
|
127
|
+
{ axisType: 'value', types: valueTypes, count: 1 },
|
127
128
|
],
|
128
129
|
scatter: [
|
129
|
-
{ axisType: '
|
130
|
+
{ axisType: 'category', types: categoryTypes },
|
131
|
+
{ axisType: 'value', types: valueTypes }
|
130
132
|
]
|
131
133
|
};
|
132
134
|
const getFont = (font, size) => `${size || ''} ${font || ''}`.trim();
|
@@ -183,10 +185,11 @@ const emptyState = () => structuredClone({
|
|
183
185
|
series: [],
|
184
186
|
initialSeries: [],
|
185
187
|
categoryAxis: [],
|
186
|
-
valueAxis: [{ labels: { visible: true } }],
|
188
|
+
valueAxis: [{ labels: { visible: true, rotation: 'auto' } }],
|
187
189
|
area: {
|
188
190
|
margin: { left: undefined, right: undefined, top: undefined, bottom: undefined }
|
189
191
|
},
|
192
|
+
stack: false
|
190
193
|
});
|
191
194
|
const categoryValueChartState = (data, seriesType, options) => {
|
192
195
|
const state = emptyState();
|
@@ -220,7 +223,7 @@ const categoryValueChartState = (data, seriesType, options) => {
|
|
220
223
|
type: seriesType,
|
221
224
|
data: valuesResult,
|
222
225
|
stack: false,
|
223
|
-
labels: { visible:
|
226
|
+
labels: { visible: false },
|
224
227
|
...(seriesType === scatterType ? scatterSeries : {})
|
225
228
|
});
|
226
229
|
});
|
@@ -230,10 +233,10 @@ const categoryValueChartState = (data, seriesType, options) => {
|
|
230
233
|
state.initialSeries = structuredClone(state.series);
|
231
234
|
}
|
232
235
|
if (categories.length) {
|
233
|
-
state.categoryAxis = [{ categories, labels: { visible: true } }];
|
236
|
+
state.categoryAxis = [{ categories, labels: { visible: true, rotation: 'auto' } }];
|
234
237
|
state.categoryField = state.columns[catIndex];
|
235
238
|
}
|
236
|
-
state.legend = { visible: true };
|
239
|
+
state.legend = { visible: true, position: 'bottom' };
|
237
240
|
state.title = { text: null };
|
238
241
|
state.subtitle = { text: null };
|
239
242
|
return state;
|
@@ -293,6 +296,15 @@ const pieChartState = (data, seriesType, options) => {
|
|
293
296
|
state.initialSeries = structuredClone(state.series);
|
294
297
|
return state;
|
295
298
|
};
|
299
|
+
const hasValue = (value) => value !== undefined && value !== null;
|
300
|
+
/**
|
301
|
+
* @hidden
|
302
|
+
*/
|
303
|
+
const createInitialState = (data, seriesType, defaultState) => {
|
304
|
+
const state = createState(data, defaultState?.seriesType || seriesType);
|
305
|
+
return typeof defaultState?.stack !== 'undefined' ?
|
306
|
+
updateState(state, ActionTypes.stacked, defaultState.stack) : state;
|
307
|
+
};
|
296
308
|
/**
|
297
309
|
* @hidden
|
298
310
|
*/
|
@@ -362,7 +374,7 @@ const mergeStates = (state, newState) => {
|
|
362
374
|
newState.series[i].labels = state.series[i].labels;
|
363
375
|
}
|
364
376
|
}
|
365
|
-
if (state.series.every(s => s.labels?.visible)) {
|
377
|
+
if (state.series.every(s => s.labels?.visible) && isCategorical(newState.seriesType) && isCategorical(state.seriesType)) {
|
366
378
|
newState.series.forEach(s => {
|
367
379
|
s.labels = s.labels || {};
|
368
380
|
s.labels.visible = true;
|
@@ -492,9 +504,11 @@ const updateState = (currentState, action, value) => {
|
|
492
504
|
case ActionTypes.categoryAxisLabelsColor:
|
493
505
|
state.categoryAxis = state.categoryAxis?.map(axis => ({ ...axis, labels: { ...axis.labels, color: value } }));
|
494
506
|
return state;
|
495
|
-
case ActionTypes.categoryAxisLabelsRotation:
|
496
|
-
|
507
|
+
case ActionTypes.categoryAxisLabelsRotation: {
|
508
|
+
const rotation = hasValue(value) ? value : 'auto';
|
509
|
+
state.categoryAxis = state.categoryAxis?.map(axis => ({ ...axis, labels: { ...axis.labels, rotation } }));
|
497
510
|
return state;
|
511
|
+
}
|
498
512
|
case ActionTypes.categoryAxisReverseOrder:
|
499
513
|
state.categoryAxis = state.categoryAxis?.map(axis => ({ ...axis, reverse: value }));
|
500
514
|
return state;
|
@@ -530,14 +544,21 @@ const updateState = (currentState, action, value) => {
|
|
530
544
|
case ActionTypes.valueAxisLabelsColor:
|
531
545
|
state.valueAxis = state.valueAxis?.map(axis => ({ ...axis, labels: { ...axis.labels, color: value } }));
|
532
546
|
return state;
|
533
|
-
case ActionTypes.valueAxisLabelsRotation:
|
534
|
-
|
547
|
+
case ActionTypes.valueAxisLabelsRotation: {
|
548
|
+
const rotation = hasValue(value) ? value : 'auto';
|
549
|
+
state.valueAxis = state.valueAxis?.map(axis => ({ ...axis, labels: { ...axis.labels, rotation } }));
|
535
550
|
return state;
|
551
|
+
}
|
536
552
|
default:
|
537
553
|
return state;
|
538
554
|
}
|
539
555
|
};
|
540
556
|
|
557
|
+
/**
|
558
|
+
* @hidden
|
559
|
+
*/
|
560
|
+
const defaultAllSeriesItem = { name: 'All Series' };
|
561
|
+
|
541
562
|
/**
|
542
563
|
* @hidden
|
543
564
|
*/
|
@@ -553,7 +574,7 @@ class StateService {
|
|
553
574
|
};
|
554
575
|
this.seriesType = 'bar';
|
555
576
|
this.currentTitle = 'Chart Title';
|
556
|
-
this.currentSeries =
|
577
|
+
this.currentSeries = defaultAllSeriesItem;
|
557
578
|
this.data = [];
|
558
579
|
this.deletedSeries = [];
|
559
580
|
this.direction = 'ltr';
|
@@ -577,6 +598,7 @@ class ChartWizardPropertyPaneFormFieldComponent {
|
|
577
598
|
this.colSpan = 1;
|
578
599
|
this.hasLabel = true;
|
579
600
|
this.isLabelInsideFormFieldWrap = false;
|
601
|
+
this.disabled = false;
|
580
602
|
this.valueChange = new EventEmitter();
|
581
603
|
this.formField = true;
|
582
604
|
}
|
@@ -604,7 +626,7 @@ class ChartWizardPropertyPaneFormFieldComponent {
|
|
604
626
|
}
|
605
627
|
}
|
606
628
|
ChartWizardPropertyPaneFormFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneFormFieldComponent, deps: [{ token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
607
|
-
ChartWizardPropertyPaneFormFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneFormFieldComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-form-field", inputs: { currentState: "currentState", action: "action", class: "class", inputType: "inputType", text: "text", data: "data", placeholder: "placeholder", colSpan: "colSpan", hasLabel: "hasLabel", isLabelInsideFormFieldWrap: "isLabelInsideFormFieldWrap", value: "value" }, 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: `
|
629
|
+
ChartWizardPropertyPaneFormFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneFormFieldComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-form-field", inputs: { currentState: "currentState", action: "action", class: "class", inputType: "inputType", text: "text", data: "data", placeholder: "placeholder", colSpan: "colSpan", hasLabel: "hasLabel", isLabelInsideFormFieldWrap: "isLabelInsideFormFieldWrap", value: "value", disabled: "disabled" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-form-field": "this.formField", "class.k-col-span-2": "this.isColSpan2" } }, viewQueries: [{ propertyName: "label", first: true, predicate: LabelComponent, descendants: true }, { propertyName: "numericTextBox", first: true, predicate: NumericTextBoxComponent, descendants: true }, { propertyName: "colorPicker", first: true, predicate: ColorPickerComponent, descendants: true }, { propertyName: "dropDownList", first: true, predicate: DropDownListComponent, descendants: true }, { propertyName: "textBox", first: true, predicate: TextBoxComponent, descendants: true }, { propertyName: "comboBox", first: true, predicate: ComboBoxComponent, descendants: true }, { propertyName: "checkBox", first: true, predicate: CheckBoxComponent, descendants: true }], ngImport: i0, template: `
|
608
630
|
<kendo-label *ngIf="hasLabel && !isLabelInsideFormFieldWrap" class="k-form-label" [text]="text"></kendo-label>
|
609
631
|
<div class="k-form-field-wrap">
|
610
632
|
<kendo-label
|
@@ -625,6 +647,7 @@ ChartWizardPropertyPaneFormFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
|
|
625
647
|
fillMode="outline"
|
626
648
|
rounded="medium"
|
627
649
|
[value]="value"
|
650
|
+
[disabled]="disabled"
|
628
651
|
(valueChange)="valueChange.emit($event)"
|
629
652
|
></kendo-colorpicker>
|
630
653
|
<kendo-dropdownlist
|
@@ -694,6 +717,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
694
717
|
fillMode="outline"
|
695
718
|
rounded="medium"
|
696
719
|
[value]="value"
|
720
|
+
[disabled]="disabled"
|
697
721
|
(valueChange)="valueChange.emit($event)"
|
698
722
|
></kendo-colorpicker>
|
699
723
|
<kendo-dropdownlist
|
@@ -771,6 +795,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
771
795
|
type: Input
|
772
796
|
}], value: [{
|
773
797
|
type: Input
|
798
|
+
}], disabled: [{
|
799
|
+
type: Input
|
774
800
|
}], valueChange: [{
|
775
801
|
type: Output
|
776
802
|
}], formField: [{
|
@@ -852,6 +878,7 @@ class ChartWizardPropertyPaneDataTabComponent {
|
|
852
878
|
this.valueAxisLabelsColor = ActionTypes.valueAxisLabelsColor;
|
853
879
|
this.valueAxisLabelsRotation = ActionTypes.valueAxisLabelsRotation;
|
854
880
|
this.parseFont = parseFont;
|
881
|
+
this.defaultAllSeriesItem = defaultAllSeriesItem;
|
855
882
|
this.fontNames = fontNames;
|
856
883
|
this.fontSizes = fontSizes;
|
857
884
|
this.legendPositions = positions;
|
@@ -889,6 +916,12 @@ class ChartWizardPropertyPaneDataTabComponent {
|
|
889
916
|
get chartTitleTypeFontSizeAction() {
|
890
917
|
return this.stateService.currentTitle === 'Chart Title' ? this.titleFontSize : this.subtitleFontSize;
|
891
918
|
}
|
919
|
+
get seriesData() {
|
920
|
+
return [defaultAllSeriesItem, ...this.stateService.state.series];
|
921
|
+
}
|
922
|
+
get showLabels() {
|
923
|
+
return this.stateService.currentSeries.name !== defaultAllSeriesItem.name ? this.stateService.state.series.find(s => s.name === this.stateService.currentSeries.name)?.labels?.visible : this.stateService.state.series.every(s => s.labels?.visible);
|
924
|
+
}
|
892
925
|
ngAfterViewChecked() {
|
893
926
|
this.localization.changes.subscribe(() => {
|
894
927
|
this.cdr.detectChanges();
|
@@ -898,6 +931,10 @@ class ChartWizardPropertyPaneDataTabComponent {
|
|
898
931
|
this.localization.changes.unsubscribe();
|
899
932
|
}
|
900
933
|
updateState(action, value) {
|
934
|
+
if (action === this.seriesLabel && this.stateService.currentSeries.name === defaultAllSeriesItem.name) {
|
935
|
+
this.stateService.state = updateState(this.stateService.state, action, { name: '', all: true, visible: value.labels.visible });
|
936
|
+
return;
|
937
|
+
}
|
901
938
|
this.stateService.state = updateState(this.stateService.state, action, value);
|
902
939
|
}
|
903
940
|
changeCurrentTitle(value) {
|
@@ -909,7 +946,12 @@ class ChartWizardPropertyPaneDataTabComponent {
|
|
909
946
|
this.updateState(this.seriesLabel, this.stateService.currentSeries);
|
910
947
|
}
|
911
948
|
updateCurrentSeries(value) {
|
912
|
-
|
949
|
+
if (value.name === defaultAllSeriesItem.name) {
|
950
|
+
this.stateService.currentSeries = defaultAllSeriesItem;
|
951
|
+
}
|
952
|
+
else {
|
953
|
+
this.stateService.currentSeries = this.stateService.state.series.find((series) => series.name === value.name);
|
954
|
+
}
|
913
955
|
}
|
914
956
|
updateSeriesColor(value) {
|
915
957
|
this.updateCurrentSeries(this.stateService.currentSeries);
|
@@ -929,6 +971,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVer
|
|
929
971
|
ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardPropertyPaneDataTabComponent, isStandalone: true, selector: "kendo-chartwizard-property-pane-format-tab", ngImport: i0, template: `
|
930
972
|
<section>
|
931
973
|
<kendo-expansionpanel
|
974
|
+
[style.max-width.px]="576"
|
932
975
|
title="Chart Area"
|
933
976
|
[expanded]="isExpanded('Chart Area')"
|
934
977
|
(expandedChange)="onExpandedChange('Chart Area', $event)"
|
@@ -983,6 +1026,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
983
1026
|
</section>
|
984
1027
|
<section>
|
985
1028
|
<kendo-expansionpanel
|
1029
|
+
[style.max-width.px]="576"
|
986
1030
|
title="Title"
|
987
1031
|
[expanded]="isExpanded('Title')"
|
988
1032
|
(expandedChange)="onExpandedChange('Title', $event)"
|
@@ -1038,6 +1082,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1038
1082
|
</section>
|
1039
1083
|
<section>
|
1040
1084
|
<kendo-expansionpanel
|
1085
|
+
[style.max-width.px]="576"
|
1041
1086
|
title="Legend"
|
1042
1087
|
[expanded]="isExpanded('Legend')"
|
1043
1088
|
(expandedChange)="onExpandedChange('Legend', $event)"
|
@@ -1095,6 +1140,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1095
1140
|
</section>
|
1096
1141
|
<section>
|
1097
1142
|
<kendo-expansionpanel
|
1143
|
+
[style.max-width.px]="576"
|
1098
1144
|
title="Series"
|
1099
1145
|
[expanded]="isExpanded('Series')"
|
1100
1146
|
(expandedChange)="onExpandedChange('Series', $event)"
|
@@ -1105,7 +1151,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1105
1151
|
<div class="k-form-field-wrap">
|
1106
1152
|
<kendo-dropdownlist
|
1107
1153
|
#seriesDropDown
|
1108
|
-
[data]="
|
1154
|
+
[data]="seriesData"
|
1109
1155
|
textField="name"
|
1110
1156
|
valueField="name"
|
1111
1157
|
fillMode="outline"
|
@@ -1121,12 +1167,13 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1121
1167
|
text="Color"
|
1122
1168
|
[value]="stateService.currentSeries?.color"
|
1123
1169
|
inputType="colorPicker"
|
1170
|
+
[disabled]="stateService.currentSeries.name === defaultAllSeriesItem.name"
|
1124
1171
|
(valueChange)="updateSeriesColor($event)"
|
1125
1172
|
>
|
1126
1173
|
</kendo-chartwizard-property-pane-form-field>
|
1127
1174
|
<kendo-chartwizard-property-pane-form-field
|
1128
1175
|
text="Show Labels"
|
1129
|
-
[value]="
|
1176
|
+
[value]="showLabels"
|
1130
1177
|
[isLabelInsideFormFieldWrap]="true"
|
1131
1178
|
inputType="checkbox"
|
1132
1179
|
(valueChange)="toggleSeriesLabels($event)"
|
@@ -1135,9 +1182,10 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1135
1182
|
</form>
|
1136
1183
|
</kendo-expansionpanel>
|
1137
1184
|
</section>
|
1138
|
-
<section class="k-row-start-1 k-row-end-3 k-col-start-3">
|
1185
|
+
<section *ngIf="stateService.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-3">
|
1139
1186
|
<kendo-expansionpanel
|
1140
|
-
|
1187
|
+
[style.max-width.px]="576"
|
1188
|
+
[title]="stateService.seriesType === 'scatter' ? 'X Axis' : 'Category axis'"
|
1141
1189
|
[expanded]="isExpanded('Category Axis')"
|
1142
1190
|
(expandedChange)="onExpandedChange('Category Axis', $event)"
|
1143
1191
|
>
|
@@ -1150,7 +1198,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1150
1198
|
[hasLabel]="false"
|
1151
1199
|
[colSpan]="2"
|
1152
1200
|
placeholder="Axis Title"
|
1153
|
-
[value]="stateService.state.categoryAxis[0]?.title?.text"
|
1201
|
+
[value]="stateService.state.categoryAxis[0]?.title?.text || null"
|
1154
1202
|
(valueChange)="updateState(categoryAxisTitleText, $event)"
|
1155
1203
|
>
|
1156
1204
|
</kendo-chartwizard-property-pane-form-field>
|
@@ -1233,9 +1281,10 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1233
1281
|
</form>
|
1234
1282
|
</kendo-expansionpanel>
|
1235
1283
|
</section>
|
1236
|
-
<section class="k-row-start-1 k-row-end-3 k-col-start-4">
|
1284
|
+
<section *ngIf="stateService.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-4">
|
1237
1285
|
<kendo-expansionpanel
|
1238
|
-
|
1286
|
+
[style.max-width.px]="576"
|
1287
|
+
[title]="stateService.seriesType === 'scatter' ? 'Y Axis' : 'Value axis'"
|
1239
1288
|
[expanded]="isExpanded('Value Axis')"
|
1240
1289
|
(expandedChange)="onExpandedChange('Value Axis', $event)"
|
1241
1290
|
>
|
@@ -1248,7 +1297,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1248
1297
|
[hasLabel]="false"
|
1249
1298
|
[colSpan]="2"
|
1250
1299
|
placeholder="Axis Title"
|
1251
|
-
[value]="stateService.state.valueAxis[0]?.title?.text"
|
1300
|
+
[value]="stateService.state.valueAxis[0]?.title?.text || null"
|
1252
1301
|
(valueChange)="updateState(valueAxisTitleText, $event)"
|
1253
1302
|
>
|
1254
1303
|
</kendo-chartwizard-property-pane-form-field>
|
@@ -1321,7 +1370,7 @@ ChartWizardPropertyPaneDataTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minV
|
|
1321
1370
|
</form>
|
1322
1371
|
</kendo-expansionpanel>
|
1323
1372
|
</section>
|
1324
|
-
`, 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"], 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", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1373
|
+
`, 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", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1325
1374
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneDataTabComponent, decorators: [{
|
1326
1375
|
type: Component,
|
1327
1376
|
args: [{
|
@@ -1330,6 +1379,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1330
1379
|
template: `
|
1331
1380
|
<section>
|
1332
1381
|
<kendo-expansionpanel
|
1382
|
+
[style.max-width.px]="576"
|
1333
1383
|
title="Chart Area"
|
1334
1384
|
[expanded]="isExpanded('Chart Area')"
|
1335
1385
|
(expandedChange)="onExpandedChange('Chart Area', $event)"
|
@@ -1384,6 +1434,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1384
1434
|
</section>
|
1385
1435
|
<section>
|
1386
1436
|
<kendo-expansionpanel
|
1437
|
+
[style.max-width.px]="576"
|
1387
1438
|
title="Title"
|
1388
1439
|
[expanded]="isExpanded('Title')"
|
1389
1440
|
(expandedChange)="onExpandedChange('Title', $event)"
|
@@ -1439,6 +1490,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1439
1490
|
</section>
|
1440
1491
|
<section>
|
1441
1492
|
<kendo-expansionpanel
|
1493
|
+
[style.max-width.px]="576"
|
1442
1494
|
title="Legend"
|
1443
1495
|
[expanded]="isExpanded('Legend')"
|
1444
1496
|
(expandedChange)="onExpandedChange('Legend', $event)"
|
@@ -1496,6 +1548,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1496
1548
|
</section>
|
1497
1549
|
<section>
|
1498
1550
|
<kendo-expansionpanel
|
1551
|
+
[style.max-width.px]="576"
|
1499
1552
|
title="Series"
|
1500
1553
|
[expanded]="isExpanded('Series')"
|
1501
1554
|
(expandedChange)="onExpandedChange('Series', $event)"
|
@@ -1506,7 +1559,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1506
1559
|
<div class="k-form-field-wrap">
|
1507
1560
|
<kendo-dropdownlist
|
1508
1561
|
#seriesDropDown
|
1509
|
-
[data]="
|
1562
|
+
[data]="seriesData"
|
1510
1563
|
textField="name"
|
1511
1564
|
valueField="name"
|
1512
1565
|
fillMode="outline"
|
@@ -1522,12 +1575,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1522
1575
|
text="Color"
|
1523
1576
|
[value]="stateService.currentSeries?.color"
|
1524
1577
|
inputType="colorPicker"
|
1578
|
+
[disabled]="stateService.currentSeries.name === defaultAllSeriesItem.name"
|
1525
1579
|
(valueChange)="updateSeriesColor($event)"
|
1526
1580
|
>
|
1527
1581
|
</kendo-chartwizard-property-pane-form-field>
|
1528
1582
|
<kendo-chartwizard-property-pane-form-field
|
1529
1583
|
text="Show Labels"
|
1530
|
-
[value]="
|
1584
|
+
[value]="showLabels"
|
1531
1585
|
[isLabelInsideFormFieldWrap]="true"
|
1532
1586
|
inputType="checkbox"
|
1533
1587
|
(valueChange)="toggleSeriesLabels($event)"
|
@@ -1536,9 +1590,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1536
1590
|
</form>
|
1537
1591
|
</kendo-expansionpanel>
|
1538
1592
|
</section>
|
1539
|
-
<section class="k-row-start-1 k-row-end-3 k-col-start-3">
|
1593
|
+
<section *ngIf="stateService.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-3">
|
1540
1594
|
<kendo-expansionpanel
|
1541
|
-
|
1595
|
+
[style.max-width.px]="576"
|
1596
|
+
[title]="stateService.seriesType === 'scatter' ? 'X Axis' : 'Category axis'"
|
1542
1597
|
[expanded]="isExpanded('Category Axis')"
|
1543
1598
|
(expandedChange)="onExpandedChange('Category Axis', $event)"
|
1544
1599
|
>
|
@@ -1551,7 +1606,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1551
1606
|
[hasLabel]="false"
|
1552
1607
|
[colSpan]="2"
|
1553
1608
|
placeholder="Axis Title"
|
1554
|
-
[value]="stateService.state.categoryAxis[0]?.title?.text"
|
1609
|
+
[value]="stateService.state.categoryAxis[0]?.title?.text || null"
|
1555
1610
|
(valueChange)="updateState(categoryAxisTitleText, $event)"
|
1556
1611
|
>
|
1557
1612
|
</kendo-chartwizard-property-pane-form-field>
|
@@ -1634,9 +1689,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1634
1689
|
</form>
|
1635
1690
|
</kendo-expansionpanel>
|
1636
1691
|
</section>
|
1637
|
-
<section class="k-row-start-1 k-row-end-3 k-col-start-4">
|
1692
|
+
<section *ngIf="stateService.seriesType !== 'pie'" class="k-row-start-1 k-row-end-3 k-col-start-4">
|
1638
1693
|
<kendo-expansionpanel
|
1639
|
-
|
1694
|
+
[style.max-width.px]="576"
|
1695
|
+
[title]="stateService.seriesType === 'scatter' ? 'Y Axis' : 'Value axis'"
|
1640
1696
|
[expanded]="isExpanded('Value Axis')"
|
1641
1697
|
(expandedChange)="onExpandedChange('Value Axis', $event)"
|
1642
1698
|
>
|
@@ -1649,7 +1705,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1649
1705
|
[hasLabel]="false"
|
1650
1706
|
[colSpan]="2"
|
1651
1707
|
placeholder="Axis Title"
|
1652
|
-
[value]="stateService.state.valueAxis[0]?.title?.text"
|
1708
|
+
[value]="stateService.state.valueAxis[0]?.title?.text || null"
|
1653
1709
|
(valueChange)="updateState(valueAxisTitleText, $event)"
|
1654
1710
|
>
|
1655
1711
|
</kendo-chartwizard-property-pane-form-field>
|
@@ -1729,7 +1785,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1729
1785
|
ChartWizardPropertyPaneFormFieldComponent,
|
1730
1786
|
LabelComponent,
|
1731
1787
|
SwitchComponent,
|
1732
|
-
DropDownListComponent
|
1788
|
+
DropDownListComponent,
|
1789
|
+
NgIf
|
1733
1790
|
]
|
1734
1791
|
}]
|
1735
1792
|
}], ctorParameters: function () { return [{ type: StateService }, { type: i2.LocalizationService }, { type: i0.ChangeDetectorRef }]; } });
|
@@ -1793,7 +1850,6 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
|
|
1793
1850
|
rounded="medium"
|
1794
1851
|
size="medium"
|
1795
1852
|
>
|
1796
|
-
<ng-template kendoDropDownListValueTemplate> Current Item </ng-template>
|
1797
1853
|
</kendo-dropdownlist>
|
1798
1854
|
</fieldset>
|
1799
1855
|
<fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.seriesType)">
|
@@ -1845,13 +1901,15 @@ ChartWizardPropertyPaneFormatTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ mi
|
|
1845
1901
|
[data]="stateService.state.columns"
|
1846
1902
|
[value]="stateService.state.yField"
|
1847
1903
|
(valueChange)="updateState(valueAxisY, $event)"
|
1904
|
+
fillMode="outline"
|
1905
|
+
rounded="medium"
|
1906
|
+
size="medium"
|
1848
1907
|
>
|
1849
|
-
<ng-template kendoDropDownListValueTemplate> Current Item </ng-template>
|
1850
1908
|
</kendo-dropdownlist>
|
1851
1909
|
</fieldset>
|
1852
1910
|
</form>
|
1853
1911
|
</kendo-expansionpanel>
|
1854
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: ["title", "subtitle", "disabled", "expanded", "svgExpandIcon", "svgCollapseIcon", "expandIcon", "collapseIcon", "animation"], outputs: ["expandedChange", "action", "expand", "collapse"], exportAs: ["kendoExpansionPanel"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type:
|
1912
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: ["title", "subtitle", "disabled", "expanded", "svgExpandIcon", "svgCollapseIcon", "expandIcon", "collapseIcon", "animation"], outputs: ["expandedChange", "action", "expand", "collapse"], exportAs: ["kendoExpansionPanel"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: GridComponent, selector: "kendo-grid", inputs: ["data", "pageSize", "height", "rowHeight", "detailRowHeight", "skip", "scrollable", "selectable", "sort", "size", "trackBy", "filter", "group", "virtualColumns", "filterable", "sortable", "pageable", "groupable", "rowReorderable", "navigable", "navigatable", "autoSize", "rowClass", "rowSticky", "rowSelected", "cellSelected", "resizable", "reorderable", "loading", "columnMenu", "hideHeader", "isDetailExpanded", "isGroupExpanded"], outputs: ["filterChange", "pageChange", "groupChange", "sortChange", "selectionChange", "rowReorder", "dataStateChange", "groupExpand", "groupCollapse", "detailExpand", "detailCollapse", "edit", "cancel", "save", "remove", "add", "cellClose", "cellClick", "pdfExport", "excelExport", "columnResize", "columnReorder", "columnVisibilityChange", "columnLockedChange", "columnStickyChange", "scrollBottom", "contentScroll"], exportAs: ["kendoGrid"] }, { kind: "directive", type: ReactiveEditingDirective, selector: "[kendoGridReactiveEditing]", inputs: ["kendoGridReactiveEditing"] }, { kind: "directive", type: DataBindingDirective, selector: "[kendoGridBinding]", inputs: ["skip", "sort", "filter", "pageSize", "group", "kendoGridBinding"], exportAs: ["kendoGridBinding"] }, { kind: "directive", type: ToolbarTemplateDirective, selector: "[kendoGridToolbarTemplate]", inputs: ["position"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: RowReorderColumnComponent, selector: "kendo-grid-rowreorder-column", inputs: ["dragHandleIcon", "dragHandleSVGIcon"] }, { kind: "component", type: ColumnComponent, selector: "kendo-grid-column", inputs: ["field", "format", "sortable", "groupable", "editor", "filter", "filterable", "editable"] }, { kind: "component", type: CommandColumnComponent, selector: "kendo-grid-command-column" }, { kind: "directive", type: CellTemplateDirective, selector: "[kendoGridCellTemplate]" }, { kind: "directive", type: GridToolbarFocusableDirective, selector: " [kendoGridToolbarFocusable], [kendoGridAddCommand], [kendoGridCancelCommand], [kendoGridEditCommand], [kendoGridRemoveCommand], [kendoGridSaveCommand], [kendoGridExcelCommand], [kendoGridPDFCommand] " }, { kind: "component", type: RemoveCommandDirective, selector: "[kendoGridRemoveCommand]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
1855
1913
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardPropertyPaneFormatTabComponent, decorators: [{
|
1856
1914
|
type: Component,
|
1857
1915
|
args: [{
|
@@ -1872,7 +1930,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1872
1930
|
rounded="medium"
|
1873
1931
|
size="medium"
|
1874
1932
|
>
|
1875
|
-
<ng-template kendoDropDownListValueTemplate> Current Item </ng-template>
|
1876
1933
|
</kendo-dropdownlist>
|
1877
1934
|
</fieldset>
|
1878
1935
|
<fieldset class="k-form-fieldset" *ngIf="isCategorical(stateService.seriesType)">
|
@@ -1924,8 +1981,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1924
1981
|
[data]="stateService.state.columns"
|
1925
1982
|
[value]="stateService.state.yField"
|
1926
1983
|
(valueChange)="updateState(valueAxisY, $event)"
|
1984
|
+
fillMode="outline"
|
1985
|
+
rounded="medium"
|
1986
|
+
size="medium"
|
1927
1987
|
>
|
1928
|
-
<ng-template kendoDropDownListValueTemplate> Current Item </ng-template>
|
1929
1988
|
</kendo-dropdownlist>
|
1930
1989
|
</fieldset>
|
1931
1990
|
</form>
|
@@ -2476,7 +2535,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
2476
2535
|
color: axis.title?.color
|
2477
2536
|
}"
|
2478
2537
|
[labels]="{
|
2479
|
-
rotation:
|
2538
|
+
rotation: axis.labels?.rotation,
|
2480
2539
|
font: axis.labels?.font,
|
2481
2540
|
color: axis.labels?.color
|
2482
2541
|
}"
|
@@ -2492,7 +2551,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
2492
2551
|
color: axis.title?.color
|
2493
2552
|
}"
|
2494
2553
|
[labels]="{
|
2495
|
-
rotation:
|
2554
|
+
rotation: axis.labels?.rotation,
|
2496
2555
|
font: axis.labels?.font,
|
2497
2556
|
color: axis.labels?.color
|
2498
2557
|
}"
|
@@ -2511,8 +2570,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
2511
2570
|
[name]="series.name"
|
2512
2571
|
[color]="series.color"
|
2513
2572
|
[labels]="{ visible: series.labels?.visible }"
|
2514
|
-
[
|
2515
|
-
[yField]="series.yField"
|
2573
|
+
[width]="series.width"
|
2516
2574
|
>
|
2517
2575
|
</kendo-chart-series-item>
|
2518
2576
|
</kendo-chart-series>
|
@@ -2526,7 +2584,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
2526
2584
|
color: axis.title?.color
|
2527
2585
|
}"
|
2528
2586
|
[labels]="{
|
2529
|
-
rotation:
|
2587
|
+
rotation: axis.labels?.rotation,
|
2530
2588
|
font: axis.labels?.font,
|
2531
2589
|
color: axis.labels?.color
|
2532
2590
|
}"
|
@@ -2543,7 +2601,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
2543
2601
|
color: axis.title?.color
|
2544
2602
|
}"
|
2545
2603
|
[labels]="{
|
2546
|
-
rotation:
|
2604
|
+
rotation: axis.labels?.rotation,
|
2547
2605
|
font: axis.labels?.font,
|
2548
2606
|
color: axis.labels?.color
|
2549
2607
|
}"
|
@@ -2652,7 +2710,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2652
2710
|
color: axis.title?.color
|
2653
2711
|
}"
|
2654
2712
|
[labels]="{
|
2655
|
-
rotation:
|
2713
|
+
rotation: axis.labels?.rotation,
|
2656
2714
|
font: axis.labels?.font,
|
2657
2715
|
color: axis.labels?.color
|
2658
2716
|
}"
|
@@ -2668,7 +2726,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2668
2726
|
color: axis.title?.color
|
2669
2727
|
}"
|
2670
2728
|
[labels]="{
|
2671
|
-
rotation:
|
2729
|
+
rotation: axis.labels?.rotation,
|
2672
2730
|
font: axis.labels?.font,
|
2673
2731
|
color: axis.labels?.color
|
2674
2732
|
}"
|
@@ -2687,8 +2745,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2687
2745
|
[name]="series.name"
|
2688
2746
|
[color]="series.color"
|
2689
2747
|
[labels]="{ visible: series.labels?.visible }"
|
2690
|
-
[
|
2691
|
-
[yField]="series.yField"
|
2748
|
+
[width]="series.width"
|
2692
2749
|
>
|
2693
2750
|
</kendo-chart-series-item>
|
2694
2751
|
</kendo-chart-series>
|
@@ -2702,7 +2759,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2702
2759
|
color: axis.title?.color
|
2703
2760
|
}"
|
2704
2761
|
[labels]="{
|
2705
|
-
rotation:
|
2762
|
+
rotation: axis.labels?.rotation,
|
2706
2763
|
font: axis.labels?.font,
|
2707
2764
|
color: axis.labels?.color
|
2708
2765
|
}"
|
@@ -2719,7 +2776,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2719
2776
|
color: axis.title?.color
|
2720
2777
|
}"
|
2721
2778
|
[labels]="{
|
2722
|
-
rotation:
|
2779
|
+
rotation: axis.labels?.rotation,
|
2723
2780
|
font: axis.labels?.font,
|
2724
2781
|
color: axis.labels?.color
|
2725
2782
|
}"
|