Great. I've made the needed changes and it looks like it works.
Thanks
Christo
Search found 34 matches
- Tue May 12, 2009 11:36 am
- Forum: .NET
- Topic: DashStyles.Dot does not show
- Replies: 3
- Views: 5683
- Fri May 08, 2009 12:20 pm
- Forum: .NET
- Topic: Disappearing title text on chart with polar series
- Replies: 3
- Views: 5653
Hi Sandra
I'm not exactly sure what you mean, but it doesn't matter.
If I uncomment the line
then the title does not disappear. We want the labels though.
I'm not exactly sure what you mean, but it doesn't matter.
If I uncomment the line
Code: Select all
polar.CircleLabels = true;
- Thu May 07, 2009 3:29 pm
- Forum: .NET
- Topic: DashStyles.Dot does not show
- Replies: 3
- Views: 5683
DashStyles.Dot does not show
Using TeeChart.WPF: 3.5.3371.26406 DashStyles Solid & Dash looks ok, but the rest isn't that good and Dot doesn't show anything. <Window x:Class="WPFDemo.Window7" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:WPF="clr-n...
- Thu May 07, 2009 2:46 pm
- Forum: .NET
- Topic: Teechart setting rectangle height to negative value
- Replies: 9
- Views: 11434
- Thu May 07, 2009 2:07 pm
- Forum: .NET
- Topic: Disappearing title text on chart with polar series
- Replies: 3
- Views: 5653
Disappearing title text on chart with polar series
I've got two charts in a list view. If I select the second chart and select the first one again, the title of the second chart vanishes and doesn't come back again. I'm using the latest maintenance release: 3.5.3371.26406 <Window x:Class="WPFDemo.Window7" xmlns="http://schemas.microsoft.com/winfx/20...
- Fri Mar 06, 2009 8:12 am
- Forum: .NET
- Topic: Solid and dashed lines not distinguishable
- Replies: 1
- Views: 3322
Solid and dashed lines not distinguishable
I've uploaded two images: dashes-image01.png & dashes-image02.png. Image02 shows a chart with two series. One series is supposed to be solid and the other dashed. It is very difficult to identify which is which. Image01 shows a chart with the same two series. It is easier to see the difference betwe...
- Fri Mar 06, 2009 6:26 am
- Forum: .NET
- Topic: Changing AngleIncrement has no effect
- Replies: 3
- Views: 4794
- Thu Mar 05, 2009 2:05 pm
- Forum: .NET
- Topic: Changing AngleIncrement has no effect
- Replies: 3
- Views: 4794
Changing AngleIncrement has no effect
I'm using TeeChart.WPF 3.5.3317.17532. It seems that AngleIncrement doesn't have any effect anymore. I've set it quite large, but to no avail. series.AngleIncrement = 90; // 90 degrees increments <Window x:Class="WPFDemo.Window5" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmln...
- Thu Mar 05, 2009 1:48 pm
- Forum: .NET
- Topic: Polar series's ClockWiseLabels
- Replies: 3
- Views: 4926
If I've got code which does: polar.ClockWiseLabels = true; polar.ClockWiseLabels = true; polar.ClockWiseLabels = true; polar.ClockWiseLabels = true; ... The data get transformed everytime! We are therefore never guaranteed that the state of the ClockWiseLabels is in anyway consistent with the data. ...
- Thu Mar 05, 2009 8:31 am
- Forum: .NET
- Topic: Polar brush style
- Replies: 1
- Views: 3320
Polar brush style
How can I set the polar brush Style? I'd like to use hatching for the fill. I see the non WPF example does have hatching, but not the WPF polar plot's brush.
See "TeeChart for .NET examples"'s "Null points" for what I'm looking for.
See "TeeChart for .NET examples"'s "Null points" for what I'm looking for.
- Thu Mar 05, 2009 7:24 am
- Forum: .NET
- Topic: Polar series's ClockWiseLabels
- Replies: 3
- Views: 4926
Polar series's ClockWiseLabels
Hi Why does the order of setting ClockWiseLabels and adding the series data affect the output? Shouldn't case 4 & 5 give the same plot? (case 4) BEFORE adding data: series.ClockWiseLabels = true; (case 5) AFTER adding data: series.ClockWiseLabels = true; <Window x:Class="WPFDemo.Window5" xmlns="http...
- Tue Feb 03, 2009 1:18 pm
- Forum: .NET
- Topic: Teechart setting rectangle height to negative value
- Replies: 9
- Views: 11434
Hi Narcís We're using: 30 Jan 2009 TeeChart.WPF 3.5.3317.17532 This will make boom: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:WPF="clr-namespace:Steema.TeeChart.WPF;assembly=TeeChart.WPF" Title="Window2" Wid...
- Tue Feb 03, 2009 11:36 am
- Forum: .NET
- Topic: Teechart setting rectangle height to negative value
- Replies: 9
- Views: 11434
Hi Narcís It should be really simple to find. I think the stacktrace makes it pretty clear what is happening. Basically Height should never be assigned a negative value and it is. The fact that I'm getting the exception should be proof enough. I'll admit that we changed something in our XAML and hav...
- Tue Feb 03, 2009 10:30 am
- Forum: .NET
- Topic: Teechart setting rectangle height to negative value
- Replies: 9
- Views: 11434
Teechart setting rectangle height to negative value
Using the latest release of TeeChart WPF we get: System.ArgumentException: Height must be non-negative. at System.Windows.Rect.set_Height(Double value) at Steema.TeeChart.WPF.Title.Draw(Graphics3D g, Rect& rect) at Steema.TeeChart.WPF.Title.DoDraw(Graphics3D g, Rect& rect, Boolean CustomOnly) at Ste...
- Fri Oct 10, 2008 12:38 pm
- Forum: .NET
- Topic: RegionTool on polar series does not work
- Replies: 1
- Views: 3333
RegionTool on polar series does not work
The following code shows that the region tool draws outside the graph area. var plot = new Polar(); for (int i = 0; i < 360; i++) { double x = i; double y = Math.Sin(x * Math.PI / 180.0) * 10.0; plot.Add(x, y); } plot.ShowInLegend = false; plot.Pointer.Visible = false; plot.Brush.Visible = false; pl...