Unplanned
Last Updated: 31 May 2024 09:55 by Alfonso
Created by: Alfonso
Comments: 0
Category: Charts
Type: Feature Request
2

I would like to synchronize several Charts, so when I move the mouse through one of them, the other two Charts show crosshairs at the same position as the first hovered Chart.

===

ADMIN EDIT

===

Prerequisite: Chart Crosshair

Unplanned
Last Updated: 12 Jun 2024 11:35 by ADMIN
Created by: Juan Angel
Comments: 2
Category: Charts
Type: Feature Request
1

This functionality would be very useful for data analysis.

Moving the cursors within the chart itself, allows to define a range within the series, being able to offer useful data.

 

Examples:

Cursors - Multisim Live            Cursors - Multisim Live

Unplanned
Last Updated: 27 Mar 2024 13:42 by Chance Robertson
Created by: Chance Robertson
Comments: 0
Category: Charts
Type: Feature Request
1
I would like to use an event that fires when the user clicks on a Marker in the chart. I would like to get information on the clicked Marker so that I can customize its configuration settings, such as Color, Size, and other. 
Unplanned
Last Updated: 25 Dec 2023 12:34 by Fabian
Created by: Fabian
Comments: 0
Category: Charts
Type: Feature Request
2

Hello,

I want to connector to be directly connected with the chart. 

See https://dojo.telerik.com/AkEHuSiq/3 for reference.


Thank you.

Declined
Last Updated: 18 Jan 2024 09:39 by ADMIN
Created by: Mark
Comments: 7
Category: Charts
Type: Feature Request
6

I would like to be able to stack series on a range chart. Currently the best hack recommended by Telerik is to show two charts on top of one another, with no interactivity or legends, https://blazorrepl.telerik.com/wHPclTFm28WuoSOp57.

Source: Is it possible to 'stack' series in a Range Column Chart? in UI for Blazor | Telerik Forums

 

Thank you

Unplanned
Last Updated: 30 Oct 2023 13:40 by Adam
Created by: Adam
Comments: 0
Category: Charts
Type: Feature Request
1

Enhance the Chart date axis label format, so that it's culture-aware in globalization scenarios, and there is no need to set ChartCategoryAxisLabels Format explicitly.

In the meantime, here are a few workarounds for the case when the ChartCategoryAxis BaseUnit is Days and the Chart shows MM/dd labels even to non-US users.

  • The easier option is to use a standard format string:
<ChartCategoryAxis BaseUnit="ChartCategoryAxisBaseUnit.Days"
                    Type="ChartCategoryAxisType.Date">
    <ChartCategoryAxisLabels Format="d" />
</ChartCategoryAxis>
  • The above contains the year, so another option is MonthDayPattern:
<ChartCategoryAxis BaseUnit="ChartCategoryAxisBaseUnit.Days"
                    Type="ChartCategoryAxisType.Date">
    <ChartCategoryAxisLabels Format="@( CultureInfo.CurrentUICulture.DateTimeFormat.MonthDayPattern )" />
</ChartCategoryAxis>

Razor

<ChartCategoryAxis BaseUnit="ChartCategoryAxisBaseUnit.Days"
                    Type="ChartCategoryAxisType.Date">
    <ChartCategoryAxisLabels Format="@( GetShortDayMonthPattern() )" />
</ChartCategoryAxis>

C#

    private string GetShortDayMonthPattern()
    {
        var mdp = CultureInfo.CurrentUICulture.DateTimeFormat.MonthDayPattern;
        var separator = CultureInfo.CurrentUICulture.DateTimeFormat.DateSeparator;
        string pattern = mdp.IndexOf("M") < mdp.IndexOf("d") ? $"MM{separator}dd" : $"dd{separator}MM";

        return pattern;
    }

Regards, Author nickname Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources!
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

Unplanned
Last Updated: 04 Oct 2023 07:11 by ADMIN
Created by: Dev
Comments: 1
Category: Charts
Type: Feature Request
2

In Kendo-React chart i can set the property "maxDivision" like this:

 <ChartCategoryAxis>
     <ChartCategoryAxisItem      
         maxDivisions={30}
         name="categoryAxisName"
         categories={categories}
...

and the chart will show only 30 dates in the displayed range, even if zoom in. 

Is there a way for doing the same thing in Blazor Chart? 

I tryed Type"fit" and MaxDateGroup but i need to show always all the points and this isnot a good solution.
I tryed ChartCategoryAxisLabels Step="number_of_labels_to_render" but when i zoom in the chart
will not show other dates.

Regards,

Davide

Unplanned
Last Updated: 13 Jul 2023 10:59 by Ilan
So the one thing that is missing for me from the zoom functionality is an event that tells me the selected values

i.e here I would like it to return: 2023/06/11 & 2023/06/18 
Unplanned
Last Updated: 26 Jun 2023 08:24 by MJ
Created by: MJ
Comments: 0
Category: Charts
Type: Feature Request
1

I want to be able to set different colors for the separate series items.

===

ADMIN EDIT

===

A possible option for the time being is to add each item in a dedicated series where you can specify its color.
Unplanned
Last Updated: 15 Mar 2023 13:27 by Chris
Created by: Chris
Comments: 0
Category: Charts
Type: Feature Request
1
Support for ObservableCollection - allow the Chart component to use ObservableCollection data.
Unplanned
Last Updated: 09 Mar 2023 15:24 by Matt
Created by: Matt
Comments: 0
Category: Charts
Type: Feature Request
2
I would like to get an event that fires when the user click in the plot area of the Chart. 
Unplanned
Last Updated: 06 Mar 2023 14:07 by Werdna
Created by: Werdna
Comments: 0
Category: Charts
Type: Feature Request
3

Please see the links below to see examples of the scale break feature I'm looking for: Scale Breaks - ChartView - Telerik UI for WinForms.

https://docs.telerik.com/devtools/aspnet-ajax/controls/chart/features/scale-breaks

I know about Logarithmic Axis as well, but it's not exactly what I'm looking for.

Unplanned
Last Updated: 21 Feb 2023 07:15 by Ilan
Created by: Ilan
Comments: 0
Category: Charts
Type: Feature Request
2
I want to be able to specify and configure ErrorBars for the series like in Kendo UI for jQuery.
Unplanned
Last Updated: 13 Feb 2023 12:27 by Heiko
Created by: Heiko
Comments: 0
Category: Charts
Type: Feature Request
1
I would like to get an event that fires when the chart renders. 
Unplanned
Last Updated: 13 Feb 2023 12:26 by Heiko
Created by: Heiko
Comments: 0
Category: Charts
Type: Feature Request
1
I would like to be able to set default global options per series type with the SeriesDefault configuration. 
Unplanned
Last Updated: 22 Dec 2022 14:26 by Tanner
Created by: Tanner
Comments: 0
Category: Charts
Type: Feature Request
2
I want to be able to set a border-radius to the plot area to round the edges. 
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.

Unplanned
Last Updated: 04 Nov 2022 17:25 by Christopher
Created by: Christopher
Comments: 0
Category: Charts
Type: Feature Request
3
Please add Funnel chart type such as the one available in Kendo.
Unplanned
Last Updated: 04 Nov 2022 17:29 by ADMIN
Created by: Christopher
Comments: 2
Category: Charts
Type: Feature Request
8
This is a feature request....please add box and whisker plot & sankey charts to your blazor and/or asp.net core chart controls.
1 2 3 4