Declined
Last Updated: 30 Jun 2022 09:16 by ADMIN
Created by: Markus
Comments: 2
Category: Charts
Type: Feature Request
0

When the chart is configured to use the selection zoom. One must press the Shift-Key and select an area inside the chart to zoom.

I the chart shows tooltips, in most cases the tooltip pops up under the cursor and it is not possible to select an area.

The tooltip shoud be disabled, when the shift-key (or the configured key) is pressed inside the chart area.

Unplanned
Last Updated: 03 May 2019 10:07 by ADMIN
Created by: Patrick
Comments: 1
Category: Charts
Type: Feature Request
5

Hi,

We really like the Kendo for Angular suite. We were trying to see if the kendo-stockchart could fit our needs with some customization. But this might be difficult to achieve.

We are looking for rendering multiple items within a horizontal timeline.

Unfortunately, we didn't find a good component yet that provides what we are looking for.

Here an example of the kind of functionalities we are interested in.

http://www.simile-widgets.org/timeline/

Is there any plan to provide such component in the near future? or perhaps there is a way we can customize the Kendo chart to do a similar.

Thanks.

-Patrick

 

Declined
Last Updated: 11 Aug 2022 08:25 by ADMIN
Created by: Eric
Comments: 2
Category: Charts
Type: Feature Request
0

Enabling Shift-key zooming in the stockChart produces an exception when the user Zooms.

 

I was told by T. Tsonev that this feature is not supported in the stockChart.

 

Here is a example:

https://stackblitz.com/edit/angular-gmoekv-rwu28c?file=app/app.component.ts

 

 

Completed
Last Updated: 02 Jun 2021 13:33 by ADMIN
Created by: Ricardo
Comments: 2
Category: Charts
Type: Feature Request
0

Request to allow control of SVG dimensions from exportSVG options

 

Ideal behavior:

 

export class AppComponent {

@ViewChild('chart')
private chart: ChartComponent;
public seriesData: number[] = [1, 2, 3, 5];
public exportChart(): void {
this.chart.exportSVG({ width: 600, height: 300 }).then((dataURI) => {
saveAs(dataURI, 'chart.svg');
});
}
}

 

this should produce a 600x300 svg. ChartComponent.prototype.exportSVG does not pass options into ChartComponent.prototype.exportVisual in the kendo-angular-charts library. I request that it pass these options in to allow for SVG dimension specification. I have modified the code manually and it behaves as expected.

Declined
Last Updated: 04 May 2023 06:30 by ADMIN
Created by: Tomasz
Comments: 3
Category: Charts
Type: Feature Request
2

We have a case with a chart with values: Date-Value that only applies to working days.

Non of the current options of missingValues ("gap" | "interpolate" | "zero") suits us. Interpolate is the closest option but it pretends to have 2 additional points (Sat & Sun) between Friday and Monday while we prefer just to connect directly Friday and Monday so both label and chart-line shape showns that 4 weeks (28 days) data based chart is based on 20 points and not 28 points (20 real points and 8 interpolated points).

Can this be achived currently? If not can you extend missingValues with additonal option (eg. "ignore") to do as explained above?

 

Thanks,

Tomasz

Declined
Last Updated: 22 Jun 2021 14:14 by ADMIN
Created by: Enrico
Comments: 1
Category: Charts
Type: Feature Request
1
Can you implement a new chart like the below reported?
It's a bubble chart without considering the xaxis


https://bl.ocks.org/alokkshukla/3d6be4be0ef9f6977ec6718b2916d168
Unplanned
Last Updated: 27 Jul 2021 15:18 by ADMIN
Created by: Tomasz
Comments: 0
Category: Charts
Type: Feature Request
5
Colour gradient on AreaChart would look great - see workaround below:

https://stackblitz.com/edit/angular-x1vrhq?file=app/app.component.ts
Duplicated
Last Updated: 15 Jun 2021 12:27 by ADMIN
Created by: Sridevi
Comments: 0
Category: Charts
Type: Feature Request
2
Please provide kendo Gantt chart supporting for angular 5
Declined
Last Updated: 22 Jun 2021 13:46 by ADMIN
Charts that use one or more value axis should expose the means to specify which values on that axis are labeled, instead of basing the labels on the min value of the axis and the major unit.

Ex, using the Angular syntax:

<kendo-chart-value-axis-item
  min="0"
  max="10"
  [labelsAt]="[2.5, 4, 7]"
>

yielding an axis like

----------|------|------------|------------
          2.5     4             7
