Completed
Last Updated: 03 Jan 2017 12:58 by ADMIN
ADMIN
Dimitar
Created on: 05 Dec 2016 09:30
Category: ChartView
Type: Bug Report
2
FIX. RadChartView - the IsVisible property of the label element is not respected
To reproduce:

private void RadChartView1_LabelFormatting(object sender, ChartViewLabelFormattingEventArgs e)
{
    var dataPoint = e.LabelElement.DataPoint as CategoricalDataPoint;
    if (dataPoint != null)
    {
         e.LabelElement.IsVisible = false;
    }
}

Workaround:
private void RadChartView1_LabelFormatting(object sender, ChartViewLabelFormattingEventArgs e)
{
    var dataPoint = e.LabelElement.DataPoint as CategoricalDataPoint;
    if (dataPoint != null)
    {
        e.LabelElement.Text = "";
    
    }
}


0 comments