Search found 9531 matches

by Yeray
Tue Nov 07, 2023 8:52 am
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 10382

Re: Grid header is affected by legend shadow

Hello, I don't see that connection with this example: uses Tee.GridData.Rtti; var Chart: TChart; Grid: TTeeGrid; procedure TForm1.FormCreate(Sender: TObject); var topPanel, botPanel: TPanel; data: TChartValueList; begin topPanel:=TPanel.Create(Self); topPanel.Parent:=Self; topPanel.Align:=alTop; top...
by Yeray
Mon Nov 06, 2023 7:14 am
Forum: VCL
Topic: TMapSeries Brush & Pen Issues
Replies: 2
Views: 4868

Re: TMapSeries Brush & Pen Issues

Hello,
JanDillen wrote:
Sat Nov 04, 2023 5:35 am
Any suggestions?
Yes, add these two lines:

Code: Select all

    TMapSeries(Series[0]).Shapes[0].ParentPen := False;
    TMapSeries(Series[0]).Shapes[0].ParentBrush := False;
by Yeray
Sat Nov 04, 2023 9:57 am
Forum: FMX
Topic: TTriSurface hardware accelaration
Replies: 11
Views: 32388

Re: TTriSurface hardware accelaration

Hello Gabriel,

I've just added your comments and project to the ticket.
Thanks for the update.
by Yeray
Fri Nov 03, 2023 2:51 pm
Forum: FMX
Topic: Draw chart grid lines crossing points
Replies: 2
Views: 4460

Re: Draw chart grid lines crossing points

Hello, You could draw it manually at the OnBeforeDrawSeries event as follows: procedure TForm1.Chart1BeforeDrawSeries(Sender:TObject); var i, j: Integer; begin Chart1.Canvas.AssignVisiblePen(Chart1.Axes.Left.Grid); Chart1.Canvas.Pen.Style:=psSolid; for i:=0 to Length(Chart1.Axes.Left.Tick)-1 do for ...
by Yeray
Thu Nov 02, 2023 9:53 am
Forum: FMX
Topic: TTriSurface hardware accelaration
Replies: 11
Views: 32388

Re: TTriSurface hardware accelaration

Hello,
Gabriel, A. TAOUSSI wrote:
Thu Nov 02, 2023 9:42 am
would you mind me filing a bug report ?
Of course, feel free to do so at bugzilla.
by Yeray
Thu Nov 02, 2023 8:14 am
Forum: VCL
Topic: Fill area with pattern - PDF export issue
Replies: 5
Views: 24258

Re: Fill area with pattern - PDF export issue

Hello, We've just fixed the exportation of transparencies into pdf. A workaround, which also works for patterns, is to create the pdf document "manually" (with TPDFCanvas ), export the TChart to TBitmap with TeeCreateBitmap , and add that bitmap to the pdf document. Ie: procedure TForm1.ExportChartT...
by Yeray
Tue Oct 31, 2023 10:12 am
Forum: FMX
Topic: TTriSurface hardware accelaration
Replies: 11
Views: 32388

Re: TTriSurface hardware accelaration

Hello,

We appreciate your patience and your willingness to work with us on this.
After investigating it, it pains us to admit that we haven't yet identified a clear-cut solution here.
by Yeray
Tue Oct 31, 2023 9:49 am
Forum: VCL
Topic: Synchronize two cursors (Line and Gantt)
Replies: 4
Views: 5336

Re: Synchronize two cursors (Line and Gantt)

Hello,

Try forcing a chart repaint after changing the cursor position. Ie, at the end of the CursorSynchronize method:

Code: Select all

  Dest.ParentChart.Draw;
by Yeray
Sun Oct 22, 2023 11:07 am
Forum: VCL
Topic: TeeChart Pro - SSL support was not enabled for this installer
Replies: 7
Views: 14996

Re: TeeChart Pro - SSL support was not enabled for this installer

Hello, The procedure entry point This issue is explained here . I see you've solved it installing the TeeChart v2022.34 as explained there. Note the other alternatives are to use the latest IDE build with the latest TeeChart binary build, or to use the IDE build you are using and rebuild TeeChart wi...
by Yeray
Fri Oct 20, 2023 5:02 pm
Forum: VCL
Topic: TChartEditor and a lot of TDatasets
Replies: 3
Views: 9530

Re: TChartEditor and a lot of TDatasets

Hello, I was trying to have a simple project to test the possibilities and the possible new property/method. But indeed I don't need to reproduce the delay to understand they can be huge. However, I still don't understand if you'd want the option to restrict the datasets at design-time or at runtime...
by Yeray
Fri Oct 20, 2023 3:02 pm
Forum: VCL
Topic: TeeChart Pro - SSL support was not enabled for this installer
Replies: 7
Views: 14996

Re: TeeChart Pro - SSL support was not enabled for this installer

Hello,

Sorry, there was a problem in the site causing this problem.
It should work fine now as always.
by Yeray
Fri Oct 20, 2023 8:12 am
Forum: VCL
Topic: TChartEditor and a lot of TDatasets
Replies: 3
Views: 9530

Re: TChartEditor and a lot of TDatasets

Hello, I've done a simple example which looks instantaneous here with 100 TFDMemTables : uses Chart, DBChart, DBEditCh, Series, EditChar, FireDAC.Comp.Client, Data.DB; var Chart1: TDBChart; FDMemTables: array of TFDMemTable; procedure TForm1.FormCreate(Sender: TObject); var val: Double; i, j: Intege...
by Yeray
Wed Oct 18, 2023 12:46 pm
Forum: FMX
Topic: TSeriesPointer.DrawPointer psSmallDot doesn't work with FMX
Replies: 1
Views: 13954

Re: TSeriesPointer.DrawPointer psSmallDot doesn't work with FMX

Hello,

I'm afraid you are right. I could reproduce the problem so I've added it to the public tracker (#2638).
by Yeray
Wed Oct 11, 2023 7:41 am
Forum: VCL
Topic: Error compiling TeeQR938 with Delphi 11.3, TeeChart Pro VLC FMX with Source version 2023.38..230607,, Quick Report Pro 6
Replies: 7
Views: 27009

Re: Error compiling TeeQR938 with Delphi 11.3, TeeChart Pro VLC FMX with Source version 2023.38..230607,, Quick Report P

Hello,

I've just rebuilt the Tee9QR6D28 packages and updated the zip in the same location. Could you please try it again?