Unplanned
Last Updated: 02 Apr 2024 11:59 by Guy

In Excel, there is an option for Sparkline to set a marker for the highest point, lowest point, first point, last point, and negative point. 

I know that it is possible to customize the appearance of the markers using the markers.visual. However, I would like to have the option as a built-in configuration to ensure better performance.

 

Unplanned
Last Updated: 25 Mar 2024 08:21 by Cristiano

Bug Report

When the zIndex is set the the chart marker in the legend is misaligned.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/OCEtoRuz

Current behavior

The line and the marker in the legend are misaligned.
image

Expected/desired behavior

The line and the marker should be aligned even when the zindex is set.
image

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all ]
Unplanned
Last Updated: 18 Mar 2024 09:40 by ADMIN

In case you are using a chart with the following configuration:

$("#chart").kendoChart({
  series: [{
    type: "radarLine",
    missingValues: "gap",
    data: [1, null, null, null, 5]
  }]
});

There is no line between the last and the first data point of the series.

But when the 2nd and 4th data points are set as well, this connection is added:

$("#chart").kendoChart({
  series: [{
    type: "radarLine",
    missingValues: "gap",
    data: [1, 3, null, 3, 5]
  }]
});

Expected behaviour: As the chart displays a "circle", all data points next to each other should be connected in case they are having a value.

 

The same issue can be seen in this DOJO, where the fifth data point is not connected to the rest of the points. This only happens if "missingValues" is set to "gap".

Completed
Last Updated: 19 Feb 2024 16:37 by ADMIN
Release 2024 Q2

Bug report

The stack bar chart is not rendered as expected when stack.type is set

Reproduction of the problem

  1. Open d the Demos - https://demos.telerik.com/kendo-ui/bar-charts/stacked100-bar or the API

Current behavior

The Chart is not rendered correctly, the bars are misaligned.

Expected/desired behavior

The bars should be aligned.

Regression: The issue is reproducible starting with 2024.1.130 version

Environment

  • Kendo UI version: 2024.1.130
  • Browser: [all ]
Unplanned
Last Updated: 29 Jan 2024 18:51 by Pratik
Created by: Pratik
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

I would like to see a no-data-template be included for the Kendo UI Chart when there is no data.

Thank you!

Unplanned
Last Updated: 15 Jan 2024 11:45 by Sam

Bug report

Setting the visibility using the toggleVisibility method in the legendItemHover event leads to legendItemHover being triggered multiple times. Thus, the legendItemLeave method is never called.

Reproduction of the problem

  1. Open the Dojo example - https://dojo.telerik.com/@NeliKondova/UVIVaBoH
  2. Hover the legend

Current behavior

If you try to move the cursor slightly the legendItemHover event is fired multiple times and the legendItemLeave event is never called.

Expected/desired behavior

The legendItemHover should be fired a single time when the mouse enters the legend and also the legendItemLeave should be fired even if the visibility of the legend is set through the toggleVisibility method.

Workaround - Check for visible/not visible series in the series._options

function onLegendItemHover(e){
        e.preventDefault();
        console.log("Hover");       
        let chart = e.sender;
        let seriesIndex = e.seriesIndex;
        
        for(let i = 0; i < chart.options.series.length; i++){
          if(i !== seriesIndex){
            let series = chart.findSeriesByIndex(i);
            if (series._options.visible) {
	            chart.findSeriesByIndex(i).toggleVisibility(false);
            }
          }
        }  
      }
      
      function onLegendItemLeave(e){
        e.preventDefault();
        let chart = e.sender;
        console.log("Leave");
        for(let i = 0; i < chart.options.series.length; i++){
          let series = chart.findSeriesByIndex(i);
          if (!series._options.visible) {
            chart.findSeriesByIndex(i).toggleVisibility(true);
          }
        }        
      }

Dojo with workaround - https://dojo.telerik.com/@NeliKondova/EpOYadid

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all ]
Unplanned
Last Updated: 09 Jan 2024 14:46 by Gal

I need that the point will be in the start of chart (like justified property behavior) and the line style of "rangeArea" type property will be "step".

In this example the point in the start and the justified property works as expected.

https://dojo.telerik.com/IZuXOyAZ 

but in the second example, when I added property: line: {style: "step"} to "rangeArea" type, the point start in the middle of labels, and justified property not working.

https://dojo.telerik.com/ILOxehAB/3 

So I need that my chart will be like the second example, but the start point of the line will be like the first example.

Unplanned
Last Updated: 09 Jan 2024 09:15 by Tim
Created by: Tim
Comments: 0
Category: Chart
Type: Feature Request
1

Currently each of the labels for the:

  • Axises
  • Legend
  • Tooltip
  • Chart Title

Provide their own "font" property setting. However, it would be beneficial if there is a default configuration that can apply a font for each of the aforementioned Chart Label compartments.

