Hello,
Is it possible to provide sorting capability to chart? In the basic example of Bar chart here https://www.telerik.com/kendo-angular-ui/components/charts/series-types/bar/ If I wanted to sort based on unit sorts, highest to lowest or lowest to highest. for simplicity we can ignore multiple bar for Q1.... Qn
Thanks
ANGULAR VERSION 12.0.4
kendo-angular-input 10.1.2
I'm using angular-kendo but when i update my package and after that I found some styling related issue with angular numeric textbox and with kendo-switch although I fixed numeric textbox issue with some mannual style but still not able to fix kendo-switch
Previous Output before package update:-
After package update:-
I
Thanku any help is appreciated
In my project I have many tooltips for displaying different things. But I want to change the CSS properties of one tooltip in particular which will not affect the other tooltips. How to do it ,the method mentioned in the document doesn't seem to work.
<div kendoTooltip tooltipClass="my-class">
.my-class *{
color:black;
}
Using a Point object created with its constructor as the moveTo for a path fails when built for production but works when debugging.
If I use the code above, that path will draw just fine when built with development settings, but if I build the app for production it fails with NaN errors on the paths SVG Move step. (the error has SVG that looks like 'M Nan')
however, if I just use the X and Y coordinates, it works... the following works in production. I don't know if it's a bug or I'm doing something wrong, but the fact that it works in a dev build, but not an optimized production build makes me think it's a bug.
Hello,
I have a treeview and a editService as a directive/datasource. Anyway the nodeDrop called twice. Have u any idea why nodeDrop is called twice. Best regards Nico
this.treeview.nodeDrop.subscribe(x=>console.log(x));
<kendo-grid [data]="data">
data = [
We have a map tile layer and are trying to show the growth of our locations by programmatically adding makers to the array used by the bubble layer on a timed interval. And it "works" but every time we update the array of markers, the entire map redraws or flashes or something. Is that avoidable? In the code below displayMarkers() is a computed signal that returns an array of markers depending on where we are in the chronological progression.