Declined
Last Updated: 20 Aug 2026 13:07 by ADMIN
ADMIN
Dimitar
Created on: 12 Jan 2016 11:06
Category:
Type: Bug Report
0
FIX. RadDropDownList - setting the shape of a label element in RadChartView, breaks the selection in RadDropDownList.
To reproduce:
- Add pie chart and drop down list with some items to a form.
- Then use the following code:

Private Sub RadForm1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Dim series As New PieSeries

    series.DataPoints.Add(New PieDataPoint(50, "test"))
    series.DataPoints.Add(New PieDataPoint(50, "test2"))

    series.ShowLabels = True

    RadChartView1.Series.Add(series)

    TryCast(RadChartView1.Series(0).Children(0), PiePointElement).BackColor = Color.Red
    TryCast(RadChartView1.Series(0).Children(1), PiePointElement).BackColor = Color.Blue
End Sub

Private Sub RadChartView1_LabelFormatting(sender As Object, e As ChartViewLabelFormattingEventArgs) Handles RadChartView1.LabelFormatting
    e.LabelElement.Shape = New OfficeShape(True)
End Sub

Workaround:
e.LabelElement.SuspendPropertyNotifications()
e.LabelElement.Shape = New OfficeShape(True)
e.LabelElement.ResumePropertyNotifications()


1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 20 Aug 2026 13:07

Hi,

This behavior was originally reported ten years ago, and we haven’t noticed significant demand or follow-up from the community since then. Also, there is a feasible workaround that can be applied. As a result, we currently plan to prioritize improvements that have a broader impact and are more widely requested.

This ticket is marked as "Declined". If this limitation is still affecting your scenario, please share additional context or use cases. 

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Modernizing a WinForms application? Use the AI-powered WinForms Converter to simplify migration to Telerik UI for WinForms.