Search found 18 matches
- Thu Sep 05, 2024 12:13 pm
- Forum: VCL / FMX
- Topic: TCheckBox as column EditorClass
- Replies: 5
- Views: 38643
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.
- Thu Sep 05, 2024 6:42 am
- Forum: VCL / FMX
- Topic: TCheckBox as column EditorClass
- Replies: 5
- Views: 38643
Re: TCheckBox as column EditorClass
Is it planned to make the checkbox more convenient?
- Fri Feb 23, 2024 1:08 pm
- Forum: VCL / FMX
- Topic: TeeGrid color questions
- Replies: 8
- Views: 38731
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.
You can see this with my example program.
- Fri Feb 02, 2024 8:31 am
- Forum: VCL / FMX
- Topic: TeeGrid color questions
- Replies: 8
- Views: 38731
Re: TeeGrid color questions
Here is my example:
- Thu Feb 01, 2024 1:53 pm
- Forum: VCL / FMX
- Topic: TeeGrid color questions
- Replies: 8
- Views: 38731
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:
- Mon Dec 11, 2023 12:52 pm
- Forum: VCL / FMX
- Topic: TCheckBox as column EditorClass
- Replies: 5
- Views: 38643
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...
- Mon Dec 11, 2023 12:22 pm
- Forum: VCL / FMX
- Topic: Grid scrollbar height
- Replies: 1
- Views: 13908
Grid scrollbar height
Is there any way to set the grid horizontal scrollbar height?
- Mon Nov 20, 2023 2:19 pm
- Forum: FMX
- Topic: Grid header is affected by legend shadow
- Replies: 8
- Views: 33149
Re: Grid header is affected by legend shadow
Thank you, now it is working
- Mon Nov 20, 2023 8:14 am
- Forum: FMX
- Topic: Grid header is affected by legend shadow
- Replies: 8
- Views: 33149
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?
- Fri Nov 17, 2023 7:54 am
- Forum: FMX
- Topic: Grid header is affected by legend shadow
- Replies: 8
- Views: 33149
Re: Grid header is affected by legend shadow
Here is my example.
- Thu Nov 16, 2023 9:39 am
- Forum: FMX
- Topic: Grid header is affected by legend shadow
- Replies: 8
- Views: 33149
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:
- Mon Nov 06, 2023 4:22 pm
- Forum: FMX
- Topic: Grid header is affected by legend shadow
- Replies: 8
- Views: 33149
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.
- Mon Nov 06, 2023 4:08 pm
- Forum: FMX
- Topic: Draw chart grid lines crossing points
- Replies: 2
- Views: 17372
Re: Draw chart grid lines crossing points
Thank you for the code, it works fine!
- Fri Nov 03, 2023 12:59 pm
- Forum: FMX
- Topic: Draw chart grid lines crossing points
- Replies: 2
- Views: 17372
Draw chart grid lines crossing points
Hello, is it possible to draw the crossing points of the axes grid lines only?
- Mon Oct 16, 2023 11:59 am
- Forum: FMX
- Topic: TSeriesPointer.DrawPointer psSmallDot doesn't work with FMX
- Replies: 1
- Views: 25393
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.