Search found 8 matches

by Nico
Tue Jan 15, 2008 10:51 am
Forum: VCL
Topic: Display problem in area mode
Replies: 7
Views: 9192

Hi,

You can reproduce the problem adding the line :

Code: Select all

Series1.AreaLinesPen.Visible := FALSE;
You will note that line width on the rising edge is half the defined width.

Thanks
by Nico
Tue Jan 15, 2008 7:47 am
Forum: VCL
Topic: Display problem in area mode
Replies: 7
Views: 9192

Hi,

I've uploaded the screenshot in my upload page.

Thanks for your help
by Nico
Fri Jan 11, 2008 1:47 pm
Forum: VCL
Topic: Display problem in area mode
Replies: 7
Views: 9192

Hi, Thank you very much for your quick answer. I am sorry but I forgot to give details concerning my environment : - TeeChart PRO v7.11 VCL - coding with CodeGear DELPHI2007 - using 2d series Our problem is that blue line on rising-edge at abscissa 2 has a width of 1 instead of 3. Tell me if it is b...
by Nico
Wed Jan 09, 2008 8:32 am
Forum: VCL
Topic: Display problem in area mode
Replies: 7
Views: 9192

Display problem in area mode

Hi, We are facing a problem of curve display in area mode. The serie is defined with following 6 points (X, Y) : (1, 0) (2, 0) (2, 6) (3, 6) (4, 6) (5, 6) The serie pen width is 3, color is blue. The serie color brush for area drawing is yellow. On the rising edge (abscissa 2), the area drawing over...
by Nico
Fri Aug 19, 2005 8:08 am
Forum: VCL
Topic: Transparency in TeeGLCanvas
Replies: 0
Views: 4346

Transparency in TeeGLCanvas

Hi

I would like to know why depth buffer writing isn't disabled when enabling blending. ( glDepthMask )
By doing so, it would be possible to see through all blended object.
Actually, if the nearest object is the first drawn, we cannot see through it.

Nico
by Nico
Wed Jul 27, 2005 8:15 am
Forum: VCL
Topic: Problem with Custom Axis
Replies: 1
Views: 4040

Problem with Custom Axis

Hi I'd like to use a custom axis instead of the default bottom axis but when I do it, it seems that the label of this axis has no size. The height of the graph increases so the label goes outside of the component. Here is a screenshot wich comes from the TeeChart demo. http://www.carmelec.fr/Ressour...
by Nico
Wed Jul 27, 2005 6:59 am
Forum: VCL
Topic: Problem with TTreeNodeShape.ClickedImage
Replies: 2
Views: 9566

It works fine now

Thanks a lot Tom

Nico
by Nico
Tue Jul 26, 2005 8:40 am
Forum: VCL
Topic: Problem with TTreeNodeShape.ClickedImage
Replies: 2
Views: 9566

Problem with TTreeNodeShape.ClickedImage

Hi I have node with a picture (ImageIndex = tiChecked) and I'd like to know when the user click on this picture. So I wrote : OnNodeClick(Sender: TTreeNodeShape; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin if Sender.ClickedImage(X, Y) then begin ... end; ... end; It works fine as...