Hi,
How do you configure a kendo jquery line chart with remote data (json) to display multiple axis.
I have a Target series with Date and Value AND a Program seires with Date a Value and I want both of them to be display on the same chart.
I was not able to find this demo or help from stackoverflow.
regadrs
Hi,
I have a line chart to show two data series, I use two line types but the legend is not synced with the series dash type.
function GetSeries() {
return [{
name: chartTerms[68941],
type: "line",
dashType: "dot",
field: "Benchmark",
color: chartColors["LightPurple"],
markers: {
visible: false
},
},
{
name: chartTerms[7151],
type: "line",
field: "Result",
color: chartColors["DarkPurple"],
markers: {
visible: false
},
}]
}what I see is:
The Benchmark legend is not correct, it should be "dot"
Any idea?
Which event can I hook into in order to run custom code before a KendoGrid FilterMenu opens every time?
There is an event that runs once before it opens (filterMenuInit) and an event that runs every time after the menu opens (filterMenuOpen), but I need the third kind, which runs every time before opening.
Hi, I want to send data for json format.
This is my data format.
data = {models: Array(1)}, type = "update....I want to send data like this.
data = {foo: 'bar', locale: 'en', name: 'test', description: '1', ...}
This data is same as {models:Array(1)} 's array.
My code is here. I used parameterMap to data format for change.
parameterMap: function (data, type) {
if (type === "update") {
debugger;
return kendo.stringify(data.models[0]);
}
return kendo.stringify(data);
}But when sending data, DataSource.transport.update send another data like this.
var users = new kendo.data.DataSource({
transport: {
update: {
contentType: contentType,
url: function (options) {
return base_api_url_manage_users + "info/" + options.models[0].userId ;
},
type: "PUT",
},They send this format.
data = {models: Array(1)}, type = "update....
I want to send data form as Objcet, not as Object in Array. How can I change this data format???
Please help me.
Thank you.

I have been working on the FileManager control with Kendo using jQuery & it feels very slow in initial loading when the file count increases to 5000+. I tried searching for custom paging, lazy loading, etc. for FileManager but no help. Do anyone knows how to achieve it? Any help will be highly appreciated.
Thanks.
Hello,
I'm experiencing the following error, when I try to use "fromFile" function to load the data for a spreadsheet component from an excel file:
"The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide."
The problem seems to be in the version of JSZip library, which the component uses. I manually changed the version of "JSZip" script to 2.6 and it works fine, but I want to know how to do it using the latest version of the spreadsheet component and the latest version of "JSZip". I used the same file in the demo page in your site and it works fine there. The version of kendo is "2020.1.406".
How to How to use it as Json data type or local databing in kendoPivotGridV2 datasource
Is there an example that you can refer to?
Hi, we have an issue with the custom download and the new version 2022.1.119.
https://www.telerik.com/download/custom-download
When we hit "select all" on "framework" and "web", and we copy-paste the generated scripts, 4 of them have errors, and nothing works.
Look at this on the dojo
https://dojo.telerik.com/@foxontherock/OyuziJuc
Errors:
Uncaught TypeError: Cannot read properties of undefined (reading 'renderCheckBox')
Uncaught TypeError: Cannot read properties of undefined (reading 'renderButton')
Uncaught TypeError: Cannot read properties of undefined (reading 'renderRadioButton')
Uncaught TypeError: Cannot read properties of undefined (reading 'common')
