Skip to content

Commit c11501c

Browse files
Integrated latest changes at 08-22-2024 10:30:13 AM
1 parent 308d14f commit c11501c

File tree

5 files changed

+2
-6
lines changed

5 files changed

+2
-6
lines changed

ej2-javascript/chart/data-labels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,5 +353,5 @@ You can calculate the percentage value based on the sum for each series using th
353353

354354
## See Also
355355

356-
* [Show total stacking values in data label](../chart/how-to/stacking-total/)
357-
* [Prevent the data label when the data value is 0](../chart/how-to/prevent-data-label/#prevent-the-data-label-when-the-data-value-is-0)
356+
* [Show total stacking values in data label](../chart/how-to/stacking-total)
357+
* [Prevent the data label when the data value is 0](../chart/how-to/prevent-data-label#prevent-the-data-label-when-the-data-value-is-0)

ej2-javascript/code-snippet/list-box/getting-started-cs3/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ var listObj = new ej.dropdowns.ListBox({
1717
//set the data to dataSource property
1818
dataSource: data,
1919
selectionSettings: {
20-
showCheckbox: true,
2120
mode: 'Single'
2221
}
2322
});

ej2-javascript/code-snippet/list-box/getting-started-cs3/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ let listObj: ListBox = new ListBox({
2020
//set the data to dataSource property
2121
dataSource: data,
2222
selectionSettings: {
23-
showCheckbox: true,
2423
mode: 'Single'
2524
}
2625
});

ej2-javascript/code-snippet/list-box/getting-started-cs4/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ var listObj = new ej.dropdowns.ListBox({
1616
//set the data to dataSource property
1717
dataSource: data,
1818
selectionSettings: {
19-
showCheckbox: true,
2019
mode: 'Multiple'
2120
}
2221
});

ej2-javascript/code-snippet/list-box/getting-started-cs4/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ let listObj: ListBox = new ListBox({
2323
//set the data to dataSource property
2424
dataSource: data,
2525
selectionSettings: {
26-
showCheckbox: true,
2726
mode: 'Multiple'
2827
}
2928
});

0 commit comments

Comments
 (0)