Hello,
I have a pie chart that takes data from the backend in which a query to db is made.
the back end is written in python.
in the front end through angular I recover the response of the call and assign it to the pie datasource.
unfortunately the amount of data is very large and the graph is not constructed correctly.
how can I solve this problem?
can I put at least one default zoom to the chart?
this.myService.getPieChart(name, date1, date2).subscribe(data => {
this.dataSourcePieChart= data;
},
(err) => {console.log("error");});
best regard,
alex
Hi,
I have a grid that fetches paged data from a remote data source. I have implemented a new directive, remoteGridDataBinding , that extends the GridDataBindingDirective to handle this and it works great. This directive implements the fetchRemoteData function which encapsulates all the logic required to retrieve the data from my remote service.
<kendo-grid remoteGridDataBinding dataQuery="dataQuery"...
I'm now looking to implement the Export to Excel functionality. I understand that I can use the fetchData binding on the kendo-grid-excel component. I can then pass this an observable containing all the data.
<
kendo-grid-excel
[fileName]="export.fileName" [fetchData]="getAllData"></
kendo-grid-excel
>
Is there anyway my getAllData function can make use of the fetchRemoteData function within my new databinding directive?
Otherwise I would need to implement the logic for retrieving the grid's data twice. This may not seem like too much overhead initially but our application has a number of grids that would need to implement this functionality. It would be a cleaner if we could implement the remote data source call once (within a reusable directive), and then reuse this logic when I need to fetch all the grid's data before an export to excel.
Thanks,
Daniel
I am using Kendo TreeList (ver 3.0.2) in my Angular 11 project. The TreeList is loaded with more than 25000 data at the parent level and child data is loaded with backend api call. Virtual scrolling is enabled for the TreeList and navigable option is set to true.
I have a requirement that when user performs a search operation, the application should fetch the search result and then it should expand the respective parent nodes and focus on the search result. The user shall be able to navigate through the search result one by one.
I am experiencing an issue that the Kendo TreeList is showing blank area on some randomly expanded and focused row. When I manually scroll on the view, the data get restored. Also, when I navigate to the next record and again come back to the previous record that time the view is rendered properly.
Please help.
Hi,
Is there any way to change the look and feel of the keldo-split-button? I have looked at the documentation and I do not see any examples on how to go about it.
The default look of the kendo split button it to have rectangular edges. I would like it to be wounded with a space between the button and arrow.
Regards,
Jyothi
https://www.telerik.com/kendo-angular-ui/components/scheduler/views/month/#toc-configuration
When viewing the monthly in the first example on the page above, it is set to June 2021. The last full row is all July dates. I tested a few different months and they have that issue where the last calendar row is a complete week for the next month. How can I disable this? I understand that it's typical to show next months days when you have current and next month on the same row such as 28/29/30/1/2/3 but this issue doesn't have that overlap, it it just displaying next months dates completely.