Search found 9638 matches

by Yeray
Thu Feb 27, 2025 1:51 pm
Forum: FMX
Topic: Additional export formats in PRO do not work
Replies: 5
Views: 13755

Re: Additional export formats in PRO do not work

Hello,
ufu wrote:
Wed Feb 26, 2025 8:45 pm
I am using TeeChart for FireMonkey (FMX) in Delphi.
What TeeChart version are you using?
by Yeray
Tue Feb 25, 2025 10:03 am
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello, You could set your TScrollPagerTool.Align to saCustom and then set the its positions manually at the same PlaceAxes method: with ScrollPagerTool.SubChartTool.Charts[0] do begin Top:=0; Left:=0; Width:=Chart1.Width; Height:=Round(Chart1.Height / ScrollPagerTool.DivisionRatio); Chart.MarginUnit...
by Yeray
Tue Feb 18, 2025 12:40 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello,

I've made a variant of that AutoAxes example with an improved version of the PlaceAxes function, which is now called at the OnBeforeDraw event.
AutoAxes.png
AutoAxes.png (73.47 KiB) Viewed 10559 times
AutoAxes.zip
(2.41 KiB) Downloaded 374 times
by Yeray
Tue Feb 11, 2025 11:20 am
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello, In your example (https://www.steema.com/support/viewtopi ... 289#p81015) I do not understand how to calculate the values dynamically if the number of axes changes. That was a simple example to demonstrate how to place the axes to draw the series without the axes overlapping the series. Of cou...
by Yeray
Mon Feb 10, 2025 7:01 am
Forum: VCL
Topic: TeeChart has continuous active wheel
Replies: 1
Views: 3850

Re: TeeChart has continuous active wheel

Hello Bruce,

You could share that chart with us to see if the problem is with some chart setting itself. To do so, you can open the editor and export the chart to a tee file.
by Yeray
Mon Feb 03, 2025 11:19 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello, So, if one changes e.g. data of the series of the main chart, one needs to apply the changes manually to the 'corresponding' series of the scroll pager's subchart, too? Or is there an automatism in the background, that updates/synchronizes a Scrollpager's series with the one of the main chart...
by Yeray
Wed Jan 29, 2025 7:27 am
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello, Think on the ScrollPagerTool.SubChartTChart as a different TChart, with its series and axes. Indeed, there are some shorthands like ScrollPagerTool.Series to access the first series, but it's basically a SubChart. When you assign a series to ScrollPagerTool, the series is cloned into it, but ...
by Yeray
Tue Jan 28, 2025 12:08 pm
Forum: VCL
Topic: Report with TeeChart components
Replies: 3
Views: 8068

Re: Report with TeeChart components

Hello, Is the QuickReport version 5 that works with Delphi 2007 supported? Can we use TeeChart 2024.42 with QuickReport version 5? We don't provide TeeChart binary installers for the latest versions of TeeChart for Delphi 2007, but can still use the source code version. And yes, once you have TeeCha...
by Yeray
Mon Jan 27, 2025 8:48 am
Forum: VCL
Topic: Report with TeeChart components
Replies: 3
Views: 8068

Re: Report with TeeChart components

Hello, There are several reporting tools that may be used to integrate TeeChart VCL: QuickReport, ReportBuilder, FastReports, DevExpress,... Feel free to investigate what reporting tool fits your needs and how do they integrate TeeChart VCL. At Steema Software we maintain and support the integration...
by Yeray
Mon Jan 27, 2025 8:41 am
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello, The main concept is that the area in which the signals (aka series) are displayed only takes up the space left by the dynamic number of axes. So, if a file has four channels, each signal in the chart has one axis. The four axes are either to the left side or the right side (or mixed eg. 2 lef...
by Yeray
Thu Jan 23, 2025 2:02 pm
Forum: VCL
Topic: Performance Issue with Grid Lines and PenStyle psDot
Replies: 4
Views: 13899

Re: Performance Issue with Grid Lines and PenStyle psDot

Hello Ags,

Thanks for the explanation.
I hope we can invest more time on improving the TGLCanvas so it can be used as a 1:1 replacement to GDI/GDIPlus.
Could you please expand a little bit on the major issues? I'm not sure to understand what are you doing in the panning event.
by Yeray
Thu Jan 23, 2025 1:21 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello, 2) Grid The horizontal grid lines are drawn starting at the left most axis, not at the 0.0 position of the bottom axis. I do not know how to fix this! In the example project, clicking a series in the chart 'relocates' the grid to the axis of the clicked series. To see that, you need to scroll...
by Yeray
Mon Jan 20, 2025 2:41 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello,

Ah, I see there must be a difference between TeeChart v2024.41 and TeeChart v2024.42 where MarginToAxis got fixed.
Probably #2740 affected MarginToAxis.
Can you update to TeeChart v2024.42?
by Yeray
Mon Jan 20, 2025 2:38 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello,

I see the axis labels to be moving to the left every time I click a series:
mstsc_8jfJENhWOp.gif
mstsc_8jfJENhWOp.gif (95.84 KiB) Viewed 44935 times
by Yeray
Thu Jan 16, 2025 2:38 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 24
Views: 66280

Re: Distance between axis tick and label text, and more questions

Hello, I've added a scrollbar to test different Texts.MarginToAxis values and it seems to work fine for me here: mstsc_49oVHJTEMM.gif procedure TForm1.FormCreate(Sender: TObject); //... SBLabelsMargin.Min:=-100; SBLabelsMargin.Max:=400; SBLabelsMargin.Position:=-Chart1.CustomAxes[0].Texts.MarginToAx...