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

Duplicated
Last Updated: 09 Aug 2022 13:33 by ADMIN

See attached image. I want an option to change position on ticks, like in Kendo (see here).

I can't find an option in docs to move the axis position.

Currently, I get the desired result using SyncFusion Chart Component, attribute LabelPlacement allow selection between OnTicks and BetweenTicks option.

Declined
Last Updated: 12 Jul 2022 08:13 by ADMIN
Created by: Brad
Comments: 1
Category: Charts
Type: Feature Request
1

Currently, scatter line plots do not support the stepped line style. This is something that would be hugely beneficial to us in our heavy utilization of scatter line plots with time series data.

Declined
Last Updated: 05 Jul 2022 16:09 by ADMIN
Created by: Brad
Comments: 5
Category: Charts
Type: Feature Request
3

It would be fantastic to be able to visualize boolean data on a time based chart. We have a lot of time series data, and a good bit of it is boolean. It would be very beneficial to be able to plot that data along side our numeric data to provide context to both. 

Example (blue/green bar at bottom of chart):

Warm storage now available in Azure Time Series Insights - Microsoft Tech  Community

Duplicated
Last Updated: 27 Jun 2022 15:15 by ADMIN
Created by: Brad
Comments: 1
Category: Charts
Type: Feature Request
4

I would love to see the ability to put "pins" or "markers" for events on a time based chart. A lot of the work I'm doing with charts revolves around IoT, so we see a lot of value based data that needs to be contextualized with events. 

Example:

Event Labeling in Charts- Possible? - Microsoft Power BI Community

Duplicated
Last Updated: 27 Jun 2022 12:06 by ADMIN
Created by: Brad
Comments: 1
Category: Charts
Type: Bug Report
3

The additional functionality of the stock chart (crosshairs, navigator)  fits our needs very well, but our data is not currency formatted. As far as we have found, we have not seen a way to remove currency as a default format. I'm not sure if this is a bug, or intended functionality; but it's preventing us from rolling charts with that extended functionality. 

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.

Unplanned
Last Updated: 27 Mar 2022 09:05 by Andrew

---

ADMIN EDIT

Screen recording attached below, code to reproduce  it too.

---

Duplicated
Last Updated: 16 Mar 2022 11:44 by ADMIN
Created by: Chris1108
Comments: 0
Category: Charts
Type: Feature Request
18

Is there any plan to add an Org Chart as a control?

For reference - Kendo jQuery Org Chart.

The Org Chart should display the reports to / is a manager of relation (1:0,m) between employees and/or managers graphically.

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.

---

Completed
Last Updated: 02 Feb 2022 21:01 by ADMIN
Release 3.1.0
Created by: Mark Stevens
Comments: 0
Category: Charts
Type: Feature Request
3
At the moment, the charts always have a flat look, but I want the rounded (gradient) look that you get when you don't reference the theme (see attached).
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.
Unplanned
Last Updated: 07 Jan 2022 21:18 by Edward
Created by: Emil
Comments: 1
Category: Charts
Type: Feature Request
5
I would like to control the font of the value axis labels.
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: 08 Dec 2021 10:12 by ADMIN
Cannot remove the last series of a dynamically created chart
Completed
Last Updated: 02 Dec 2021 14:51 by ADMIN
Release 2.30.0
Created by: Kelly
Comments: 7
Category: Charts
Type: Feature Request
25
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: 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: 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.
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: 05 Oct 2021 11:23 by ADMIN
The Chart does not render correctly when Stack100 is applied to the Series and it has only one value per series. When the value for the first series is greater than the value for the second series the rendering does not start from 0% to 100%, but from a percentage above 0%.