Search found 9526 matches

by Yeray
Mon Nov 20, 2023 7:25 am
Forum: VCL
Topic: Chart.Axes.Left.CalcIncrement Error
Replies: 2
Views: 3942

Re: Chart.Axes.Left.CalcIncrement Error

Hello Errol,

Directly setting Minimum and Maximum properties doesn't set Automatic, AutomaticMinimum or AutomaticMaximum properties. That's why we use to recommend calling SetMinMax(min, max) instead.
by Yeray
Sat Nov 18, 2023 9:46 am
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 9907

Re: Grid header is affected by legend shadow

Hello, Thanks for the project. We could reproduce the problem and we've been able to fix it. In the PrepareGradient nested method, inside the TFMXPainter.SetBrush method, in FMX/FMXTee.Painter.pas unit, replace this: procedure TFMXPainter.SetBrush(const ABrush: TBrush); //... procedure PrepareGradie...
by Yeray
Thu Nov 16, 2023 5:45 pm
Forum: FMX
Topic: FMXTee.Chart.ListBox
Replies: 1
Views: 3878

Re: FMXTee.Chart.ListBox

Hello Rick,

Indeed, we haven't modified this recently, so it may be due to some change in FMX.
I'm afraid we haven't found the root of the problem in FMX and the way to fix it.
by Yeray
Thu Nov 16, 2023 1:12 pm
Forum: VCL
Topic: TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109
Replies: 4
Views: 7873

Re: TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109

Hello Willi,

I'm glad to hear that! 🎉
by Yeray
Thu Nov 16, 2023 1:06 pm
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 9907

Re: Grid header is affected by legend shadow

Hello,

I'm afraid changing from TBarSeries to TLineSeries doesn't change the Grid for me here.
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
by Yeray
Thu Nov 16, 2023 9:18 am
Forum: VCL
Topic: TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109
Replies: 4
Views: 7873

Re: TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109

Hello Willi,

I'm afraid we can't read that dump file.
Does the installer give you any error message?
by Yeray
Mon Nov 13, 2023 2:05 pm
Forum: VCL
Topic: Missing Calls in RELEASE 2023.39.231109
Replies: 1
Views: 3739

Re: Missing Calls in RELEASE 2023.39.231109

Hello,

All this was moved in v2023.38.
See the "Obsolete / Deprecated methods" and "Removed" sections in the What's New page for more details.
by Yeray
Mon Nov 13, 2023 9:10 am
Forum: VCL
Topic: Synchronize two cursors (Line and Gantt)
Replies: 4
Views: 4891

Re: Synchronize two cursors (Line and Gantt)

Hello, Forcing a chart repaint to avoid the cursor being drawn multiple times on top of the chart gives, since you have thousands of points in the top chart, it ends in a slow interactivity. I've seen you have set the FullRepaint property to True for the TCursorTool at the bottom, which causes the p...
by Yeray
Thu Nov 09, 2023 11:50 am
Forum: VCL
Topic: TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109
Replies: 4
Views: 7873

TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109

Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2023.39.231109 release with full RAD Studio 12 Athens (RX/DX/CX) support. The new update includes TeeChart Pro and Standard source code installers for all development environments already suppor...
by Yeray
Thu Nov 09, 2023 11:50 am
Forum: FMX
Topic: TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109
Replies: 0
Views: 15937

TeeChart VCL/FMX v2023 [9 NOV 2023] RELEASE 2023.39.231109

Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2023.39.231109 release with full RAD Studio 12 Athens (RX/DX/CX) support. The new update includes TeeChart Pro and Standard source code installers for all development environments already suppor...
by Yeray
Tue Nov 07, 2023 8:52 am
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 9907

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: 4464

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: 31892

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: 4054

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: 31892

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.