Completed
Last Updated: 21 Nov 2013 09:04 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 21 Nov 2013 09:04
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - the SelectionMode property results in the toggling off when setting the same value
To reproduce:
-add RadChartView and use the following code:
public Form1()
{
    InitializeComponent();

    radChartView1.SelectionMode = ChartSelectionMode.MultipleDataPoints;
    MessageBox.Show(radChartView1.SelectionMode.ToString());
    radChartView1.SelectionMode = ChartSelectionMode.MultipleDataPoints;
    MessageBox.Show(radChartView1.SelectionMode.ToString());
}
0 comments