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.
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: 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.
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: 28 Jan 2021 10:05 by ADMIN
Release 2.15.0
I'm using version 1.1 of the UI for Blazor and have leveraged several different types of charts.  I now need to add click events on different parts of the chart so I can navigate to a drilldown page.  How can I accomplish this?
Completed
Last Updated: 06 Nov 2020 09:41 by ADMIN
Release 2.19.0

The context DataItem is null for subsequent ChartSeries. It receives the correct object for the first ChartSeries, but for the rest is null. 

 

<Admin Edit>

A workaround, for the time being, would be to remove the Template and let the Tooltip display the default value, which will be correct.

</Admin Edit>

Reproduction code:

 

<TelerikChart>
    <ChartTitle Text="Unrecoverable Errors Per Minute vs. Signal Level" />
    <ChartCategoryAxes>
        <ChartCategoryAxis Type="@ChartCategoryAxisType.Category" />
    </ChartCategoryAxes>
    <ChartValueAxes>
        <ChartValueAxis>
            <ChartValueAxisLabels Visible="true" />
        </ChartValueAxis>
    </ChartValueAxes>

    <ChartTooltip Visible="true">
        <Template>
            @{
                var data = context.DataItem as ModelData;
                <div class="card" style="font-size: 0.8rem; color: black">
                    <span>@($"{data.Value}")</span>
                    <span>@($"{data.Type}")</span>

                </div>
            }
        </Template>
    </ChartTooltip>

    <ChartSeriesItems>
        <ChartSeries Type="ChartSeriesType.Line"
                     Data="@ChartData1"
                     CategoryField="@nameof(ModelData.Type)"
                     Field="@nameof(ModelData.Value)">
        </ChartSeries>
        <ChartSeries Type="ChartSeriesType.Line"
                     Data="@ChartData2"
                     CategoryField="@nameof(ModelData.Type)"
                     Field="@nameof(ModelData.Value)">
        </ChartSeries>
        <ChartSeries Type="ChartSeriesType.Line"
                     Data="@ChartData3"
                     CategoryField="@nameof(ModelData.Type)"
                     Field="@nameof(ModelData.Value)">
        </ChartSeries>
    </ChartSeriesItems>

</TelerikChart>

@code {
    public class ModelData
    {
        public string Type { get; set; }
        public double Value { get; set; }
    }

    public List<ModelData> ChartData1 = new List<ModelData>() { new ModelData() { Type = "S1", Value = 1 } };
    public List<ModelData> ChartData2 = new List<ModelData>() { new ModelData() { Type = "S2", Value = 5 } };
    public List<ModelData> ChartData3 = new List<ModelData>() { new ModelData() { Type = "S3", Value = 9 } };
}

 

Completed
Last Updated: 11 Sep 2020 04:26 by ADMIN
Release 2.17.0
Created by: Cheryl
Comments: 5
Category: Charts
Type: Bug Report
15

Hi!

I'm building a Blazor Component using your TelerikChart.  To build my chart, I'm dynamically inserting the series name and the series data, which is pulled from a list.  I also have a button on the page that changes the dataset (last month, this month, next month, etc).  The button will rebuild the list of names and data, and Blazor will build the chart with a 'foreach' entry in the ChartSeriesItems section of the Chart Component.

The problem is that the Items are not cleared each time.  When I click the button, I'm getting previous values. In the example below, I have 3 data sets.  The first has 4 items, the second has 8 and the third has 6.  If the user clicks the second, showing all 8, then clicks the first, the chart will show the new 4, and the previous 5-8 from the second set.  

 My chart description in HTML is:

... 

<ChartSeriesItems> @foreach(Tuple<string, object[]> t in myData) { <ChartSeries Type="ChartSeriesType.Column" Name=@t.Item1 Data=@t.Item2 /> } </ChartSeriesItems>

... 

I have checked my data through debugging to ensure that the myData variable is correct (i.e. when I click the first data, it only has 4 items).  However, when the chart displays, it shows 8 items. 

Is there a CLEARDATA method or something I can call on the Chart to ensure that the data is reset each time?  I see that there is a Clear() in JavaScript, but I'm writing in only Blazor and C#, with no JavaScript.

I've attached the .razor page for your reference.  (As this is my test code, I'm using random number generation to get the data.)

 

Thank you so much for your help!!

-Cheryl Simpson 

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: 10 Jun 2020 10:03 by ADMIN
Release 2.15.0
Created by: Bryon
Comments: 2
Category: Charts
Type: Feature Request
35

The idea is to ensure labels don't render on top of each other. If series values are close to each other, labels start overlapping. Having tooltips will let me remove the labels.

Example:

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: 25 Sep 2019 08:37 by ADMIN
Release 2.1.0
Created by: Mark Stevens
Comments: 2
Category: Charts
Type: Feature Request
1
Do you have any timelines for adding additional chart types to bring your charting functionality in line with your other platforms (ASP.NET Core charts for instance) I'm using scatter/bubble and have to use competitors charts to reproduce this functionality.
Completed
Last Updated: 25 Sep 2019 08:36 by ADMIN
Release 2.1.0
Created by: Bill
Comments: 0
Category: Charts
Type: Feature Request
5
Please add the capability to provide XY scatter chart data plots into the Charts toolset.
1 2