Unplanned
Last Updated: 30 Jan 2024 08:29 by Sreeju
Created by: Sreeju
Comments: 0
Category: Chart
Type: Feature Request
1

Feature request for adding a custom class to the label text for the items in the Telerik UI Chart.

The desired result is the labels to receive and apply CSS styles.

Unplanned
Last Updated: 15 Jan 2024 09:57 by Darren
Created by: Darren
Comments: 0
Category: Chart
Type: Feature Request
1

By design, the axisDefaults configuration of the Kendo UI for jQuery Chart allows you to set the rotation of the labels to "auto":

axisDefaults: {
    ...
    labels: {
      rotation: "auto"
    },
  }

//OR

axisDefaults: {
    ...
    labels: {
      rotation: {
        angle: "auto"
      }
    },
  }

At this stage, when using Telerik UI for ASP.NET Core Chart, the Rotation() method does not accept a string value. Also, the Angle() option accepts only a double value. Is it possible to implement an additional overload that allows setting the labels rotation to "auto"?

For example:

.AxisDefaults(ad => ad.Labels(l => l.Rotation("auto")))

Or

.AxisDefaults(ad => ad.Labels(l => l.Rotation(r => r.Angle("auto"))))

Unplanned
Last Updated: 30 Jan 2023 16:27 by Minas

I need the Chart series to be able to use a value of the Model to get their names instead of it always being a manually configured string.

Unplanned
Last Updated: 04 Nov 2022 13:22 by CHIHPEI
Created by: CHIHPEI
Comments: 0
Category: Chart
Type: Feature Request
1

At this stage, the BaseUnit() method of the CategoryAxis configuration does not provide "Milliseconds" option. Is it possible to include it?

Unplanned
Last Updated: 16 Jul 2021 08:12 by ADMIN
Created by: Warren
Comments: 0
Category: Chart
Type: Feature Request
1

Please reference the support ticket number:

1527560

The radar chart needs support for 2 CategoryAxis similar to the line and column chart.  In the ticket above, I have shared a screenshot of how the radar chart would look like. Due to confidential reasons, I am not sharing it on the public Feedback portal.

 

Unplanned
Last Updated: 20 Jan 2020 09:46 by ADMIN
Created by: Dmitry
Comments: 2
Category: Chart
Type: Feature Request
1

Hello, 

Using Donut Chart with provided option for zooming and panning doesn't change appearance. 

 

  @(Html.Kendo().Chart()
        .Name("tagChart")
        .ChartArea(chartArea => chartArea
            .Background("transparent").Height(1200).Width(1200))

        .Title(title => title
            .Text("Dicom Tags")
            .Position(ChartTitlePosition.Bottom)
        )
        .Legend(legend => legend
            .Visible(false)
        )
        .SeriesDefaults(series =>
            series.Donut().StartAngle(15)
        ).Zoomable(z => z.Mousewheel(true))
        .Pannable(true)

Is any way to get it working? 

Thanks

       

Unplanned
Last Updated: 23 Jan 2020 10:56 by ADMIN
Created by: David
Comments: 1
Category: Chart
Type: Feature Request
1

As mentioned in this feature request for area-range chart series: "having area 'scatter' support, such as 'scatterArea', and 'scatterAreaRange', like the existing 'scatterLine', is also desirable".

Please see this forum post for details.

Unplanned
Last Updated: 20 Feb 2019 08:06 by ADMIN

For computations in a custom aggregate function it would be very helpful to have the start and end DateTimes for the current category at hand.  Right now the category parameter just provides a single DateTime which is the start DateTime of the category.  The end DateTime can only be calculated with a workaround provided by Tsvetina

(see this ticket: https://www.telerik.com/account/support-tickets/view-ticket/1386149)