Search found 18 matches

by InfraTec
Thu Sep 05, 2024 12:13 pm
Forum: VCL / FMX
Topic: TCheckBox as column EditorClass
Replies: 5
Views: 28381

Re: TCheckBox as column EditorClass

The implementation is up to you. But I do not want to change the steema units every time I (or my colleague) installed a newer version.
by InfraTec
Thu Sep 05, 2024 6:42 am
Forum: VCL / FMX
Topic: TCheckBox as column EditorClass
Replies: 5
Views: 28381

Re: TCheckBox as column EditorClass

Is it planned to make the checkbox more convenient?
by InfraTec
Fri Feb 23, 2024 1:08 pm
Forum: VCL / FMX
Topic: TeeGrid color questions
Replies: 8
Views: 29716

Re: TeeGrid color questions

Thank you for the fix. It works for the last line. But unfortunately the header lines are now shifted slightly right.
You can see this with my example program.
by InfraTec
Fri Feb 02, 2024 8:31 am
Forum: VCL / FMX
Topic: TeeGrid color questions
Replies: 8
Views: 29716

Re: TeeGrid color questions

Here is my example:
by InfraTec
Thu Feb 01, 2024 1:53 pm
Forum: VCL / FMX
Topic: TeeGrid color questions
Replies: 8
Views: 29716

Re: TeeGrid color questions

I used this example to colorize the header, but now unfortunately the header lines of the last visible column (left and right) are not drawn:
by InfraTec
Mon Dec 11, 2023 12:52 pm
Forum: VCL / FMX
Topic: TCheckBox as column EditorClass
Replies: 5
Views: 28381

Re: TCheckBox as column EditorClass

To make it working I did the following points (if somebody is interested): TFMXTeeGrid.TryChangeEditorData function GetEditorText if IEditor is TCheckBox then begin if TCheckBox(IEditor).IsChecked then result:='True' else result:='False'; end Draw a hook (not a cross) in TShapePainter.Check Assign T...
by InfraTec
Mon Dec 11, 2023 12:22 pm
Forum: VCL / FMX
Topic: Grid scrollbar height
Replies: 1
Views: 10454

Grid scrollbar height

Is there any way to set the grid horizontal scrollbar height?
by InfraTec
Mon Nov 20, 2023 2:19 pm
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 25675

Re: Grid header is affected by legend shadow

Thank you, now it is working :)
by InfraTec
Mon Nov 20, 2023 8:14 am
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 25675

Re: Grid header is affected by legend shadow

I changed the code as you suggested. But the method isn't used by the example program. Do I have to change anything else?
by InfraTec
Fri Nov 17, 2023 7:54 am
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 25675

Re: Grid header is affected by legend shadow

Here is my example.
by InfraTec
Thu Nov 16, 2023 9:39 am
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 25675

Re: Grid header is affected by legend shadow

The effect isn't visible with your example. But with modification to LineSeries I got the issue:
Shadow.JPG
My example
Shadow.JPG (47.77 KiB) Viewed 25129 times
by InfraTec
Mon Nov 06, 2023 4:22 pm
Forum: FMX
Topic: Grid header is affected by legend shadow
Replies: 8
Views: 25675

Grid header is affected by legend shadow

I have a TeeChart at one panel and a TeeGrid at another panel. If the chart has a legend with shadow, the grid column headers are drawn with shadow color background! There should not be a connection.
by InfraTec
Mon Nov 06, 2023 4:08 pm
Forum: FMX
Topic: Draw chart grid lines crossing points
Replies: 2
Views: 13765

Re: Draw chart grid lines crossing points

Thank you for the code, it works fine!
by InfraTec
Fri Nov 03, 2023 12:59 pm
Forum: FMX
Topic: Draw chart grid lines crossing points
Replies: 2
Views: 13765

Draw chart grid lines crossing points

Hello, is it possible to draw the crossing points of the axes grid lines only?
by InfraTec
Mon Oct 16, 2023 11:59 am
Forum: FMX
Topic: TSeriesPointer.DrawPointer psSmallDot doesn't work with FMX
Replies: 1
Views: 22421

TSeriesPointer.DrawPointer psSmallDot doesn't work with FMX

In TSeriesPointer.DrawPointer case psSmallDot Pixels[PX,PY] is filled with Brush.Color. This isn't sufficient for FMX -> nothing is drawn.