Unplanned
Last Updated: 22 Sep 2021 20:20 by ADMIN
Created by: Software
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

Hi Team,

I would like to request the functionality to be able to export (an) Excel file(s) with the built-in Kendo UI API into a ZIP file. 

Thank you! 

Completed
Last Updated: 21 Sep 2021 11:40 by ADMIN
Created by: Sean
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
6
Now that Kendo UI 2016.1.* includes jQuery via the UMD wrapper, it would be great if that were the version of jQuery that was used.

I admit that I find the many IIFEs difficult to read, but it appears that you've only included jQuery in the wrapper to ensure that it is loaded, and you don't assign it to anything.

We'd like to be able to use jQuery.noConflict with all of our dependencies, and Kendo is the last one preventing that.
Completed
Last Updated: 21 Sep 2021 11:31 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
7
It would be useful to have border configuration as an option when using kendo.ooxml.Workbook to create an excel file (i.e. sheets.rows.cells.border)
Declined
Last Updated: 21 Sep 2021 11:30 by ADMIN
Created by: Weston
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
7
Kendo has places where you can specify cssSpriteClass, and other places where you can specify the actual icon by name. 

My proposal is to provide a way to say I am using halflings or font awesome or anything else for that matter, and just specify icon "fa fa-play" and its done.

Currently its way too much work to implement kicon wrappers for font awesome fonts, and then they dont work everywhere anyway.
Unplanned
Last Updated: 20 Sep 2021 16:18 by ADMIN
Created by: Tony
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Hi,

I have a ticket on this but wanted to make sure it gets attention as I think it's a critical functionality that a main competitor implements well and Dataviz lacks.

We need to be able to chart date based data with discontinuous data. For example, events data with a start date and end date. Here is a set of features that would make DataViz competitive:

1. Provide the ability to combine various chart types with different datasources...both remote and local. we need to ba able to plot date based data from many sources.
2. Include a simple, easy to use way to sync all included charts to a navigator/selection tool or a set of date pickers. This could be as simple as a property that links charts, similar to the cascading dropdowns.
3. Fix the problem of tool tips not working over the navigator and selection tool charts.While not a huge problem, clients complain that the underlying chart is useless without tool tips to provide the numeric data.

As always thanks for listening and hope this gets some attention.
Declined
Last Updated: 20 Sep 2021 16:14 by ADMIN
Created by: Sascha
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
currently is 1px to 1pt mapped in the kendo.drawing.drawDOM method. Actually, this should make it simpler, as described in
https://docs.telerik.com/kendo-ui/framework/drawing/drawing-dom#dimensions-and-css-units
Unfortunately, this prevents the use of the units cm, in, mm and pt.
Unplanned
Last Updated: 20 Sep 2021 15:38 by ADMIN
Created by: kako
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
2
From the forum below.
Even if the axis type of category is other than "Date" (for example, character string / number), PlotBand's position at the time of panning
Please do not move the place.
Unplanned
Last Updated: 20 Sep 2021 15:32 by ADMIN
Created by: Kasim
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
There is need to have multi-level Donut chart as shown in the link https://stackoverflow.com/questions/38560456/multi-level-pie-donut-chart-in-kendo

The chart here https://demos.telerik.com/kendo-ui/donut-charts/index does shows multi-level of information but it is not the same as required to implement the one shown in Stackoverflow query. 

In case the series chart with multi-level of information is possible with HtmlChart, please share sample code with data binding to implement the same.
Unplanned
Last Updated: 20 Sep 2021 15:31 by ADMIN
Created by: KM
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
Unplanned
Last Updated: 20 Sep 2021 15:30 by ADMIN
Created by: Eva
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be great to be able to sort the legends of a chart, without changing stack order.
Unplanned
Last Updated: 20 Sep 2021 15:30 by ADMIN
Since aggregation causes data to change when using a date axis (new minimums and maximums), provide a way to retrieve the new minimums and maximums for each series plotted on a graph.
Completed
Last Updated: 20 Sep 2021 15:29 by ADMIN
Created by: Eric
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
Data aggregation is not always desired with date data.  Scatter plots do not work well with dates.  I want to map every point of data I have without having them aggregated in different BaseUnitSteps.

I'd like an option to turn off data aggregation for date series.
Unplanned
Last Updated: 20 Sep 2021 15:24 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Kendo map wraparound feature for geojson type

