Completed
Last Updated: 24 Jan 2015 12:04 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 14 May 2014 07:32
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - ChartTrackballController does not display correctly the vertical line across the chart plot area when the ShowLegend property is set to true
To reproduce:
Add a RadChartView and use the following code:

public Form1()
{
    InitializeComponent();

    this.radChartView1.ShowTrackBall = true;
    this.radChartView1.ShowLegend = true;
    Random rand = new Random();
    var lineSeries = new LineSeries();
    for (int i = 0; i < 1000; i++)
    {
        lineSeries.DataPoints.Add(new CategoricalDataPoint(i, rand.Next(0, rand.Next(5, 20))));
    }
    radChartView1.Series.Add(lineSeries);
}

Workaround: change the LegendPosition:
this.radChartView1.ChartElement.LegendPosition = LegendPosition.Bottom;


Attached Files:
0 comments