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: 17 Apr 2024 11:35 by Michael
Created by: Michael
Comments: 0
Category: Charts
Type: Bug Report
1
The Chart Tooltip does not respond to the applied Globalization settings. In the Chart Globalization demo change the culture to German, hover over a data point of the Line series, and note that the decimal separator is a dot (".") and not a comma (",") as expected. 
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: 11 Dec 2023 09:47 by Fabian
I cant modify the appearance of the chart conditionally if I rely on the drill level. 
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: 14 Sep 2023 07:43 by Peili

To reproduce the problem, hover over the last value of the series. While the Tooltip enters, it causes horizontal and vertical scroll and flickers. Then, it is positioned correctly.

The issue is better observed if you increase the transition speed of the Tooltip wrapper.

Reproduction: https://blazorrepl.telerik.com/cREDloaV42j7Z19G13.

===

ADMIN EDIT

===

A possible workaround for the time being is to alter or stop the Tooltip animation with CSS. Here is a runnable sample demonstrating the approach: https://blazorrepl.telerik.com/QnEjvIOC04hXA6W709

Unplanned
Last Updated: 04 Sep 2023 14:57 by Danish

The Scatterline Chart is flipped upside down if the Height is under 100px.

Reproduction

1. Run this REPL
2. Set the height of the Chart to 90px
3. The chart is rendered upside down
Unplanned
Last Updated: 25 Aug 2023 10:21 by ADMIN
Created by: Danish
Comments: 1
Category: Charts
Type: Bug Report
0

Hi,

 

We are implementing chart control in our application and we noticed spikes in the chart when we are using time series that contains UTC timestamps with milliseconds that are divisible by 100. The issue is reproduceable on Telerik REPL as well and I am attaching the REPL link as well

 

Telerik REPL - Chart

 

I was wondering if you guys can provide some insight from your end as to whether that is indeed a bug and some work arounds and timeline on when we can resolution from your end.

 

Cheers,

 

Danish Shahid

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: 08 Jun 2023 13:42 by Rishi

Currently, the Chart does not plot anything when zero values are included in the dataset on a logarithmic axis.

Reproduction: https://blazorrepl.telerik.com/cdYgkWFH23W9PVon54

At least the "Success" data should be plotted.

Unplanned
Last Updated: 23 May 2023 15:35 by jordan

I am trying to programmatically update the Chart data during runtime to display live data. The Chart does not seem to refresh and show this change in the viewport.

I've tried:

  • using an Observable Collection;
  • creating a new collection instance and reassigning the Data parameter;
  • calling the Refresh method;

The result is the same - the Chart does not react to the data change. This applies to other component parameters as well.

===

ADMIN EDIT

===

A possible workaround for the time being is forcing the Chart to re-render. To do so, you may wrap the Chart in a custom component and call StateHasChanged() in this component when the data is updated.

Here is a runnable sample: https://blazorrepl.telerik.com/wxEzwxbJ24WDjnMp11.
Completed
Last Updated: 18 Apr 2023 13:58 by ADMIN
Release 4.2.0 (04/26/2023)

Hi,

Just a bug I have found. I have found something similar before with the DateTime format of a category axis.

Please note the single lowercase 't' in the below appears to be being interpreted by the compiler as 'time' identifier (AM or PM). In this case, it is printing on the chart label as 'a'.

<ChartValueAxes>
     <ChartValueAxis AxisCrossingValue="@AxisCrossingValue">
          <ChartValueAxisLabels Format="@("{0}" + " a b c d e f g h i j k l m n o p q r s t u v w x y z")"></ChartValueAxisLabels> 
    </ChartValueAxis>
</ChartValueAxes>


I discovered this as my original unit was 'Count' which was being displayed at runtime on the chart as 'Couna'.
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. 
1 2 3 4 5 6