The wraparound feature in Kendo map doesnt work for GeoJso type, can we have this feature added.
Unplanned
Last Updated: 20 Sep 2021 15:19 by ADMIN
Ability to show a circle on a map to encompass a specified number of miles/km from a point.  This is different from the Bubble layer as it will keep the radius in miles/km when zooming in/out
Declined
Last Updated: 20 Sep 2021 15:19 by ADMIN
Created by: sitefinitysteve
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0
Sitefinity uses KendoAll everywhere, here's an example of how it's used CMS-wide
https://github.com/Sitefinity/feather/blob/a9a417115096af67629603cf0eaf52e8a6810d06/Telerik.Sitefinity.Frontend/Mvc/Views/Designer/Designer.cshtml#L53

The basic idea is that when the page is built at runtime all the references to the script get combined and it's only served once.  So the stock widgets just all reference KendoAll and if there's 100 widgets on a page that the user creates, KendoAll only comes down once...

So in the SF backend we can set what "ScriptRef.KendoAll" means... like which script it points to, or even to use the CDN version.

Typically what I do to cut the size is to change the KendoAll script to KendoWeb CDN because nothing in Sitefinity uses KendoMobile so why constantly deliver the massive bundle.

However there's been a bunch of times where KendoDataViz has been required on the sites, and now I'm stuck... because you can't just add KendoWeb and KendoDataviz seperatly on a page due to the overlap of functionality.

Option 1: Change the entire site back to KendoAll
Option 2: Generate a custom build and use that

Problem with option 1 is I'm back to delivering a couple meg file to users

Problem with option 2 is I can no longer use a CDN, and every release I'm having to keep re-generating a new bundle file.

It would be very very very nice if a pre-generated DataViz+Web (and seperate DataViz+Mobile) build was available on the CDN to use.
Completed
Last Updated: 20 Sep 2021 15:14 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I want to be able to right click on a point in the line graph and add an annotation or expose a menu for them to choose. The scenario is I want to right click on a point and say the value of that data point is invalid.
Unplanned
Last Updated: 20 Sep 2021 15:09 by ADMIN
Created by: Adrian
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Facilitate mvvm binding for plot bands
Unplanned
Last Updated: 20 Sep 2021 15:09 by ADMIN
Created by: Eric
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
5
What I want to do is click with the mouse and draw a rectangle on the map, around one or more markers, to select all the markers in the rectangle.  I've seen this done on other map controls by being able to select what happens when the user clicks on the map and moves the mouse. 

User selects "Pan" (usually from a tool bar)  - this is the standard behavior now
click on the map and move the mouse - map pans / moves with the mouse

User selects "Rectangle"  
click on the map, hold down the left mouse button, move the mouse and a rectangle draws - just like the windows "Snipping tool"  - all the markers in the rectangle get returned to the code in a collection when the user releases the left mouse button

User selects "Circle"  
click on the map, hold down the left mouse button, and move the mouse - a circle draws - all the markers in the circle get returned to the code in a collection when the user releases the left mouse button

Here's an example 
The shape file that's been converted shows all the telephone poles in a city.  I want someone to inspect all the poles on this street.  I select the rectangle tool, draw a rectangle around the poles, release the mouse, my code takes over and builds a work order to go inspect and record the inspection date and outcomes. 

Another example 
Map shows hotels in an area.  I select the circle tool, draw a circle around the hotels close to where my meetings are, release the mouse button, map returns a collection of markers in the circle, the program then takes over and displays a grid showing 
Hotel Name,   Star Rating, Average Rate, Phone number, URL
Completed
Last Updated: 20 Sep 2021 15:08 by ADMIN
Created by: voripteth
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Tick marks on charts have only been partially implemented.  Add the ability to show major ticks at step intervals (as done with labels) and show minor ticks between the major ones.  Allow this option on all charts (or at least column, line and area charts) and on X and/or Y axis.
Completed
Last Updated: 20 Sep 2021 15:05 by ADMIN
Created by: Prabin
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Provide means to specify if a legend item needs to displayed or not, either through a configuration API which can take a condition on the value / series, or through an event when the legend is being added. This will make it easy to manipulate the legends that are displayed. Additionally, having an event to hook into, can also provide means to add custom functionality, like click handling, to the legend items.