Completed
Last Updated: 25 Oct 2023 07:33 by ADMIN

Hi

We would like to be able to draw a label for a group of series in the chart axis while also labelling the series individually. See the following example:

In Kendo UI you can achieve this: https://dojo.telerik.com/ulIJihIF. In Blazor, we can force the text into the chart axis categories, but we cannot seem to position them accurately, REPL.

Thank you

Completed
Last Updated: 15 May 2024 15:17 by ADMIN
Release 2024 Q2 (May)
Created by: Justin
Comments: 1
Category: Charts
Type: Feature Request
3

Hello,

Please consider a built-in way to add spacing (gaps, margins, etc.) between the segments of a Donut and Pie charts. The <ChartSeries> tag has such parameters, but they are used for other settings or other series types.

Currently, it is possible to achieve the desired appearance with custom CSS, but that requires knowledge about the Chart rendering.

Completed
Last Updated: 06 Oct 2022 09:18 by ADMIN
Created by: Sean
Comments: 1
Category: Charts
Type: Feature Request
1

Is it possible to use a different marker type other than the one provided by ChartSeriesMarkerType enum?

 

We would like to use a custom icon for some Scatter data but this doesn't seem to be supported out of the box. Please let us know if this is possible in the current framework, if not  - can it be added as a feature?

 

Thanks,

Sean

Completed
Last Updated: 10 May 2022 17:33 by ADMIN
Release 3.3.0
Created by: Nadezhda
Comments: 2
Category: Charts
Type: Feature Request
2

Expose colored ranges (Plot Bands) to allow highlighting certain areas in the chart plot area - similar to https://demos.telerik.com/kendo-ui/bar-charts/plotbands.

---

ADMIN EDIT

---

This feature will allow you to define certain color ranges in the plot area. If you are looking for ability to color the whole plot area in alternating way, you may check this feature request - Is it possible to change the plot area background color in an alternating way.

Completed
Last Updated: 05 Aug 2021 15:03 by ADMIN
Created by: Bill Wolff
Comments: 1
Category: Charts
Type: Feature Request
0
I tried to add the OnSeriesClick to the chart definition and it allows this. When I click a bubble item, args is empty. Should this be supported? The user wants a bubble click to navigate to another page?
Completed
Last Updated: 04 Aug 2023 14:04 by ADMIN
Release 4.5.0 (08/30/2023) (R3 PI2)
Created by: Lee
Comments: 2
Category: Charts
Type: Feature Request
7
How to create a waterfall chart?
Completed
Last Updated: 22 Dec 2023 09:43 by ADMIN
Release 5.0.0 (15 Nov 2023) (R1 PI1)
Created by: Fairoz
Comments: 13
Category: Charts
Type: Feature Request
32

I want horizontal and vertical lines in the chart to act as markers (limits, thresholds). It would be awesome if there was a way to simply draw a horizontal and vertical lines, bound to a collection of y and x data respectively.

Something like the below would be nice 

    <TelerikChart>
        <ChartSeriesItems>
            <ChartSeries Type="@ChartSeriesType.Line" Name="@P_Name1" Color="blue"
                         Data="@P_Data1"
                         Field="@P_Field1"
                         CategoryField="@P_CategoryField1">
                <ChartSeriesLabels Visible="true" Template="#=dataItem.P_Description#" />
                <ChartSeriesMarkers Size="4" />
            </ChartSeries>
            <ChartHorizontalLines Data="@YLinesData"/>
            <ChartVerticalLines Data="@XLinesData"/>
        </ChartSeriesItems>
</TelerikChart>

@code{

List<double> YLinesData, XLinesData;

}

---

ADMIN EDIT

You can find some more details and ideas for workarounds here to consider in the meantime.

---

Completed
Last Updated: 15 Aug 2023 08:04 by ADMIN
Release 4.5.0 (08/30/2023) (R3 PI2)
Created by: Oscar
Comments: 2
Category: Charts
Type: Feature Request
18
I would like to be able to click on the legend labels of a Chart. An event similar to the OnSeriesClick would be suitable.
Completed
Last Updated: 15 Aug 2023 08:04 by ADMIN
Release 4.5.0 (08/30/2023) (R3 PI2)
Created by: Daniela
Comments: 2
Category: Charts
Type: Feature Request
19
I would like to be able to click on the labels of the X-axis of a Chart. An event similar to the OnSeriesClick would be suitable.
Completed
Last Updated: 28 Feb 2023 15:54 by ADMIN
Release 4.1.0 (15/03/2023)

