Search found 7 matches
- Wed Apr 21, 2010 6:09 am
- Forum: .NET
- Topic: WPF TChart Legend bug
- Replies: 1
- Views: 2360
WPF TChart Legend bug
If WPF TChart has a legend and I try to assign TChart small dimensions I get this exception System.ArgumentException was unhandled Message=Height must be non-negative. Source=WindowsBase StackTrace: at System.Windows.Rect.set_Height(Double value) at Steema.TeeChart.WPF.Legend.ResizeChartRect(Rect& r...
- Tue Apr 06, 2010 12:03 pm
- Forum: .NET
- Topic: Bug in WPF 3.5.3700.30575 (no in 3.5.3498.27368!)
- Replies: 4
- Views: 3826
Re: Bug in WPF 3.5.3700.30575 (no in 3.5.3498.27368!)
Hello Narcís!
I need each bar with different color, so your workaround is not useful for me.
Thanks for you care, we shall wait bug fix
I need each bar with different color, so your workaround is not useful for me.
Thanks for you care, we shall wait bug fix
- Tue Apr 06, 2010 11:16 am
- Forum: .NET
- Topic: Bug in WPF 3.5.3700.30575 (no in 3.5.3498.27368!)
- Replies: 4
- Views: 3826
Re: Bug in WPF 3.5.3700.30575 (no in 3.5.3498.27368!)
Narcís!
For bug reproduce only change
histogram1.FillSampleValues();
to this code
histogram1.Add(10, 10, string.Empty, Colors.Beige);
histogram1.Add(20, 20, string.Empty, Colors.Beige);
Regards
For bug reproduce only change
histogram1.FillSampleValues();
to this code
histogram1.Add(10, 10, string.Empty, Colors.Beige);
histogram1.Add(20, 20, string.Empty, Colors.Beige);
Regards
- Tue Apr 06, 2010 6:00 am
- Forum: .NET
- Topic: Bug in WPF 3.5.3700.30575 (no in 3.5.3498.27368!)
- Replies: 4
- Views: 3826
Bug in WPF 3.5.3700.30575 (no in 3.5.3498.27368!)
In WPF TChart (3.5.3498.27368) I can use this code for Histogram series: series.Delete(0, series.Count); All works Ok. But in the latest 3.5.3700.30575 version when series.Count > 1 I get an exception "Index out of range" System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument...
- Fri Apr 02, 2010 1:14 pm
- Forum: .NET
- Topic: Bug: Removing ColorLine tool in WPF TChart
- Replies: 2
- Views: 2747
Bug: Removing ColorLine tool in WPF TChart
In Windows Forms TChart I can add ColorLine tool with code as ColorLine line = new ColorLine(TestTeeChart.Chart); line.Axis = TestTeeChart.Axes.Left; line.Value = 3; and remove ColorLine with code as TestTeeChart.Tools.Remove(line); It works perfectly. But in WPF TChart after ColorLine removing line...
- Thu Mar 25, 2010 11:54 am
- Forum: .NET
- Topic: WPF HorizBar negative values bug
- Replies: 2
- Views: 3162
Re: WPF HorizBar negative values bug
Thank you, Sandra! We shall wait.
- Thu Mar 25, 2010 6:04 am
- Forum: .NET
- Topic: WPF HorizBar negative values bug
- Replies: 2
- Views: 3162
WPF HorizBar negative values bug
In Windows Forms TChart version it's possible to add negative values to HorizBar series - theay are drawn from the left side of zero. In WPF TChart in this case I get exception with error message "Width can't be negative". What to do?