Search found 6 matches

by Test Always
Wed Mar 12, 2014 4:36 pm
Forum: VCL
Topic: Cannot Compile for XE2 (2014.02)
Replies: 7
Views: 12895

Re: Cannot Compile for XE2 (2014.02)

Have you tried to repair it? I can't find fmx.bpl (if that is the package name) anywhere on my computer nor the build machine. But the problem only occurs on my build machine. (I do have FMX*.bpl files on both). I don't know what i need to repair as I am not aware of anything being broken. Your sof...
by Test Always
Fri Feb 14, 2014 6:09 pm
Forum: VCL
Topic: Series Marks Overlaps/Cuts off Right Side
Replies: 1
Views: 4995

Series Marks Overlaps/Cuts off Right Side

Delphi XE2, TChart 2012.07.121105 32bit (I know there is an update but the WMF rendering of charts is causing problems so I am using an old version for now) In my attached demo, (1) the marks for the two series overlap and (2) the text for the last one cuts off the right side. How can I fix this? My...
by Test Always
Wed Jan 15, 2014 6:26 pm
Forum: VCL
Topic: Pie Tool Line width goes to 4
Replies: 1
Views: 3948

Pie Tool Line width goes to 4

v 2013.09, Delphi XE2

In the attached demo, the pie tool line width is 1 at design time, but when you run the app, it becomes 4.

Ed Dressel
by Test Always
Wed Jan 15, 2014 6:24 pm
Forum: VCL
Topic: Marks are cut off
Replies: 6
Views: 10284

Re: Marks are cut off

Any comments?
by Test Always
Mon Jul 01, 2013 9:33 pm
Forum: VCL
Topic: Transparent panel
Replies: 1
Views: 3948

Transparent panel

I have a 2D chart that I would like the back panel to be optionally transparent (to compliment my Dex Express skinning). I tried various panel settings for the panel but I couldn't get it to work. Can the panel be hidden?
by Test Always
Fri Jun 28, 2013 7:26 pm
Forum: VCL
Topic: Position (TPoint) of the top of a stacked TBarSeries
Replies: 1
Views: 4086

Position (TPoint) of the top of a stacked TBarSeries

Given the X index of a stacked bar, I need to place the cursor at the top of bars. I have the following code: begin lPt.X := Chart1.BottomAxis.CalcXPosValue(spnXPos.EditingValue); lPt.Y := Chart1.LeftAxis.CalcYPosValue(Chart1.LeftAxis.Maximum); lPt := ClientToSCreen(lPt); SetCursorPos(lPt.X, lPt.Y);...