Completed
Last Updated: 13 Nov 2024 09:51 by ADMIN
Created by: John
Comments: 2
Category: Charts
Type: Feature Request
2

We have this feature in Kendo Grid:

<ng-template kendoGridNoRecordsTemplate>
  <fa-icon [icon]="faCloudXmark" class="fa-2x"></fa-icon>
  <p>There is no data to display.</p>
</ng-template>
Can we get `kendoChartNoRecordsTemplate` for the chart please?
Completed
Last Updated: 15 Nov 2024 12:10 by ADMIN
Created by: Georgi
Comments: 1
Category: Charts
Type: Feature Request
6

I would like to be able to use a texture, a pattern, or an image as the background of a Kendo chart.

One use-case where this would come handy is a stacked bar chart where all segments of the bar have the same color. A way to visually separate them could be via different textures.

See image below for an example reference:


Completed
Last Updated: 02 Oct 2020 06:35 by ADMIN
Created by: Robert
Comments: 0
Category: Charts
Type: Bug Report
0

Describe the bug
The <kendo-chart-series-item> component is missing settings for median and mean elements rendered by Box Plot series.

These are the two lines within each box (dashed line is mean):
image

Expected behavior
These series elements should be customizable and should accept an object containing color, width, dashType and opacity.

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.

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/