I would like to control the font of the Value axis labels in a similar fashion to the way I can control the labels of the category axis:

    <ChartCategoryAxes>
        <ChartCategoryAxis Categories="@xAxisItems">
            <ChartCategoryAxisLabels Font="bold 12px 'Helvetica'"></ChartCategoryAxisLabels>
        </ChartCategoryAxis>
    </ChartCategoryAxes>

*** Thread created by admin on customer behalf ***

Completed
Last Updated: 04 Jul 2023 09:58 by ADMIN
Release 4.4.0 (07/19/2023) (R3 PI1)
Created by: Christopher
Comments: 6
Category: Charts
Type: Feature Request
10

In need a chart that has a shaded area between a max and min set of curves, indicating the allowable area

Like this one: https://demos.telerik.com/kendo-ui/range-area-charts/index

Completed
Last Updated: 02 Dec 2021 14:48 by ADMIN
Release 2.30.0
I would like to be able to control the dash type of the line for Line Chart.
Completed
Last Updated: 02 Dec 2021 14:49 by ADMIN
Release 2.30.0
Created by: Angelo
Comments: 4
Category: Charts
Type: Feature Request
6

The code below does not produce a chart series with a line that is 50 width?  What am i missing?

 

@page "/chartdemo"
Line series

<TelerikChart>
    <ChartSeriesItems>
        <ChartSeries Type="ChartSeriesType.Line" Name="Product 1" Data="@series1Data">
            <ChartSeriesMarkers Size="10"></ChartSeriesMarkers>
        </ChartSeries>
        <ChartSeries Type="ChartSeriesType.Line" Size="10" Name="Product 2" Data="@series2Data">
            <ChartSeriesLine Width="50"></ChartSeriesLine>
        </ChartSeries>
    </ChartSeriesItems>

    <ChartCategoryAxes>
        <ChartCategoryAxis Categories="@xAxisItems"></ChartCategoryAxis>
    </ChartCategoryAxes>

    <ChartTitle Text="Quarterly revenue per product"></ChartTitle>

    <ChartLegend Position="ChartLegendPosition.Right">
    </ChartLegend>
</TelerikChart>

@code {
    public List<object> series1Data = new List<object>() { 10, 2, 5, 6 };
    public List<object> series2Data = new List<object>() { 5, 8, 2, 7 };
    public string[] xAxisItems = new string[] { "Q1", "Q2", "Q3", "Q4" };

 }

    
Completed
Last Updated: 05 Jul 2023 13:21 by ADMIN
Release 4.4.0 (07/19/2023) (R3 PI1)
Created by: Bert
Comments: 7
Category: Charts
Type: Feature Request
62
I would like to zoom on a particular part of the Chart.
Completed
Last Updated: 01 Feb 2022 11:22 by ADMIN
I would like to be able to change the background color of the plot are by passing a CSS color to a parameter.
Completed
Last Updated: 02 Dec 2021 14:51 by ADMIN
Release 2.30.0
Created by: Kelly
Comments: 7
Category: Charts
Type: Feature Request
24
At the moment it is always white. I often want it transparent so it can blend better with the rest of the content (e.g., it should be able to the color of the grid row it is embedded in).
Completed
Last Updated: 05 Aug 2020 07:48 by ADMIN
Release 2.16.0
Created by: Louis
Comments: 1
Category: Charts
Type: Feature Request
3

Hi!

I'm more than a little impressed with your Blazor efforts to-date, but there's one component lacking: a CandleStick chart.

Completed
Last Updated: 22 May 2024 13:24 by ADMIN
Created by: Sylvain
Comments: 10
Category: Charts
Type: Feature Request
59

Hi,

I would like to be able to show / hide a serie by clicking to a legend.

Is there a way to do it actually ?

Completed
Last Updated: 11 Oct 2019 08:01 by ADMIN
Created by: James
Comments: 1
Category: Charts
Type: Feature Request
0
Hi there, it would be really nice if there were styling options available for the charts. I know that they styling gets inherited from the Telerik theme, but on the theme builder we can't get what we need without disrupting other UI styles. 

What we are looking for is really just a means to change the legend text color, and other text colors, as well as being able to set a background. 

For instance: 



Through the Telerik theme we would not be able to do this, maybe on one chart, but not different styles for each of the 3 charts. 

Possibly also having the chart to resize as the browser resizes, with an included Delay of 20ms. Just a thought. 
Completed
Last Updated: 04 Jul 2023 13:38 by ADMIN
Release 4.4.0 (07/19/2023) (R3 PI1)
Created by: Datafyer
Comments: 3
Category: Charts
Type: Feature Request
11

It would be helpful to me if this chart type was supported.

https://demos.telerik.com/kendo-ui/range-bar-charts/index

1 2