Search found 9533 matches

by Yeray
Wed Dec 13, 2023 10:44 am
Forum: FMX
Topic: dynamic chart like the memory graph in task manager
Replies: 2
Views: 7565

Re: dynamic chart like the memory graph in task manager

Hello,

This sounds pretty similar to what the FastLine_RealTime example in the Tee9New demo does.
The demo is a VCL project but the same concepts apply for FMX.
by Yeray
Wed Dec 13, 2023 10:15 am
Forum: VCL
Topic: New VCL Release very slow on CBuilder 10.2.3
Replies: 6
Views: 7755

Re: New VCL Release very slow on CBuilder 10.2.3

Hello Jörg, I replaced my embarcadero tee version with the standard version1.14 a few days ago. I'm not sure to understand what version did you install. https://www.steema.com/version_info/vcl Regarding the performance in general, find here some tips to improve the performance when drawing many poin...
by Yeray
Wed Dec 13, 2023 9:51 am
Forum: VCL
Topic: Horizontal bar chart and Cylinder charts
Replies: 1
Views: 4558

Re: Horizontal bar chart and Cylinder charts

Hello Andy, I cannot work how to change my chart to a Horizontal bar chart. I've looked at all the Properties and looked the design time chart but can't anything. You should select the Horizontal Bar series in the gallery either with the "Add" or the "Change" button: mstsc_UnIuPtHMaI.png Also, in th...
by Yeray
Wed Dec 13, 2023 6:54 am
Forum: VCL
Topic: Sizing charts in ChartLayout
Replies: 9
Views: 8216

Re: Sizing charts in ChartLayout

Hello Jon,

I'm glad to hear it works fine now!
by Yeray
Mon Dec 11, 2023 11:52 am
Forum: VCL
Topic: Delphi 12 install TeeChart for Quickreport
Replies: 7
Views: 6547

Re: Delphi 12 install TeeChart for Quickreport

Hello,

Thanks for the feedback. I'm glad to hear you could make it work.
by Yeray
Mon Dec 11, 2023 11:50 am
Forum: VCL
Topic: Understanding bars and series
Replies: 8
Views: 7058

Re: Understanding bars and series

Hello Andy, To do it automatically, you'll need to create a series for each of the "jobs" you have, and then you can loop the "weekDays" you want to track and search in your data structure and your series and add the value for matching that weekDay, or a zero if none. I created a simple example with...
by Yeray
Tue Dec 05, 2023 2:11 pm
Forum: VCL
Topic: Delphi 12 install TeeChart for Quickreport
Replies: 7
Views: 6547

Re: Delphi 12 install TeeChart for Quickreport

Hello, I don't think you should be publishing QuickReport sources anywhere. I've been able to modify QuickReport sources v6.5 for RAD 11 and install them on RAD 12. What I can share is the TeeChart for QuickReport integration I made for that environment: Tee9QR6D29.zip It shouldn't be very different...
by Yeray
Tue Dec 05, 2023 12:34 pm
Forum: VCL
Topic: Install problems on CBuilder 10.2.3
Replies: 3
Views: 3742

Re: Install problems on CBuilder 10.2.3

Hello Jörg,

Great! I'm glad to hear it works now.
by Yeray
Tue Dec 05, 2023 12:09 pm
Forum: VCL
Topic: Delphi 12 install TeeChart for Quickreport
Replies: 7
Views: 6547

Re: Delphi 12 install TeeChart for Quickreport

Hello,

I've contacted QuickReport team to try to get their packages for RAD 12. When we'll have them, we'll try to prepare the packages integrating TeeChart for QuickReport into RAD 12.
by Yeray
Tue Dec 05, 2023 7:13 am
Forum: VCL
Topic: Install problems on CBuilder 10.2.3
Replies: 3
Views: 3742

Re: Install problems on CBuilder 10.2.3

Hello Jörg, But during the start of a project, I get the Message: " C:\Embarcadero ... Fastreport6VCL\standard\libd25\ddfsTee25.bpl cannot loaded, %1 is not a valid Win32 Application" The Lib File ddfsTee25.bpl exists in this path. There are some 3rd party tools (FastReports, DevExpress, ReportBuild...
by Yeray
Mon Dec 04, 2023 9:04 am
Forum: VCL
Topic: Sizing charts in ChartLayout
Replies: 9
Views: 8216

Re: Sizing charts in ChartLayout

Hello, I tested it again and changed the way to calculate the wOffset again. This way looks more stable: ChLay.Charts[0].Chart.Draw; with ChLay.Charts[0].Chart do wOffset:=BoundsRect.Width-Axes.Bottom.IAxisSize; ChLay.Charts[1].Chart.Draw; with ChLay.Charts[1].Chart do wOffset:=wOffset-(BoundsRect.W...
by Yeray
Mon Dec 04, 2023 7:32 am
Forum: VCL
Topic: Surface chart grows in size when starting to rotate
Replies: 2
Views: 4543

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

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

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

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 ...