Search found 48 matches

by seanmurphy
Wed Jan 16, 2013 7:59 am
Forum: VCL
Topic: XE3 and GIF files
Replies: 1
Views: 4967

Re: XE3 and GIF files

got it working with tmpimage.picture.Assign(Chart1.TeeCreateBitmap(Chart1.Color,Rect(0,0,Chart1.Width,Chart1.Height))); tmpimage.picture.graphic.savetofile(path for gif file); ref others porting to XE3 - don't put units tgifimage and teegif into your XE3 install or your project. add unit vcl.imaging...
by seanmurphy
Tue Jan 15, 2013 10:33 pm
Forum: VCL
Topic: XE3 and GIF files
Replies: 1
Views: 4967

XE3 and GIF files

in Delphi 6 I could save Tchat to GIF file with procedure TForm1.Button1Click(Sender: TObject); var tmpGIF : TGIFImage; begin tmpGIF:=TGIFImage.Create; With tmpGIF do begin Compression:=gcLZW; DitherMode:=dmStucki; ColorReduction:=rmQuantizeWindows; Assign(Chart1.TeeCreateBitmap(Chart1.Color,Rect(0,...
by seanmurphy
Wed Jan 09, 2013 6:30 am
Forum: VCL
Topic: Flat line at Y val
Replies: 1
Views: 4582

Flat line at Y val

Can you advise on best way to add a flat line on a standard XY chart please. I have charts which have X=increment of samples 1 through N000, and a single variable that varies in y axis. I want to put a line at a specified tolerance, say at y=6, so there is a flat line from x min to x max of chart. I...
by seanmurphy
Wed Jan 02, 2013 4:01 pm
Forum: VCL
Topic: Export to KML
Replies: 1
Views: 4543

Export to KML

hi, are there any plans for a utility to export from Teechart X,Y,Z data to Google Earth KML format?

Or if there is a workaround anyone has used all info much appreciated

thannks
Sean
by seanmurphy
Thu Aug 12, 2010 9:42 pm
Forum: VCL
Topic: Shapefiles
Replies: 1
Views: 4458

Shapefiles

Can I save a Teechart to a Shapefile to send to an ArcGIS user for import?

thanks
Sean
by seanmurphy
Mon Mar 23, 2009 12:47 pm
Forum: VCL
Topic: trend function and null points
Replies: 2
Views: 6312

thanks Yeray, thatwould do the trick
by seanmurphy
Sun Mar 22, 2009 10:41 am
Forum: VCL
Topic: trend function and null points
Replies: 2
Views: 6312

trend function and null points

I have a tlineseries which I am assignning a trend function, the lineseries contains gaps to which I am adding nulls with addnull. When I display the lineseries I have it configured so display shows grpah of curve in x,y, then blank gaps for a few samples where there is null data, then curve continu...
by seanmurphy
Fri Feb 27, 2009 2:09 pm
Forum: VCL
Topic: tcolorgridseries and null vaues
Replies: 2
Views: 5760

thanks for that
by seanmurphy
Fri Feb 27, 2009 11:31 am
Forum: VCL
Topic: tcolorgridseries and null vaues
Replies: 2
Views: 5760

tcolorgridseries and null vaues

teechart pro 8.01

How do I add null data to a colorgrid series, there does not seem to be a .addxyznull() method

thanks
Sean
by seanmurphy
Sat Feb 21, 2009 8:24 am
Forum: VCL
Topic: nulls and colour of pints on tlineseries
Replies: 2
Views: 6429

.....ongetpointerstye behaves of valueindex does not count null data. eg. if series values are 0..100, but all odd indexes are null, then ongetpointerstyle only gets activated for 50 of the 0..100 points, those that are not null. Is that correct?
by seanmurphy
Fri Feb 20, 2009 6:43 pm
Forum: VCL
Topic: nulls and colour of pints on tlineseries
Replies: 2
Views: 6429

nulls and colour of pints on tlineseries

I'm using a chart with many tlineseries, and am colouring individual points on each series with ongetpointerstyle. Works fine except when the series hold null values. data is array of x,y,z (z is a variable value, eg. water depth) if some_condition then chart.series[series_no].AddXY(x,y) else chart....
by seanmurphy
Tue Dec 18, 2007 9:29 pm
Forum: VCL
Topic: AddnullXYZ to TColorseriesgrid
Replies: 1
Views: 4521

AddnullXYZ to TColorseriesgrid

Is it possible to addnull to a Tseriescolorgrid ?

Teechart Pro v8.01 on Delphi 6 Pro

cheers
Sean
by seanmurphy
Mon May 28, 2007 9:25 am
Forum: VCL
Topic: Point size in Legend
Replies: 3
Views: 7088

thanks Narcis, v 7.07 here as well. I wondered if maybe there was a property buried somewhere which straps the legen point size to the point size used on the chart. In another project I've got the legend size remains fixed as required, but in the project under qwuestion I can't get the legend size n...
by seanmurphy
Mon May 28, 2007 12:33 am
Forum: VCL
Topic: Point size in Legend
Replies: 3
Views: 7088

Point size in Legend

D6Pro, Tchart 7, line series which draws points at X,Y on a Tchart. I can control the size of the points with with chart.series[0] as tlineseries do Pointer.Size:=vesselshotsize.Value; However, the point size of the symbol shown in the legend also tracks this, so if my point size is 1 you can't see ...
by seanmurphy
Thu Apr 05, 2007 6:30 am
Forum: VCL
Topic: Event for Teechart Drag
Replies: 1
Views: 4899

Event for Teechart Drag

I have about 30 Tcharts on a form each with several Tlineseries plotting as time-series. (TChart 7.07, Delphi 6 Pro, Win XP). The t.series can contain several thousand points, and I and provide the user the option to lock zooming so that a zoom on chart1 is reflected across all charts on the form. I...