Hello,
We are checking this. Could you confirm please, that the issue only appeared with 4.2022.2.28 and the previous build number that you used that didn't display the problem if that is the case.
With thanks.
Regards,
Marc Meumann
Search found 1040 matches
- Fri Apr 29, 2022 4:02 pm
- Forum: .NET
- Topic: Xamarin.Forms Droid => licensing problem
- Replies: 4
- Views: 616
- Thu Apr 21, 2022 8:21 am
- Forum: VCL / FMX
- Topic: Bug/Usability Issue: Column with data renders as empty
- Replies: 2
- Views: 752
Re: Bug/Usability Issue: Column with data renders as empty
Hello Yoni, Please take a look at the PaintPicture method in this example: https://github.com/Steema/TeeGrid-VCL-FMX-Samples/tree/master/demos/VirtualData/TStringGrid The handler is setup to act upon the data for the column, in this case to handle an image; but the approach can be used to handle dif...
- Wed Apr 20, 2022 7:56 am
- Forum: .NET
- Topic: teegrid for displaying measured data
- Replies: 1
- Views: 1234
Re: teegrid for displaying measured data
Hello, Apologies for the delay, I see this post was missed. You likely have found the solution but here are details of how the connection can be made: See the example here: https://github.com/Steema/TeeGrid-NET-Samples/tree/main/WinForms/NET%20Framework/Cell%20Editors Form1 includes a method to conn...
- Wed Apr 20, 2022 7:19 am
- Forum: .NET
- Topic: Multi Selection of rows
- Replies: 1
- Views: 551
Re: Multi Selection of rows
Hello, Example: //set with: teeGrid1.Selected.Changed += Selected_Changed; //example event code private void Selected_Changed(object sender, EventArgs e) { var selection = sender as GridSelection; if (selection.Column == teeGrid1.Columns[0] && selection.Row != 5) { MessageBox.Show($"You've clicked a...
- Tue Apr 19, 2022 8:10 am
- Forum: VCL
- Topic: Filling within outlines on graphs
- Replies: 3
- Views: 1033
Re: Filling within outlines on graphs
Hello Bruce, This example would go some way to the goal, proof of concept. You can make adjustments as necessary: procedure TForm1.Chart1AfterDraw(Sender: TObject); var i : Integer; myPoints : Array of TPoint; begin Chart1.Canvas.Brush.Gradient.StartColor := clRed; //can use (a)rgb colours Chart1.Ca...
- Fri Apr 08, 2022 3:13 pm
- Forum: VCL / FMX
- Topic: Usability Issue: Horizontal and Vertical Scroll jump
- Replies: 1
- Views: 720
Re: Usability Issue: Horizontal and Vertical Scroll jump
Hello,
I've added that as a bug for investigation:
http://bugs.steema.com/show_bug.cgi?id=2520
Regards,
Marc
I've added that as a bug for investigation:
http://bugs.steema.com/show_bug.cgi?id=2520
Regards,
Marc
- Fri Apr 08, 2022 3:06 pm
- Forum: VCL / FMX
- Topic: TeeGrid 1.1, Lazarus 2.2.0 and Linux Installation
- Replies: 6
- Views: 1217
Re: TeeGrid 1.1, Lazarus 2.2.0 and Linux Installation
This may take us some time. The normal route to Linux that we recommend for TeeGrid is via Firemonkey; but we are looking at the code in Lazarus/Linux for options to compile.
Regards,
Marc
Regards,
Marc
- Fri Apr 08, 2022 3:04 pm
- Forum: VCL
- Topic: TeeChart for producing alluvial or sankey type plots
- Replies: 2
- Views: 650
Re: TeeChart for producing alluvial or sankey type plots
Hello Bruce,
They'd be interesting plots for TeeChart. I've added them as a feature request. We'll take a look.
ref:
http://bugs.steema.com/show_bug.cgi?id=2519
Regards,
Marc
They'd be interesting plots for TeeChart. I've added them as a feature request. We'll take a look.
ref:
http://bugs.steema.com/show_bug.cgi?id=2519
Regards,
Marc
- Fri Apr 08, 2022 2:56 pm
- Forum: VCL
- Topic: Filling within outlines on graphs
- Replies: 3
- Views: 1033
Re: Filling within outlines on graphs
Hello Bruce, You could take the point values that you use to plot the data, converting them to pixel locations using: Series1.CalcXPosValue(value) and Series1.CalcYPosValue(value) ..or loop through the indexes of the points using: Series1.CalcXPos(idx) and Series1.CalcYPos(idx) ..and adding them to ...
- Fri Apr 08, 2022 2:45 pm
- Forum: VCL
- Topic: TeeChart - Dynamic (Custom) Colors for PieChart
- Replies: 1
- Views: 480
Re: TeeChart - Dynamic (Custom) Colors for PieChart
Hello, You can set the colour as you add the data, using an rgb colour that matches the colour you require. eg. Series1.AddXY(50,50,'',rgb(128,107,45)); or change the colour after adding the data. Series1.ValueColor[1] := rgb(108,107,245); alternatively, if you're working with a datasource, you can ...
- Thu Apr 07, 2022 9:50 pm
- Forum: VCL
- Topic: WheelEvent queue in the OnZoom handler
- Replies: 1
- Views: 529
Re: WheelEvent queue in the OnZoom handler
Hello, Is the test being run on an older PC? We can't reproduce the issue on straightforward tests. You can likely use the following two events and run a counter in there: procedure TForm1.Chart1MouseWheel(Sender: TObject; Shift: TShiftState; WheelDelta: Integer; MousePos: TPoint; var Handled: Boole...
- Thu Apr 07, 2022 9:34 pm
- Forum: VCL
- Topic: TChart.OnZoom handler
- Replies: 1
- Views: 490
Re: TChart.OnZoom handler
Hello,
You may be better advised to check the mouse move/up event to register how the action took place. You could set a variable that is then used when the OnZoom event triggers.
Regards,
Marc Meumann
You may be better advised to check the mouse move/up event to register how the action took place. You could set a variable that is then used when the OnZoom event triggers.
Regards,
Marc Meumann
- Thu Apr 07, 2022 9:30 pm
- Forum: VCL
- Topic: Error in VCLTee.TeeJavaScript
- Replies: 6
- Views: 1368
Re: Error in VCLTee.TeeJavaScript
Hello Willi, Yes, so this appears to be a Delphi issue, not related to TeeChart. The daylight changeover time coincides exactly with what would be, thus, an invalid date. If I take your routine and output the result to an edit box: procedure TForm1.Button3Click(Sender: TObject); Var Date_in_Text, Da...
- Thu Apr 07, 2022 8:46 pm
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 11
- Views: 4303
Re: Use TeeChart in an IntraWeb application
Hello,
You need to load the supporting TeeChart package for Intraweb. YOu can download the most recent one here and update the references for your version of RAD Studio/Intraweb. See the readme.txt.
https://www.steema.com/downloads/vcl
Regards,
Marc Meumann
You need to load the supporting TeeChart package for Intraweb. YOu can download the most recent one here and update the references for your version of RAD Studio/Intraweb. See the readme.txt.
https://www.steema.com/downloads/vcl
Regards,
Marc Meumann
- Fri Apr 01, 2022 10:39 am
- Forum: VCL
- Topic: Error in VCLTee.TeeJavaScript
- Replies: 6
- Views: 1368
Re: Error in VCLTee.TeeJavaScript
Hello Willi, Ok thanks for testing that. Using the original codeline, (tmpDate:=TTimeZone.Local.ToUniversalTime(AList[Index]);), are you able to break on the line and send tell us a value of AList[Index] that generates the ELocalTimeInvalid exception? ....or, better, if you're able to send us a smal...