Hello,
I am using different series types in my chart, like column, line and rangeColumn. I have a problem with the settings for my tooltip, because I don't know how to use different tooltips for different types of series.
While for the types column and line my used template "#= series.name #: #= value #" works perfectly fine, for my rangeColumns I'd need "#= series.name #: #= value.from #" , because otherwise I just see nonsense as pointed out in the attached picture.
Is there any possibility to customize the tooltips for each series type?
Thank you and best regards,
Harald
Hi,
My spreadsheet might have hundred of records, but I'm intend to detect the changes row each time user click on save button.
I found that when user copy from external excel and paste to kendo spreadsheet, change event only trigger the first value changed.
Below are the code that I tried:
change: function (e) {
var row = e.range._ref.topLeft.row - 1;
if (rowIndexChanged.indexOf(row + "|") >= 0)
return;
rowIndexChanged += row.toString() + "|";
}
Is there any other simpler way to get the changes of row's index from spreadsheet?
Thank you!
Regards,
Su Pei

$.map(ds.data(), function (value, index) { var $row = $(this); $.each($row, function (index, value) { alert(value.toString()); }); });
I have the pageable as true for my grid. But when I select such as page 3. The number 3 will show at the beginning before other page numbers. Do you know how to avoid that display? Thanks.
Hi guys,
in my scenario I show only one day - view as we use the scheduler for building complex agendas with many rooms. When an user adds (or edits existing event) at the bottom of the custom edit box is an option to move the session to another day. If user selects other day and clicks on the save button on the controller we change start/end date of the session and save that to the database
var item = eventService.GetAgendaDay(sesssion.EventAgendaDayId); //selected id of the another day
//changing start/end date
sesssion.Start = new DateTime(item.Date.Year, item.Date.Month, item.Date.Day, sesssion.Start.Hour, sesssion.Start.Minute, sesssion.Start.Second);
sesssion.End = new DateTime(item.Date.Year, item.Date.Month, item.Date.Day, sesssion.End.Hour, sesssion.End.Minute, sesssion.End.Second);
and once we perform the save option we return the session back
return Json(new[] { sesssion }.ToDataSourceResult(request, ModelState));
At this moment, the newly created session/or edited belongs to the another day and it should not be visible anymore on the screen, but it is. that is reason why I'm asking how to manualy refresh the source after save
thanks
I am retrieving the start date of my Scheduler like this:
function get_date() {
var scheduler = $("#scheduler").data("kendoScheduler");
var view = scheduler._selectedView;
var startDate = view._startDate;
return startDate;
}
I am trying to pass that date via ajax in order to populate my dropdownlist:
$("#drpHall").kendoDropDownList({
dataTextField: "hallname",
dataValueField: "hallid",
dataSource: {
transport: {
read: {
url: "chart_functions.cfc?method=GetHalls&returnformat=json",
data : {
dt: get_date()
},
dataType: "Json"
,success : function(result) {
alert(JSON.stringify(result));
}
}
}
, pageSize:10
},
index: 0
});
I am using the function get_date(), but the dropdownlist does not render when I do this. If I replace it with a simple "new Date()" parameter instead, the control renders (but obviously using the wrong date).
What do I need to do to pass that scheduler date properly?
Thanks!


The color associated to each legend is taken from defaults color. we are using group field under data source to display category value as legends.
How to set legend color in bubble chart?
