We have a stacked area or line chart in which the categoryAxis is a date. In each series, values are aggregated (summed).
We are wanting to implement an export to CSV of the data which makes up the displayed chart. I've looked through all of the chart options, but cannot find a way to get those aggregated series values.
Is there any way to do this without having to write my own aggregation logic?
Hello,
When we do a search with an "and", in the table where we see the active filter, there is only one that appears. Is it possible to duplicate the line to have the two pieces of information combined?
Thanks for your help!
Can anyone tell me what the gray area on the bottom right of the grid is? (It almost looks like an extra empty cell on the end , and I don't need it.) I don't know how to get rid of it and it's cutting off the total amount in my last total column. My grid has a scrollable = true setting, and resizeable = true setting, and the first two columns are frozen. (See attached screenshot)
//Typescript code:
mod.Controls.grid.item.kendoGrid({
dataSource: {
data: [],
},
editable: false,
scrollable: true,
resizable: true,
filterable: true,
noRecords: true,
pageable: false,
@(Html.Kendo().DatePickerFor(model => model.StartDateSelected)
.Name("StartDateSelected")
.Min("1/1/1999")
.Value(Model.StartDateSelected)
)
Here is my code. When i am exporting, child rows are not getting exported. How to achieve this. Expecting your help.
<script type="text/javascript">
$(document).ready(function () {
$("#btnExportToExcel").click(function (e) {
var grid = $("#grid").data("kendoGrid");
grid.saveAsExcel();
});
});
</script>
<div id="grid"></div>
<button id="btnExportToExcel" type="submit" name="excel" value="valexcel">
<img src="images/excel-icon.png" alt="imageExcel" /></button>
<script> $("#grid").kendoGrid({ columns: [{ field: "productName" }, { field: "category" }, { field: "status" }, { field: "Comments" }], dataSource: { data: [{ productName: "Tea", category: "Beverages", status: "Open", "Comments": "" }, { productName: "Coffee", category: "Beverages", status: "Open", "Comments": "comment1" }, { productName: "Ham", category: "Food", status: "Open", "Comments": "" }, { productName: "Bread", category: "Food", status: "Open", "Comments": "" }, { productName: "Hammer", category: "Hardware", status: "Closed", "Comments": "Comment test" }, { productName: "Screw", category: "Hardware", status: "Open", "Comments": "commenting testing" }], group: { field: "category" } }, detailTemplate: "<div class='Comments'>",
detailInit: function (e) { e.detailRow.find(".Comments").html("<p>" + e.data.Comments + "</p>"); }, });</script>
When creating Pins on the Telerik UI Map, (https://demos.telerik.com/kendo-ui/map/remote-markers), how can we make sure that multiple pins that happen to have the same coordinates, will show up and not be "covered", so that only the very last one drawn get shown?
Does Telerik pin has a similar feature to show multiple clusters of pin, with something like this? (https://developers.google.com/maps/documentation/android-sdk/images/utility-markercluster.png)
Hi guys,
What I have done is I have added a Context Menu with option Create Event (gets visible after mouse right click on scheduler) .
Now when User clicks on Create event then opening Kendo Window. In this I have two text boxes for Date and Time.
Here what I want is I need Date and Time from Scheduler where user has clicks right of mouse.
For Example
If user right clicks on any cell of 15th date of scheduler at 10 am then text boxes should get filled with 15-04-2020 and 10:00 am respectively
Similarly, If user right clicks on any cell of 18th date of scheduler at 01 pm then text boxes should get filled with 18-04-2020 and 01:00 pm respectively and so on.
Here is Code Snippet
Also I have attached screen shots.
Please help.
Dear Telerik,
There is a hierarchial grid. The 'child grid' is too long so I need to scroll horizontally if I want to see any table column.
So my problem is when I use the keyboard navigation by arrows the automatic scrolling doesen't work. If I don't scroll horizontally I can't see the next column.
If I use the main table the same way by arrows, the automatic scrolling is working. How could this work on 'child table' too?
I'm waiting for your answer.
Your's sincereley,
Adam Lantos
I am using MVVM to render a master template and within that I am rendering a child template using the data-template attribute. The child template contains some html that I attach an event to via jQuery.
I'm running into an issue where the event no longer fires in the child template after an update to the model.
My real-world implementation is more complex but I have thrown together a simple example of the issue here:
https://dojo.telerik.com/EbuDubel/2
To reproduce the problem:
1. Click "I always work" notice the alert appears
2. Click "I stop working after updating input" notice the alert appears
3. Change the value of the input text
4. Click "I always work" and notice the alert is still working
5. Click "I stop working after updating input" and notice the alert no longer appears
Is this behavior expected?