Search found 745 matches

by Marjan
Tue Nov 14, 2006 6:48 am
Forum: VCL
Topic: Help with Exporting Chart As An eMail
Replies: 6
Views: 8935

Hi, Mike.

You might try checking the TeeExport.pas unit, especially the InternalTeeEmailFile routine which actually calls the MapiSendMail routine.
by Marjan
Wed Nov 08, 2006 7:20 am
Forum: .NET
Topic: using TYPEOF to determine series type
Replies: 4
Views: 7324

Hi.

Try using the is instead of typeof. Something like this:

Code: Select all

...
  if (ts is Steema.TeeChart.Styles.Line)
  { ... }
  else if (ts is Steema.TeeChart.Styles.Gantt
  { ... }
  else if (ts is Steema.TeeChart.Styles.Point)
  { ... }
...
by Marjan
Fri Oct 13, 2006 9:18 am
Forum: .NET
Topic: Various Smith Series problems
Replies: 3
Views: 6227

Hi.

#1 has just been added to Smith series (DrawLegendShape method). The fix will be included in next maintenance release.
by Marjan
Fri Oct 13, 2006 8:52 am
Forum: .NET
Topic: TeeChart PDF Export problem
Replies: 3
Views: 6736

Hi, Gabor. The problem is PDF export does not (yet) support transparency. The end result is it also cannot interpret Color.Transparent as "transparent brush" i.e. no brush. The workaround for your problem is to set the AreaBrush.Visible property to false if Color is Color.Transparent. This way no ar...
by Marjan
Wed Oct 04, 2006 6:37 am
Forum: .NET
Topic: Legend Text
Replies: 1
Views: 4122

Hi.

Several ways to do it. If you're only displaying/using series title in legend text, then the easiest solution is to change series Title property. Something like this:

Code: Select all

tChart1.Series[0].Title = "Series1Title";
tChart1.Series[1].Title = "Series2Title";
...
by Marjan
Fri Sep 29, 2006 8:00 am
Forum: .NET
Topic: Exception when using ColorGrid
Replies: 8
Views: 11757

Hi. First thing to do is check if each "row" has the same number of elements i.e. if _result.Wall[m].Length are the same for all m's. Colorgrid will work correctly only if x,y is a 2D grid where all rows have the same number of columns. If this is not the case, you'll have to create missing values (...
by Marjan
Tue Sep 26, 2006 1:03 pm
Forum: .NET
Topic: Markers
Replies: 15
Views: 22070

I think any additional coding (including filtering of points before displaying) would most likely create an overhead i.e. the fastline series would become slower.
by Marjan
Tue Sep 26, 2006 1:01 pm
Forum: .NET
Topic: CursorTool not working properly - endless slow - 100% CPU
Replies: 2
Views: 5228

Hi.

What's the total number of points per series ? I'm guessing here but most likely the number of points is large (compared to number of pixels i.e. chart size). Does the same problem occur when you reduce the number of points in series ?
by Marjan
Fri Sep 22, 2006 5:45 pm
Forum: .NET
Topic: Markers
Replies: 15
Views: 22070

Re: Markers

Would be nice if you could display a couple of points on a fastline for printing purposes. I understand your concern but you could implement it the same a markers where you can set a property for the number of markers to display If you only need to display couple of points, then the best solution i...
by Marjan
Thu Sep 14, 2006 2:25 pm
Forum: .NET
Topic: Speed problems
Replies: 22
Views: 26953

Forgot the link to article (sorry):

http://www.teechart.net/reference/modul ... icle&sid=6

The article was originally written for VCL version, but the same principles apply for .NET version as well.
by Marjan
Thu Sep 14, 2006 1:44 pm
Forum: .NET
Topic: Speed problems
Replies: 22
Views: 26953

Hi, Berndt. Strange. PixelDownSample should work fine i.e. it should reduce the number of displaying points to managable size. Using a simple algorithm PixelDownSample replaces group of points with the same pixel x coordinate with two or four points. But you must be aware of the fact the downsamplin...
by Marjan
Mon Sep 04, 2006 11:15 am
Forum: VCL
Topic: Series Available Dataset List
Replies: 1
Views: 4763

Hi.

Only the series with their's ParentChart property set to (valid) chart will show up in the datasource combo box. I guess one dirty way to remove some series from selection is to set their's ParentChart property to nil:

Code: Select all

Series2.ParentChart := nil;
by Marjan
Wed Aug 30, 2006 5:39 am
Forum: VCL
Topic: AddXY - Adding series during runtime
Replies: 2
Views: 6380

Hi. Which TeeChart and Delphi version are you using ? Perhaps the problem is left axis automatic scaling was accidentally disabled at design time. Try reseting it with the following code: acurve.GetVertAxis.Automatic := true; Also, check if all yvalues are not the same. Another thing to check is if ...
by Marjan
Tue Aug 29, 2006 7:11 am
Forum: .NET
Topic: colour of dots in point series is not working
Replies: 4
Views: 7118

Hi.

It might help setting point series ColorEach property to true:

Code: Select all

origin.ColorEach = true;
by Marjan
Mon Aug 28, 2006 7:59 am
Forum: .NET
Topic: Question about Print Preview window
Replies: 6
Views: 9263

Hi.

As Watermark over chart ? Yes, several ways to do it. You can either paint the image directly on tChart.Chart.Graphics3D in tChart OnAfterDraw event. Alternatively you can also use Annotation tool (with bacground image) or ChartImage tool.