I have a series of vertical bar graphs. The individual bars must be selectable. For this I used plot bands. That works well so far. Now the plot band should get a thin border. Is there a way to add a CSS class to the plot band, or to set the border in another way? I tried rendering, but with Panning and Zooming the bars move and the border stays.
I have a grid:
<kendo-grid #grid="kendoGrid" [data]="userView | async" [pageSize]="20" [sort]="state.sort" [filter]="state.filter" [pageable]="true" [sortable]="{ allowUnsort: true, mode: 'multiple' }" [filterable]="true" [resizable]="true" (dataStateChange)="dataStateChange($event)"> </kendo-grid>
userView function returns 21 records,the first page shows 20 records its all good but the issue is when I go to the second page of the grid, it shows one record but the page number below shows 1 and I can't go back the page 1 in the grid which I had the 20 records, here are my functions:
public state: State = { skip: 0, take: 500 } public userView: Observable<GridDataResult>; constructor( private userListService: UserListService){ this.userView = userListService; userListService.query(this.state, this.querySharedUsers); } public dataStateChange(state: DataStateChangeEvent): void { this.state = state; this.userListService.query(state, this.querySharedUsers); }
I tried to change the state.take to 20 but the function returned 20 records which it should return 21 and the grid had only one page, is anyone familiar with this kind of configuring kendo ui paging?
Hi,
In the horizontal scroll chart, when I scroll to right, the vertical Y-Axis also gets scrolled off to left. I want that Y-Axis to remain static during the horizontal scroll. Can you please guide me how I can do that?
Hello,
Please provide working demo for context menu.
There are demo is given in following link but its not working.
I tried to open in stackblitz but in stackblitz even its not working .
Please provide stackblitz working demo for two following link
Thanks
I use filterable multi-checkbox menu component as it's guided here https://www.telerik.com/kendo-angular-ui/components/grid/filtering/reusable-filter/#toc-multi-checkbox-menu-filtering but it does not work for empty values. If I select an empty value in filter menu, the Filtering button is not enabled, even if I select more values, the result will still not include empty values.
Hi,
I'm using tooltip module (2.1.0) under Material theme. It works perfectly except the font is too small to see (guess it's 10px). So I'm trying to use tooltipClass with a customized style, following example in https://www.telerik.com/kendo-angular-ui/components/tooltip/how-to/customize-styling/. But strangely it doesn't work, the tooltip still showing the original styles. Other properties of the TooltipDirective works, such as showOn, tooltipHeight, etc. Not sure where I did wrong.
I also have Angular Material controls on the page, was suspecting there's confliction of the styles but removing those controls doesn't help. What might cause tooltipClass not work?
Attached is the screenshot of the tooltip even after applying tooltipClass.
If there's other approach can increase the font size rather than a customized style I'd love it.
Thanks,
Randy
Is is possible to overlay two chart types in the same chart? I would like to create line and scatter chart combined - similar to the chart seen attached to this post.
I am using kendo angular Toolbar. In Jquery version they have event for overflow button clicked. But i didnt find for Angular. Any way we can achieve it.
Angular: https://www.telerik.com/kendo-angular-ui/components/toolbar/responsive-toolbar/
jQuery: https://docs.telerik.com/kendo-ui/api/javascript/ui/toolbar/events/overflowopen
I need to preventDefault because my webpage is getting refreshed on click of overflow button.
How can this be fixed?
I have attached a pic of the issue.
Thanks.
Is it possible to do this?
I see I can customise individual items, but they would need to be in a Sortable container in order for drag / drop to work. Is there any way of achieving this?
Thanks