Unplanned
Last Updated: 08 Jan 2024 14:36 by ADMIN
Created by: fabio
Comments: 2
Category: Charts
Type: Feature Request
6
I would like to be able to use the justified configuration in order to remove the empty spaces from my charts. 
Unplanned
Last Updated: 14 Dec 2020 11:01 by ADMIN
Created by: Chris
Comments: 0
Category: Charts
Type: Feature Request
9

Like in Kendo (here and here) so I can change the cursor for the chart to a pointer when the user hovers the series - I want that to indicate they can click on it (through the SeriesClick event).

---

ADMIN EDIT

 

workaround that you can consider which uses CSS to traverse the chart rendering:

<style>
    /* this will work in the chart below with its settings, axes, title and so on */
    .k-chart g[clip-path] g g g path {
        cursor: pointer;
    }

    /* a very generic selector that will capture just about everything in the plot area of the chart */
    /* Try this if you cannot make a more specific selector like the one above by inspecting the rendered content */
    /*.k-chart path {
        cursor: pointer;
    }*/
</style>

<TelerikChart>
    <ChartSeriesItems>
        <ChartSeries Type="ChartSeriesType.Column" Name="Product 1" Data="@series1Data">
        </ChartSeries>
        <ChartSeries Type="ChartSeriesType.Column" Name="Product 2" Data="@series2Data">
        </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" };
}

---

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: 12 Oct 2020 13:15 by ADMIN
Created by: Ivan
Comments: 0
Category: Charts
Type: Feature Request
6
Like the Kendo one https://demos.telerik.com/kendo-ui/box-plot-charts/index because I need the outliers feature
Unplanned
Last Updated: 30 Sep 2020 06:57 by ADMIN

When I place a Chart in a small container, for example, a div, the labels are cut off and thus unreadable.

===

ADMIN EDIT

===

A possible workaround for the time being is changing the position of the labels so they are not cut off. For example: https://blazorrepl.telerik.com/mHkNkCEC16hMJnTg26.

Unplanned
Last Updated: 19 Oct 2023 19:24 by ADMIN
Created by: Rajesh
Comments: 2
Category: Charts
Type: Feature Request
15
I would like to be able to create small size charts and thus implementing Sparkline Charts like in the Kendo suite would work.
Unplanned
Last Updated: 05 Aug 2020 11:26 by ADMIN
Created by: Datafyer
Comments: 0
Category: Charts
Type: Bug Report
4
Sometimes the chart tooltip goes off the screen. 
Unplanned
Last Updated: 20 Oct 2023 11:10 by Mark
Created by: Bryon
Comments: 2
Category: Charts
Type: Feature Request
9
I want to align my bar chart labels to the left of the chart.
Unplanned
Last Updated: 12 Sep 2023 15:17 by ADMIN
Created by: Bryon
Comments: 5
Category: Charts
Type: Feature Request
14

It would be nice to make the label container less than the width of the element so that it stands out more.

I know that it can be set to different colors and transparent but adjusting the width would be a nice addition as well.

Unplanned
Last Updated: 31 Jan 2024 12:11 by ADMIN
Created by: wu
Comments: 3
Category: Charts
Type: Feature Request
8
Unplanned
Last Updated: 24 Oct 2023 14:55 by ADMIN
Created by: Sylvain
Comments: 4
Category: Charts
Type: Feature Request
14

I would like to visually distinguish a certain element in a series from the others if its value matches a given criteria (for example, value exceeds a threshold). Ideally, I'd want to add a hash to my bars, because I want to keep all items with the same color (I don't want to use the ColorField).

Something similar is available in Kendo: https://demos.telerik.com/kendo-ui/bar-charts/visuals.

Unplanned
Last Updated: 11 Nov 2019 13:28 by ADMIN
Created by: Bill Wolff
Comments: 4
Category: Charts
Type: Feature Request
9
Trying to upgrade an Angular app that uses WijMo charts. It graphs server and web performance data. I can easily make a line or scatter chart but your Blazor component is not very flexible using DateTime on the x axis. I got it to work on a Line but not a ScatterLine. Also, when using the Line with AxisType = Date, I can't get the  BaseUnitStep working. Is there an enumerator for that? It tries to write the x label for every hour over 10 days. 
Unplanned
Last Updated: 26 May 2020 01:01 by ADMIN

 

Hi, I can't figure how to use the Min/Max properties of the ChartCategoryAxis because if I set these properties, the chart disappears.

Please help me.

 

@page "/"

<TelerikChart>

    <ChartSeriesItems>
        <ChartSeries Type="ChartSeriesType.Line" Name="Test" Data="@mesures"
                     Field="@nameof(Mesure.Value)" CategoryField="@nameof(Mesure.Date)" Aggregate="ChartSeriesAggregate.Sum">
        </ChartSeries>
    </ChartSeriesItems>

    <ChartCategoryAxes>
        <!-- This is OK -->
        @*<ChartCategoryAxis BaseUnit="ChartCategoryAxisBaseUnit.Hours" Type="ChartCategoryAxisType.Date" BaseUnitStep="1"></ChartCategoryAxis>*@

        <!-- This isn't : nothing is displayed -->
        <ChartCategoryAxis Min="@MinDate" Max="@MaxDate" BaseUnit="ChartCategoryAxisBaseUnit.Hours" Type="ChartCategoryAxisType.Date" BaseUnitStep="1"></ChartCategoryAxis>
    </ChartCategoryAxes>

</TelerikChart>

@code {

    private DateTime MinDate { get; set; } = new DateTime(2019, 01, 01, 13, 0, 0);
    private DateTime MaxDate { get; set; }   = new DateTime(2019, 01, 01, 17, 0, 0);

    public class Mesure
    {
        public DateTime Date { get; set; }
        public int Value { get; set; }
    }

    public List<Mesure> mesures = new List<Mesure>()
    {
        new Mesure() { Date = new DateTime(2019, 01, 01, 13, 0, 0), Value = 1 },
        new Mesure() { Date = new DateTime(2019, 01, 01, 14, 0, 0), Value = 2 },
        new Mesure() { Date = new DateTime(2019, 01, 01, 14, 30, 0), Value = 3 },
        new Mesure() { Date = new DateTime(2019, 01, 01, 14, 35, 0), Value = 4 },
        new Mesure() { Date = new DateTime(2019, 01, 01, 15, 0, 0), Value = 5 },
        new Mesure() { Date = new DateTime(2019, 01, 01, 16, 0, 0), Value = 6 },
        new Mesure() { Date = new DateTime(2019, 01, 01, 17, 0, 0), Value = 7 },
    };
}


Unplanned
Last Updated: 27 Sep 2019 06:41 by ADMIN
Created by: Datafyer
Comments: 0
Category: Charts
Type: Feature Request
12

I have a page where I am displaying a chart and associated data in a grid below.

Being able to range select in the chart like in the asp.net core link below would offer a much better user experience.
That way the selected range could be specifically targeted in the grid data below the chart.

https://demos.telerik.com/aspnet-core/chart-api/selection

Unplanned
Last Updated: 09 Aug 2019 05:14 by ADMIN
Created by: Mark Stevens
Comments: 0
Category: Charts
Type: Feature Request
22
1 2 3