Unplanned
Last Updated: 10 Feb 2022 17:38 by ADMIN

Is it possible to change plot area background color on charts so that every second line is a different color.

I have attached a image with the background color look.

---

ADMIN EDIT

The current request targets the ability to color the whole plot area in alternating way. If you need to only color a certain range of the plot area, you may take a look at the Plot bands feature request.

While the most common use case is to alter the background color based on the major plot area units, we'd like to gather your feedback on how you'd expect the feature to behave - allow color altering on major units, minor units or custom steps.

---

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: 23 Nov 2020 08:03 by ADMIN

I would like to be able to control the rendering of the Lines on the X and Y axis for the Chart. For example, I would like to be able to hide them, change their color, etc. Currently, such an option is available for the stock chart with the following nested tags: StockChartCategoryAxisLine and StockChartValueAxisLine.

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: 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: 06 Oct 2021 19:09 by ADMIN
Created by: Nikolas
Comments: 0
Category: Charts
Type: Feature Request
2

I would like a polar area chart.

Instead of

I want to have circular lines:

Unplanned
Last Updated: 24 Aug 2021 14:59 by ADMIN
Created by: Kyle
Comments: 0
Category: Charts
Type: Feature Request
2
Expose Panes Functionality from the Chart Engine
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. 
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: 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: 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: 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.

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: 03 Jan 2022 14:55 by ADMIN
Created by: Andrew
Comments: 1
Category: Charts
Type: Feature Request
1
The current version of the tooltip template context contains the information for the series color, but a particular data point might have a different color. Exposing such an option will allow better customization of the tooltip.
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: 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: 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: 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: 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!
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.