Telerik Forums
Kendo UI for Angular Forum
0 answers
54 views

Hi! Couldn't find any examples of setting custom symbol (BubbleLayerSymbol) of the BubbleLayerComponent.
When I'm trying to set my symbol (attached screenshot) I get this error in the console + typing issues:

TypeError: _node_map__WEBPACK_IMPORTED_MODULE_2__.default[srcElement.nodeType] is not a constructor
    at RootNode.load (VM74284 vendors...)
    at Surface.draw (VM74284 vendors...)
    at BubbleLayer._drawSymbol

Please provide more info/examples. Thanx in advance!

Mykhailo
Top achievements
Rank 1
 asked on 09 Jun 2023
1 answer
199 views
How to achieve Master-Detail grid with 2 details grid for one master in (Kendo-Angular)?
Hetali
Telerik team
 answered on 08 Jun 2023
2 answers
359 views
I just updated to 13.0.2 and get the following error in ng serve:

Error: node_modules/@progress/kendo-angular-charts/chart.component.d.ts:56:33 - error TS2307: Cannot find module '@angular/core/core' or its corresponding type declarations.

56 import { EmbeddedViewRef } from '@angular/core/core';
                                   ~~~~~~~~~~~~~~~~~~~~


These are from the last section of imports in chart.component.d.ts:

import { ZoomStartEvent } from './events/zoom-start-event';
import { SeriesComponent } from './chart/series.component';
import { EmbeddedViewRef } from '@angular/core/core';
import { DrilldownEvent } from './events/drilldown-event';
import * as i0 from "@angular/core";
Yanmario
Telerik team
 answered on 08 Jun 2023
2 answers
1.6K+ views
Would love to have even a pre-release version of Kendo that supports Angular 16 so that I can see how A16 works in our project. I understand it is very recent, but thought I would lodge the request anyway.
Edi Wang
Top achievements
Rank 1
Iron
 answered on 08 Jun 2023
0 answers
99 views

Hi,

scheduler event replan causes scroll to top or bottom. When I drag and drop event between columns sometimes myview scrolls to top or to bottom. I haven't found any bug fixes in changelog or any forum posts which describes this issue.

It happens inside:

<kendo-scheduler-timeline-week-view></kendo-scheduler-timeline-week-view>

 

Is that bug sounds familiar? Can it be fixed easliy?

Packages inside this project:

Angular 13.3

rxjs 7.5.5

typescript 4.6.3

Scheduler 4.3

 

 

Dawid
Top achievements
Rank 1
 asked on 07 Jun 2023
0 answers
289 views

Hi,

https://www.telerik.com/kendo-angular-ui/components/dialogs/window/service/#toc-window-close-prevention

I want to open another component with the window service as described in the example above and want to trigger preventClose from inside the component by clicking on another button,

Like this:

https://stackblitz.com/edit/angular-vweamx

Inside the form.component in onConfirmAction window.close() is triggered but not preventClose. Is there any way to achieve this?

 

Goal would be to add an additional "cancel" button inside those dialogs, so preventClose should be triggered here just like the normal "x" of the dialog.

Vanessa
Top achievements
Rank 1
 asked on 07 Jun 2023
0 answers
157 views

I have a custom control that is wrapping the Kendo MaskedTextBox. The template looks like:

<kendo-maskedtextbox
    [id]="id + '_kendo-maskedtextbox'"
    [ngClass]="{ 'error-style': this.isError }"
    class="default-style"
    [(ngModel)]="value"
    [mask]="textboxMask"
    [rules]="rules"
    [maskValidation]="maskValidation"
    [rules]="rules"
    [fillMode]="fillMode"
    [rounded]="rounded"
    [size]="size"
    [disabled]="disabled"
    [style.width.px]="width"
    [includeLiterals]="includeLiterals? true : false"
    (blur)="onBlur()"
    (focus)="onFocus()"
    (valueChange)="onValueChange($event)">
</kendo-maskedtextbox>

What I have found when I have the includeLiterals input binding my value stored in value gets cleared out, but if I do not have this input present on the masked textbox, the value is left alone and works as expected. This seems like there is a bug in the code for the control, that is causing this. My only work around is to not have that input binding present in my codes template so the rest of my controls work as expected, but I need to have the includeLiterals so that I can have the literals part of the value when it is updated by the user.

To reproduce, create an component that wraps the masked textbox input, ensure that component implements the ControlValueAccessor interface and has a provided defined for it. Then on another page use that component and pass in the value you want for it via ngModel.

I have tried this with out the control being wrapped in the other control and it works without any issue, but I need it wrapped to provide a uniform experience for the rest of my application and reduce any duplicated code.

Don
Top achievements
Rank 1
 asked on 06 Jun 2023
1 answer
116 views

Hello, I followed the instructions in that forum to make this graph, but now I would like to know what to do so that an element, whether at the beginning, middle or end, has a minimum space so that these things do not happen. (and also center the numbers since I decrease the height in half to make it look thinner.)

https://www.telerik.com/forums/100-stacked-bar-chart-with-rounded-ends 

 

 

 

Camilo
Top achievements
Rank 1
Iron
 answered on 06 Jun 2023
1 answer
179 views

Hi, I'm trying to use `kendoButton` directive as a hostDirectives, but only support standalone directives., any plan to update kendo directives to standalone ? 

@Component({
selector: 'wrapper-button',
standalone: true,
hostDirectives: [
kendoButton,
//other directives
],
template: `
<button></button> `,
imports: [
ButtonModule
]
})
Yanmario
Telerik team
 answered on 01 Jun 2023
1 answer
422 views

 

 

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!

Martin Bechev
Telerik team
 answered on 01 Jun 2023
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?