Completed
Last Updated: 22 Jan 2020 08:17 by ADMIN
Created by: Petko
Comments: 3
Category: Chart
Type: Feature Request
0
Hello, I am trying to implement https://docs.telerik.com/kendo-ui/controls/charts/overview scatter chart with multiple axes. How do I specify the series-data attribute to be [columnName, elementVal] Attached is a picture of the excel table I'm trying to reproduce. 
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: 25 Feb 2020 09:36 by ADMIN
Created by: George
Comments: 7
Category: Chart
Type: Feature Request
0

Hello,

We have an issue where encoded characters (for example: ö) in the chart category field cause the label to be misaligned.

You can see this in the following dojo example here: https://dojo.telerik.com/aMEYaziy

This dojo is based on your example (https://demos.telerik.com/kendo-ui/bar-charts/index) but I've added an encoded 'รถ' character to the label for Februrary.

In our application we are passing our the labels down via ajax, and defining the field in series.categoryField (as oposed to the hard-coded values in your demo and dojo), but the effect is the same.

Please let us know what the problem is and how we can resolve it.

Thank you,

George

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: 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: 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: 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: 26 Sep 2019 14:26 by ADMIN
Created by: Alexander
Comments: 1
Category: Chart
Type: Feature Request
0
Please add pdf.allpages functionality in kendo-chart similar to kendo-grid:
https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/pdf.allpages

We are using 2 kendo components together: kendoChart & kendoPager:
https://dojo.telerik.com/iqOnEHUN

We need to export the entire kendo-chart so that each page in kendo-chart gets its own page in the PDF file.
Declined
Last Updated: 12 Jul 2024 07:06 by ADMIN

Dear support team,

we are facing an issue when trying to use "setOptions" to update a Chart.
It works fine when using a normal bar chart but seems to be broken when using stacked bars:

https://dojo.telerik.com/AKEWaLIR

Are we doing something wrong or is this a bug?

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 ]
Completed
Last Updated: 09 Oct 2019 10:52 by ADMIN

Per version "@types/kendo-ui": "2019.3.0" , typings chart label margins and padding (ChartLegendMargin, ChartLegendPadding, ChartLegendLabelsMargin, ChartCategoryAxisItemTitleMargin,... ) don't accept number values, only a dictionary with top, bottom, left and right.

Numbers are correct values for these properties, as shown on  https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart/configuration/series.labels.padding

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.

2 3 4 5 6 7