Search found 35 matches

by EdDressel
Tue Sep 01, 2020 3:12 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

It doesn't look like it is fixed, but I will do more checking. A few items to follow up on: 1) I do not get any email notifications for this forum even though my email is correct. I kept checking back for a while but I didn't hear anything. Is there a way to get notifications? (I checked my settings...
by EdDressel
Tue Aug 18, 2020 9:27 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

Thank you!... I have source code and would to love to know what to change so I do not have to wait for a new build.
by EdDressel
Mon Aug 17, 2020 2:28 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

Christopher: Thank you for the response. Yes it is a fair summary but because the charts are not usable in the update (which makes my software not usable) it is a pretty serious issue. I would have hoped the bug would have high priority, but the bug report has "normal" for the importance. Can it be ...
by EdDressel
Fri Aug 14, 2020 10:37 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

Chris:

Thank you. I see this as pretty serious as anyone using grather than a 100% DPI is going to have probems, and that is not uncommon today.

The tracker has it as "normal" importance. Can it be escalated?

Thank you for your consideration.

Ed Dressel
by EdDressel
Thu Aug 13, 2020 2:39 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

Chris: I can reproduce the problem and can even see in Andrew's image (see the font sizes on the tab and the chart are different, and I should not him posting in this thread for you to focus on his thread is a bit frustrating). This is a major problem with my app is real and makes the charts unusabl...
by EdDressel
Wed Aug 05, 2020 10:24 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

Thank you. FYI--for my company, this is a very pressing issue as it has compromised my software on a lot of systems.
by EdDressel
Tue Aug 04, 2020 7:29 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

Good thinking.

I am off site but have my laptop with a high-density display--I ran both programs: my compiled program reproduces the problem, your compiled program does not have the problem.

Ed Dressel
by EdDressel
Mon Aug 03, 2020 2:07 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Re: Display settings and font size

That is similar to what I am doing, but I am using Delphi 10.4. Did you try that?
by EdDressel
Thu Jul 30, 2020 4:06 pm
Forum: VCL
Topic: Display settings and font size
Replies: 36
Views: 79910

Display settings and font size

Delphi 10.4; TeeChart Pro v 2020.30.200525 32 bit I have a simple demo (attached) that shows a problem that we are having in our application: when someone increases the Display setting font size from 100% to 200%, the font size in the charts increase 300%. Here are two screenshots of what it looks l...
by EdDressel
Fri Jun 12, 2020 9:40 pm
Forum: VCL
Topic: Change log for latest version
Replies: 1
Views: 7120

Change log for latest version

Where do I find the changelog for the latest TChart update? I would like to see it before I download and install it.

Thank you,

Ed Dressel
by EdDressel
Mon Apr 20, 2020 2:01 pm
Forum: VCL
Topic: Top/Bottom line in a chart
Replies: 4
Views: 13538

Re: Top/Bottom line in a chart

Hello?
by EdDressel
Wed Apr 15, 2020 3:52 pm
Forum: VCL
Topic: Top/Bottom line in a chart
Replies: 4
Views: 13538

Re: Top/Bottom line in a chart

Thank you. That works perfect for the TChart, but when I create an image of the chart with a different width, the lines are not the correct width. See the attached demo--the red lines are painted in the AfterDraw event and are not the correct width.
by EdDressel
Thu Apr 09, 2020 3:53 pm
Forum: VCL
Topic: Top/Bottom line in a chart
Replies: 4
Views: 13538

Top/Bottom line in a chart

I have a horizontal bar series in a chart. A customer wants the axis line on the bottom of the chart to extend farther left, and one at the top that matches. See here: http://www.tbinc.com/misc/ChartExtendHorzLineLeft.jpg I put arrows showing the lines. Is something like this possible? (I have attac...
by EdDressel
Tue Mar 17, 2020 6:01 pm
Forum: VCL / FMX
Topic: Keeping the Legend Symbols the same size
Replies: 4
Views: 29843

Re: Keeping the Legend Symbols the same size

I posted this in the wrong group, but in case you are wondering, here is the solution: procedure TForm1.ChartLegendDraw(Sender: TObject; aSeries:TChartSeries; aValueIndex:Integer; aR:TRect); var lCanvas: TCanvas3D; lClr: TColor; begin lCanvas := aSeries.ParentChart.Canvas; lClr := aSeries.LegendItem...
by EdDressel
Fri Mar 13, 2020 10:15 pm
Forum: VCL / FMX
Topic: Keeping the Legend Symbols the same size
Replies: 4
Views: 29843

Re: Keeping the Legend Symbols the same size

I tried the following code but it colors each symbol with the same color (of course). I don't know how to get the color for each slice. Chart1.Legend.Symbol.OnDraw := ChartLegendDraw; procedure TForm1.ChartLegendDraw(Sender: TObject; aSeries:TChartSeries; ValueIndex:Integer; R:TRect); var lBarSeries...