Search found 9507 matches

by Yeray
Mon Dec 04, 2023 7:32 am
Forum: VCL
Topic: Surface chart grows in size when starting to rotate
Replies: 2
Views: 3690

Re: Surface chart grows in size when starting to rotate

Hello, The TRotationTool modifies the Rotation and the Elevation properties, but to do so, it also sets Orthogonal property to False . Sometimes, setting your starting view with Orthogonal:=False avoids that jump when using the TRotationTool . If you still find problems with it, please arrange a sim...
by Yeray
Mon Dec 04, 2023 7:23 am
Forum: VCL
Topic: Delphi 12 install TeeChart for Quickreport
Replies: 7
Views: 5561

Re: Delphi 12 install TeeChart for Quickreport

Hello, Compilation of the runtime package to Win64 is ok, but compilation of runtime packages to Win32 gives the following errors: [dcc32 Error] TeCanvas.pas(5979): E2010 Incompatible types: 'VCLTee.TeCanvas.TTeeCanvas' and 'TeCanvas.TTeeCanvas' I have checked paths and unit scope name and everythin...
by Yeray
Wed Nov 29, 2023 12:11 pm
Forum: VCL
Topic: Sizing charts in ChartLayout
Replies: 9
Views: 6898

Re: Sizing charts in ChartLayout

Hello, This is what I get, where I measure 61 pixels in all the bottom axes. layout.png Note this is without adding Axes.Left.Axis.Width to the wOffset and commenting the ResizeChart line: // Special case for leftmost chart if ChartCounter mod 5 <> 0 then Begin ChLay.Charts[ChartCounter].Chart.LeftA...
by Yeray
Tue Nov 28, 2023 7:30 am
Forum: VCL
Topic: Error with change of independent axis
Replies: 1
Views: 3212

Re: Error with change of independent axis

Hello, The axes are independent of each other. They are dependant on the data in the series they are linked to, when set to Automatic . So, when you have an axis set to a series that has no data, it may have Minimum and Maximum properties set at zero. This should change from the moment you add some ...
by Yeray
Mon Nov 27, 2023 9:40 pm
Forum: VCL
Topic: Sizing charts in ChartLayout
Replies: 9
Views: 6898

Re: Sizing charts in ChartLayout

Hello Jon,

Try adding Axes.Left.Axis.Width to the wOffset.
by Yeray
Mon Nov 27, 2023 1:04 pm
Forum: VCL
Topic: TContourSeries
Replies: 3
Views: 4578

Re: TContourSeries

Hello,
Zach A wrote:
Sun Nov 26, 2023 4:43 pm
This is the link to the old post

viewtopic.php?f=3&t=10138
I'm sorry but the project from the opening post there doesn't hang for me now, and neither does the simple example from the last reply.
Do those examples hang for you with the current TeeChart?
by Yeray
Mon Nov 27, 2023 12:34 pm
Forum: VCL
Topic: Understanding bars and series
Replies: 8
Views: 5906

Re: Understanding bars and series

Hello, The Add function appends a value to the series value list, regardless of the label you are assigning to it. That's the reason why the second value added in S3 is shown in the second bar, even if it's label is 'Thursday'. And the same for the third value in S2. You should add the same number o...
by Yeray
Mon Nov 27, 2023 11:13 am
Forum: VCL
Topic: Sizing charts in ChartLayout
Replies: 9
Views: 6898

Re: Sizing charts in ChartLayout

Hello Jon, TChartLayout is designed to have all the charts with the same size, including the axes. If you show the axis in some of them, part of the chart "zone" ( BoundsRect ) is used to draw the labels etc. So that's per design. However, once all the charts have been added, you could tweak the Bou...
by Yeray
Fri Nov 24, 2023 7:24 am
Forum: VCL
Topic: TContourSeries
Replies: 3
Views: 4578

Re: TContourSeries

Hello, I have successfully implemented code to contour a 300x270 grid. However, when some of the values are very small (with some zeros) the chart hangs and does not recover. Can you reproduce this in a simple example project we can run as-is here? I also checked a very old post where the chart hang...
by Yeray
Thu Nov 23, 2023 10:13 am
Forum: VCL
Topic: Understanding bars and series
Replies: 8
Views: 5906

Re: Understanding bars and series

Hello, I would create a self stacked TBarSeries for each jobtype: for jobtype in jobtypes do begin with TBarSeries(Chart1.AddSeries(TBarSeries)) do begin MultiBar:=mbSelfStacked; Title:=jobtype.name; end; end; Then I would loop the data and add the values to one series or another depending on it: wh...
by Yeray
Mon Nov 20, 2023 9:38 am
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 8783

Re: Grid header is affected by legend shadow

Hello, After applying the changes to the .pas unit you have two options to use the modified sources: - Rebuild the sources with TeeGridRecompile and keep using the "[...]\Steema TeeGrid for VCL & FMX Registered version XX\Compiled\DelphiXX.win32\Lib" path. - Change the library path to directly use t...
by Yeray
Mon Nov 20, 2023 7:25 am
Forum: VCL
Topic: Chart.Axes.Left.CalcIncrement Error
Replies: 2
Views: 3517

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

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

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

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

Hello Willi,

I'm glad to hear that! 🎉