Search found 5 matches
- Fri Apr 26, 2013 11:09 am
- Forum: .NET
- Topic: ShowInLegend changes Series Color
- Replies: 1
- Views: 3064
ShowInLegend changes Series Color
When I create a series with the following code I get a LimeGreen series in my Polar Chart as exptected: mCircleSeries = new Steema.TeeChart.Styles.Polar(); mCircleSeries.Color = Color.LimeGreen; mCircleSeries.Pointer.Visible = false; mCircleSeries.Circled = true; mCircleSeries.RotationAngle = 90; mC...
- Fri Apr 19, 2013 1:57 pm
- Forum: .NET
- Topic: Sorted points in Polar Chart
- Replies: 7
- Views: 7672
Re: Sorted points in Polar Chart
Any idea on when the next maintenance release will be available?
- Wed Apr 10, 2013 5:48 am
- Forum: .NET
- Topic: Sorted points in Polar Chart
- Replies: 7
- Views: 7672
Re: Sorted points in Polar Chart
I have version 4.1.2012.9283 of TeeChart and I can confirm that your code sample works as expected. But the test data you are using is not the same as in my sample. You are using: polar1.Add(0, 40); polar1.Add(60, 80); polar1.Add(120, 120); polar1.Add(180, 160); // y-Value is 160. This is not what I...
- Tue Apr 09, 2013 5:21 am
- Forum: .NET
- Topic: Sorted points in Polar Chart
- Replies: 7
- Views: 7672
Re: Sorted points in Polar Chart
I now changed my code to mRoundnessSeries.Add(0, 40); mRoundnessSeries.Add(60, 80); mRoundnessSeries.Add(120, 120); mRoundnessSeries.Add(180, 150); mRoundnessSeries.Add(150, 160); mRoundnessSeries.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; mRoundnessSeries.XValues.Sort(); but s...
- Sat Apr 06, 2013 6:22 am
- Forum: .NET
- Topic: Sorted points in Polar Chart
- Replies: 7
- Views: 7672
Sorted points in Polar Chart
I am adding points to a polar series: mRoundnessSeries.Add(0, 40); mRoundnessSeries.Add(60, 80); mRoundnessSeries.Add(120, 120); mRoundnessSeries.Add(180, 160); mRoundnessSeries.Add(150, 150); What I am then seeing is: http://ruetimann.net/images/Polar1.jpg But what I would like to see is: http://ru...