WPF TeeChart. Export ColorGrid to xaml bug.
Posted: Wed Jul 31, 2013 10:22 am
Hello steema!
I have another problem with exporting WPF TChart to xaml.
I've created TChart with ColorGrid:
But if I export this TChart to xaml I will have incorrect result. The exported version is not colored properly. Just compare following screenshots:
Source Result
I have another problem with exporting WPF TChart to xaml.
I've created TChart with ColorGrid:
Code: Select all
ColorGrid colorGrid1 = new ColorGrid();
MyTChart.Series.Add(colorGrid1);
MyTChart.Aspect.Chart3DPercent = 0;
colorGrid1.Add(0, 0, 0);
colorGrid1.Add(1, 1, 1);
Source Result