WPF TeeChart Rotation
Posted: Fri May 17, 2013 10:03 am
Hello Steema!
I have a problem with rotation in WPF TChart. If the rotation is enabled, the Legend.CheckBoxes property won't work properly.
For example, try to create TChart with the following settings:
And then try to rotate TChart or check/uncheck legend's checkbox. It's impossible to uncheck the legend. And the checkbox reacts for mouse moving during rotation. It is not normal for me.
I have a problem with rotation in WPF TChart. If the rotation is enabled, the Legend.CheckBoxes property won't work properly.
For example, try to create TChart with the following settings:
Code: Select all
Points points = new Points();
points.Add(10);
MyTChart.Series.Add(points);
var rotate = new Steema.TeeChart.WPF.Tools.Rotate();
MyTChart.Tools.Add(rotate);
MyTChart.Legend.CheckBoxes = true;