Hi Team,
I am referring this example to implement stacked column chart using a complex array object. It is rendering the chart, but it is not rendering the column with multi colors as shown in the example.
Excpected:
Actual:
Please refer the below the code snippet and the data which I am trying to bind and help me in correcting the code/data to render the expected chart output.
Code:
<kendo-chart>
<kendo-chart-series>
<kendo-chart-series-item type="column" [stack]="true" *ngFor="let item of items" [data]="item" field="bandValue" categoryField="category"> </kendo-chart-series-item>
</kendo-chart-series>
</kendo-chart>
Data:
items = [
[
{
category: 'TATA',
bandValue: 1,
},
{
category: 'TATA',
bandValue: 4,
},
{
category: 'TATA',
bandValue: 7,
},
],
[
{
category: 'FORD',
bandValue: 1,
},
{
category: 'FORD',
bandValue: 4,
},
{
category: 'FORD',
bandValue: 9,
},
],
[
{
category: 'GM',
bandValue: 1,
},
{
category: 'GM',
bandValue: 4,
},
{
category: 'GM',
bandValue: 3,
},
],
];
Thanks!

Hi Team,
I have used entire code as per below example. I used the same dummy code also.
https://www.telerik.com/kendo-angular-ui/components/knowledge-base/select-all-multiselect/
Select All/Deselect All is not working via control+A. However, it is working via click event on checkbox. Remaining feature in multiselect checkbox is working fine. I am using kendo license version. Can you please help me to fix this issue?
You can contact me at v-nehsaxena@microsoft.com
Thnaks,
Neha

Hello everyone, I currently have this graphic and I am trying to round the labels that are with a blue border so that they are more like the round buttons in the second image.

I have a grid with a selectionChange handler. Now I'm trying to add a double click handler to trigger some behavior when the user double clicks a row in the grid. The double click handler works fine when I double click on the already-selected row, but when I double click on a different row, the selectionChange handler is triggered and the double click event seems to be swallowed. Even when I turn on a dblClick event breakpoint in Chrome devtools, it's never hit when I double click on an unselected row.
What's the best way to have both a selectionChange handler and a double click handler on grid rows?
I am utilising the Kendo Uploader which is hitting a .net Frameworks api. The endpoint saves the file and then using the Telerik Doc library will open the uploaded spreadsheet and a validation begins where each row is validated against a set of rules. If any row fails to validate then details of the failure are recorded as a list. Once all rows have been checked the error list is returned as a json response. If the sheet validates without error the code will then save each row as a new record and return a json result confirming the number of records saved or if saving fails then an error as a json result.
I need to be able to process the json response on the client side via the onSuccess or onError events or some other way. Is this possible
Many Thanks

Hi team,
On the external filtering sample under the grid, I wanted a filter condition like the below :
(Product Name starts with 'c' And Product Name ends with 'i') OR Product Name is equal to 'Ikura'
Using this filter, I expected to get chai and ikura as filtered results. but the filter gave me zero results back.
Can you please tell me why this selection of filters gave no results back? Also, what filters do I need to use to accomplish my requirement of getting chai and ikura as my results?
I am attaching the screen capture of my selected filter options for your reference.
Regards,
Naresh Ravlani.

Hi ,
We are in to process to upgrade kendo UI for one of our angular project.
1. How to check which existing version is installed in angular project with NPM command.
2. How to install new version on below existing angular environment:
Angular CLI: 6.2.2
Node: 14.20.0
Angular: 6.1.7
regards,
Sachin Verma


Hi Kendo team,
Applying Zoom Css to kendo grid is misaligning the filter menu drop down. While Transform can be used instead but it is only changing the dimension of the grid .
is there any way to zoom in/out to show less or more columns in the kendo grid.