With latest TChart version (Steema TeeChart for .NET 2014 4.1.2014.12150) I've got a compiler message "Legend Checkbox property deprecated from TeeChart.WPF.dll" and all checkboxes from all legends disappeared.
What can I do if I need checkboxes near series in the legend??
Search found 14 matches
- Wed Dec 24, 2014 1:39 pm
- Forum: .NET
- Topic: Legend Checkbox property deprecated from TeeChart.WPF.dll
- Replies: 1
- Views: 4398
- Wed Dec 24, 2014 6:23 am
- Forum: .NET
- Topic: WPF Area series crash
- Replies: 5
- Views: 7977
Re: WPF Area series crash
With previous version from August 2014 (Steema TeeChart for .NET 2014 4.1.2014.08120) it works well. You can check it easily.
- Tue Dec 23, 2014 12:49 pm
- Forum: .NET
- Topic: WPF Area series crash
- Replies: 5
- Views: 7977
Re: WPF Area series crash
Thank you for fast replay. This code worked in previous version as well. But after TChart upgrading to last version we've got an exception. Your changes in code helps to avoid exception, but for our working project it will not work because TChart with colored area is created in one module (interface...
- Tue Dec 23, 2014 5:55 am
- Forum: .NET
- Topic: WPF Area series crash
- Replies: 5
- Views: 7977
WPF Area series crash
Hello! After upgrading to the version 4.1.2014.12150 (Microsoft .NET Framework 4.0) WPF area series doesn't work correctly (program exception). Please see attached sample. If you comment line "area.Color = Colors.Aqua;" program will work, but with this line you will see exception. It's not possible ...
- Tue Aug 19, 2014 10:15 am
- Forum: .NET
- Topic: WPF. SubChart. Performance problems.
- Replies: 3
- Views: 6563
Re: WPF. SubChart. Performance problems.
Ok. I've attached a simple example where the problem appears. Just add to the project a reference to the latest version of TeeChart.WPF, run application and press the button 'button'. Then application works very slowly and processor is busy too much.
- Tue Aug 19, 2014 9:48 am
- Forum: .NET
- Topic: SubChart. Exporting to XAML
- Replies: 5
- Views: 9485
Re: SubChart. Exporting to XAML
It works. But the problem is that if I don't hide gradient and set subChart.Panel.Color to transparent the picture on the screen and in the exported xaml are not the same.Could you tell us if previous code works in your end?
It's not normal for me.
- Mon Aug 18, 2014 10:55 am
- Forum: .NET
- Topic: WPF. SubChart. Performance problems.
- Replies: 3
- Views: 6563
WPF. SubChart. Performance problems.
Hello steema! I have terrible performance problems with the latest version of WPF TChart if I use SubChart. Try to execute the following code and resize window with TChart to reproduce that: Code: Select all SubChartTool subChartTool = new SubChartTool(); MyTChart.Tools.Add(subChartTool); TChart sub...
- Mon Aug 18, 2014 9:22 am
- Forum: .NET
- Topic: SubChart. Exporting to XAML
- Replies: 5
- Views: 9485
Re: SubChart. Exporting to XAML
Hello steema! I downloaded the last release of WPF TChart and checked if my problem is solved. Now I can see a subchart in the exported xaml, but it has wrong background. I set transparent color to the subchart panel's background (subChart.Panel.Color = Colors.Transparent;) but exported xaml contain...
- Thu May 22, 2014 7:19 am
- Forum: .NET
- Topic: WPF TCHart selection border
- Replies: 1
- Views: 4509
WPF TCHart selection border
Hello steema!
I'm testing the latest version of WPF TChart and I have a question. Is it normal that the selection area has no borders? In preveous versions (v4.1.2013.7302 for example) it has.
I'm testing the latest version of WPF TChart and I have a question. Is it normal that the selection area has no borders? In preveous versions (v4.1.2013.7302 for example) it has.
- Thu May 22, 2014 7:11 am
- Forum: .NET
- Topic: WPF TChart. Bottom axis title problem.
- Replies: 1
- Views: 4440
WPF TChart. Bottom axis title problem.
Hello steema! I'm using the latest version of WPF TChart. In this version Bottom axis title is located over zero mark when series is empy. MyTChart.Aspect.View3D = false; Bar bar = new Bar(); MyTChart.Series.Add(bar); MyTChart.Axes.Bottom.Title.Text = "Text"; It looks like this: axistitle.jpg Adding...
- Thu May 22, 2014 6:24 am
- Forum: .NET
- Topic: WPF TChart with rotation. Exception after double-click.
- Replies: 3
- Views: 6889
Re: WPF TChart with rotation. Exception after double-click.
I'm using TChart v4.1.2013.7302.
I've tried to reproduce the bug in the latest version. And it works fine.
Excuse me for the worry.
I've tried to reproduce the bug in the latest version. And it works fine.
Excuse me for the worry.
- Wed May 21, 2014 9:07 am
- Forum: .NET
- Topic: WPF TChart with rotation. Exception after double-click.
- Replies: 3
- Views: 6889
WPF TChart with rotation. Exception after double-click.
Hello steema! I have following exception when I do double-click on TChart with Rotate Tool: MyTChart.Series.Add(new Bar()); MyTChart.Tools.Add(new Rotate()); System.ArgumentNullException: Value cannot be null. Parameter name: adorner at System.Windows.Documents.AdornerLayer.Remove(Adorner adorner) a...
- Thu May 15, 2014 4:57 am
- Forum: .NET
- Topic: Double-click on SubChart error
- Replies: 1
- Views: 4126
Double-click on SubChart error
Hello steema! I have an InvalidOperationException "Every RoutedEventArgs must have a non-null RoutedEvent associated with it." on double-click on subchart area. To reproduce it create TChart with SubChartTool Bar bar = new Bar(); bar.Marks.Visible = false; bar.Add(5); bar.Add(7); MyTChart.Series.Add...
- Thu May 15, 2014 4:51 am
- Forum: .NET
- Topic: SubChart. Exporting to XAML
- Replies: 5
- Views: 9485
SubChart. Exporting to XAML
Hello steema! I use SubChartTool to show SubTChart over the main TChart via the code like this: Bar bar = new Bar(); bar.Marks.Visible = false; bar.Add(5); bar.Add(7); MyTChart.Series.Add(bar); SubChartTool subChartTool = new SubChartTool(); MyTChart.Tools.Add(subChartTool); TChart subChart = subCha...