Declined
Last Updated: 27 Jul 2021 14:37 by ADMIN
Created by: Rajsanil
Comments: 1
Category: Charts
Type: Feature Request
2
Organisation Chart Like Web form. kindly provide this control very helpful
Declined
Last Updated: 21 Jun 2021 14:19 by ADMIN
Created by: Rajsanil
Comments: 1
Category: Charts
Type: Feature Request
1
Provide the animation once select or deselect the legend the visible line in chart should rerender with animation 
Declined
Last Updated: 15 Jun 2021 12:29 by ADMIN
Created by: Elvin
Comments: 1
Category: Charts
Type: Feature Request
1
I have the following data:

Price   Downloads
59      10
62      15
69      30
70      10
75      25
78      30

I want to present the data in a chart in such a way that the Price are grouped together and the Downloads have their medians.

So it would be:
< 59:   10
61-70:  (Median of 62, 69 and 70 above)
71-80:  (Median of 75 and 78 above)

X-axis would be the Price then Downloads on Y-axis.

I can create the median but I just want to be able to group the X-axis.
Declined
Last Updated: 04 May 2023 06:17 by ADMIN
Created by: Luca
Comments: 2
Category: Charts
Type: Feature Request
2
Component kendo-chart-navigator has to be usable also with other chart types not only stockchart.
We think that could be really useful to move it from StockChartModule  to ChartModule and find a way to use it in a new way!

See for example:

http://plnkr.co/edit/CYTIcQYcx3SqSLEFCA59
Duplicated
Last Updated: 16 Jun 2021 12:59 by ADMIN
Created by: Imported User
Comments: 0
Category: Charts
Type: Feature Request
8
Please add a Gantt and Resourcechart component.

See anychart
Declined
Last Updated: 15 Jun 2021 11:56 by ADMIN
Currently missing values can be either interpolated (with the same dash type), zero or gap. It would be nice to provide the opportunity to configure the dash type for the missing (interpolated) values and have for example a solid line for the existing values, and dashes for the interpolated portion.
Completed
Last Updated: 02 Aug 2021 09:36 by ADMIN
For our line chart it would help a lot to be able to display the date (category) along with the value when the user hovers over with the mouse.

If dataItem was added to ChartSeriesTooltipTemplate then that would allow full flexibility, which would be nice.

http://www.telerik.com/kendo-angular-ui/components/charts/api/TooltipComponent/#toc-format

http://www.telerik.com/kendo-angular-ui/components/charts/api/SeriesTooltipTemplateDirective/
Declined
Last Updated: 16 Jun 2021 13:36 by ADMIN
Created by: yaron
Comments: 1
Category: Charts
Type: Feature Request
1
add native support for displaying the series stack label. 
as for today doing so is a work around using the labels property of seriesDefaults.
Declined
Last Updated: 22 Jun 2021 14:34 by ADMIN
Created by: Imported User
Comments: 1
Category: Charts
Type: Feature Request
2
I would like to have two-way data binding on some properties that are set by components themselves. Currently no output is offered for things like the min and max values of axes. It seems they can only be set, not read.

Ideally, I would like to do something like this:
        <kendo-chart-y-axis-item [(max)]="yMax" [(min)]="yMin">
        </kendo-chart-y-axis-item>

    <input type="number" [(ngModel)]="yMin" />
    <input type="number" [(ngModel)]="yMax" />


Unplanned
Last Updated: 20 Jul 2023 10:48 by ADMIN
Created by: Andrew
Comments: 5
Category: Charts
Type: Feature Request
21
I would like to request a component similar to the old TreeMap widget, but with some added functionality.  It would be great if there were native functionality in the component to drill deeper into a hierarchy rather than always having to look at the top level view (i.e. clicking a sub node would "zoom in" to view it as the new root level node).

This example treemap and sunburst (implemented using d3.js) are along the lines of what I'm suggesting.

http://mbostock.github.io/d3/talk/20111018/treemap.html 
http://bl.ocks.org/mbostock/4348373
Declined
Last Updated: 22 Jun 2021 14:31 by ADMIN
Created by: Andrew
Comments: 2
Category: Charts
Type: Feature Request
2
It would be great to have some support for charting hierarchical data in the Angular 2 Components.  It would be especially nice to see something like the old TreeMap widget brought into the library and extended such that the data visualization could change (specifically a sunburst chart option would be really nice).  Additionally, it would be great if there were native functionality in the component to drill deeper into the hierarchy rather than always having to look at the top level view (i.e. clicking a sub node would "zoom in" to view it as the new root level node).

This example treemap and sunburst (implemented using d3.js) are along the lines of what I'm suggesting.

http://mbostock.github.io/d3/talk/20111018/treemap.html
http://bl.ocks.org/mbostock/4348373
1 2 3