Sandra
The sample you provided works fine.
BTW What is difference between Line and FastLine ?
Thanks
Andy
Search found 8 matches
- Mon Feb 18, 2013 4:06 pm
- Forum: .NET
- Topic: Conditional FastLine
- Replies: 11
- Views: 12179
- Mon Feb 11, 2013 8:10 pm
- Forum: .NET
- Topic: Conditional FastLine
- Replies: 11
- Views: 12179
Re: Conditional FastLine
Sandra The example provided; did ignore color specified. for (int index = 0; index < 50000; index++) { //for 1001 to 1999 make Colors.Transparent if (index > 1000 & index < 2000) points.Add(index, rnd.Next(20, 300), Colors.Transparent); //for 5001 to 19999 make Colors.Black else if (index > 5000 & i...
- Fri Feb 08, 2013 8:59 pm
- Forum: .NET
- Topic: Conditional FastLine
- Replies: 11
- Views: 12179
Re: Conditional FastLine
Hi Sandra I modified your example a bit. I added 50000 points; added color to each point based on rule and making some as Null. Added DownSamplingMethod to reduce points. Observed couple of issues 1) tChart ignored the color i'm specifying in point. 2) tChart ignored points.SetNull 3) Example provid...
- Thu Feb 07, 2013 8:33 pm
- Forum: .NET
- Topic: Issue with Color Band Tool.
- Replies: 4
- Views: 5452
Re: Issue with Color Band Tool.
Hello Sandra,
Do you know when are we expecting this issue to re resolved? Our release is depdendent on this fix.
Thanks
Syd.
Do you know when are we expecting this issue to re resolved? Our release is depdendent on this fix.
Thanks
Syd.
- Thu Feb 07, 2013 12:16 am
- Forum: .NET
- Topic: Issue with Color Band Tool.
- Replies: 4
- Views: 5452
Issue with Color Band Tool.
Hello, I am having issue using ColorBand tool, the colorband tools gets really slow (sometimes stuck) while rendering if either of the colorband's edge is editable and is not in the charts viewable region. Please look at the sample code below, look at the Start value of the color band and set its va...
- Wed Feb 06, 2013 2:28 pm
- Forum: .NET
- Topic: Conditional FastLine
- Replies: 11
- Views: 12179
Re: Conditional FastLine
Sandra I think you forget to address the issue I raised about series.TreatNulls = TreatNullsStyle.DoNotPaint; when we add values to series by series.Add(x, y, Colors.Red) About GetPointerStyle; it would be nice I can get hold of "Value Object" from GetPointerStyleEventArgs not only "ValueIndex". Tha...
- Tue Feb 05, 2013 5:48 pm
- Forum: .NET
- Topic: Conditional FastLine
- Replies: 11
- Views: 12179
Re: Conditional FastLine
Hi Sandra Thanks for quick response. Adding points by using following line; myCustomLine.Add(index, val, "", colorList[index]); causes issues with myCustomLine.DefaultNullValue = double.NegativeInfinity; myCustomLine.TreatNulls = TreatNullsStyle.DoNotPaint; TreatNulls get ignored Attaching wpf sampl...
- Mon Feb 04, 2013 11:08 pm
- Forum: .NET
- Topic: Conditional FastLine
- Replies: 11
- Views: 12179
Conditional FastLine
Hi
Can multiple colors be shown FastLine ?
An example image below .
Please provide .net example how this can be achieved using TeeChart?
Thanks
Andy
Can multiple colors be shown FastLine ?
An example image below .
Please provide .net example how this can be achieved using TeeChart?
Thanks
Andy