Hi,
I have a chart and either seriesOver and seriesClick events bound to methods.
I wonder if there is even possibility to distinguish between these two events on mobile device, e.g. one only for quick tap, the other for let's say second hold (or even any other event), or the development in this area is not so far so that these ideas are not elaborated.
Thanks for response in advance.
J
Hi,
I have a chart with a categoryAxis given like this:
type: 'date',
baseUnit: 'minutes',
baseUnitStep: 15,
labels: {
format: 'H',
step: 4,
}The data are per 15 minutes, so the baseUnitStep is per 15 minutes as well. The labels are per 4 base unit steps.
What I need is, when user narrows the screen, to set labels step to e.g. twice, so the label would'n be placed per 4 but per 8 base unit steps.
I tried to reset the labels.step property, also the labels property itself, but there is still no difference in the graph appearance. Should I try to reset the complete categoryAxis or refresh it somehow? Or is there any simpler solution?
Thanks in advance.
J
Hi,
I search an Calendar sample with Detail in column ?
Regards
Hi
Could i add my own icon list ou SVG list ?
Regards
Hi,
Could you upgrade sample https://plnkr.co/edit/h1EB4cKEZpm4q3jHX8ye?p=preview&preview for Angular12
I have problem with asc and curr which has no type and "filter" is not defined
Regards
const flatten = filter => {
const filters = filter.filters;
if (filters) {
return filters.reduce((acc, curr) => acc.concat(curr.filters ? flatten(curr) : [curr]), []);
}
return [];
};
class NorthinService method fetch has also problem in Angular12
protected fetch(tableName: string, state: any): Observable<GridDataResult> {
const queryStr = `${toODataString(state)}&$count=true`;
return this.http
.get(`${this.BASE_URL}${tableName}?${queryStr}`)
.pipe(
map(response => (<GridDataResult>{
data: response['value'],
total: parseInt(response['@odata.count'], 10)
}))
);
}

Hi
I search an GRID sample that loading page per page from Server, with sorting on server too ?
Regards

Hi,
We have a kendoButton with look "outline":
https://www.telerik.com/kendo-angular-ui/components/buttons/button/styling/#toc-outline-button
We created a custom theme with the Progress Sass Theme Builder:
Progress Sass Theme Builder (telerik.com)
When we hover over the outline-kendoButton, the background-color is black, just like in the sample on the website
https://www.telerik.com/kendo-angular-ui/components/buttons/button/styling/#toc-outline-button
What is the most appropriate way to change the hover-color of this button?
Can we modify that color in our theme?
thx !

Hi,
I would like to display in the multiselect bar a single box containing the number of selected elements
or if possible not display anything.
the elements I would like to display them only when I click on the multiselect and not in the placeholder
something like the attached img
great regards,
alex
Hi,
I search an Grid sample with an DropDown Component and an server Filter in Service.
Do you have theses sample ?
Regards

This should be pretty easy, in no way will I ever get this working without help ...
The control ...
<kendo-scheduler [slotClass]="getSlotClass" >The code ....
public getSlotClass = (args: SlotClassArgs) => {
return {
background:"purple" // ???????????????????????
};
}Nothing I've tried can set the background color of a slot .... ?