Unplanned
Last Updated: 14 Nov 2023 09:56 by Lukasz

Bug report

Chart with log valueAxis allows to deem zoom and throws an error: Uncaught Error: Non positive values cannot be used for a logarithmic axis

Reproduction of the problem
Dojo: https://dojo.telerik.com/OCuziYOr

Expected/desired behavior
The Chart shall not allow this deep zoom

Environment
Kendo UI version:[all]
Browser: [all ]

Unplanned
Last Updated: 13 Nov 2023 08:36 by ADMIN
Created by: T
Comments: 3
Category: Chart
Type: Feature Request
11
Several forum posts have mentioned that the best way to customize a legend is to hide Kendo's and make our own. I would be so great if we could just customize the legend similarly to most other areas of the chart that can be customized.
Unplanned
Last Updated: 12 Oct 2023 12:17 by Lukasz

Bug report

When the user tries to zoom the Chart and a zero range is selected, an error (Uncaught TypeError: Cannot read properties of undefined (reading 'min')) is thrown in the browsers console.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliKondova/eQiKUqOB
  2. Press the Shift key and select a range. Try the min and max of the range to be almost the same.

Current behavior

Uncaught TypeError: Cannot read properties of undefined (reading 'min') error is thrown in the console.
screencast - https://somup.com/c06lloBaw2

Expected/desired behavior

There should be no error in the browsers console, no matter of the selected range.

Environment

  • Kendo UI version: 2023.3.1010
  • Browser: [all ]
Unplanned
Last Updated: 22 Sep 2023 14:36 by Sudip
Created by: Sudip
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

I would like to request the functionality to plot a chart with panes side-by-side instead of only top to bottom.  

Thank you!

Unplanned
Last Updated: 23 Aug 2023 16:12 by Aleksandr
Created by: Marcus
Comments: 1
Category: Chart
Type: Feature Request
5
We already have click events for the plot area, axis labels, etc., but a click event for the chart title is conspicuously absent.

I have received development requests that would require this, but currently have no available workaround to allow it.
Unplanned
Last Updated: 05 Apr 2023 16:39 by Jan Brandenburger
Created by: Jan Brandenburger
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

I would like to request the Kendo UI Chart to be able to use the defined culture for localization.  Currently in my application, the date is showing as English formatting(1/30) instead of German(30.1) unless I specify the categoryAxis.labels.dateFormats configuration as seen in this Dojo.

Maybe include a culture property like the theme property?

Thank you for the consideration!

Declined
Last Updated: 19 Jan 2023 12:23 by ADMIN
Created by: Andreas
Comments: 1
Category: Chart
Type: Feature Request
0

Hi Team,

I would like to request the Bar/Column charts to be able to be configured with a Target Line similar to the bullet charts

Thank you!

Unplanned
Last Updated: 17 Jan 2023 14:27 by Kamil

The Kendo Chart supports the baseUnit: "fit" property that displays as many categories as possible. This is useful when there are thousands of data points across many years.

When the data is "fit", the last date may not be displayed(because of the aggregation). I want to have the ability to display the last data point and date(category) as standalone and not a part of the aggregate.

Unplanned
Last Updated: 13 Jun 2022 11:49 by Sanjoy

The problem can be seen in the following Dojo:

https://dojo.telerik.com/uQeduJAG 

When the Donut Chart has a section with value = 0, the color of that point is displayed inside the donut.

Completed
Last Updated: 01 Mar 2022 15:25 by ADMIN
Release 2022.R1.SP.next

We are using asp mvc, but the but it is completely reproduceable with only jquery as shown in the file attached.

When using a scatter chart with a date axis any zooming with the mouse wheel will crash most if not all browsers.

At the very least current versions of chrome (97.0.4692.99), firefox (96.0.1) and edge (97.0.1072.62).

Unplanned
Last Updated: 14 Jan 2022 07:27 by ADMIN

Bug report
ValueAxis.labels.template function invokes twice when Chart is bound to data source

Reproduction of the problem

Check the following Dojo: https://dojo.telerik.com/oJUGixUy/4

Inspect the console

Expected/desired behavior
ValueAxis labels template function shall invoke just one time.

Corner case:

If ValueAxis.labels.font is specified template function is invoked correctly only once.

valueAxis: {
                labels: {
                  // With the font commented out, chart labels get resolved twice
                  font: '11px Arial, Helvetica, sans-serif',
                  template: shortLabels
                }
              },

Environment
**Kendo UI version: [all]
**jQuery version: [all]
**Browser: [all]

Unplanned
Last Updated: 29 Sep 2021 14:46 by ADMIN
Created by: Jihyoung
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

I'd like to request the CategoryAxis.Justified property be supported for other series types of the Kendo UI Chart.  In my case, this would be beneficial since I have a combination of a line and box plot Kendo UI Chart.

Thank you!

1 2 3 4 5 6