Search found 1208 matches

by Marc
Thu Oct 26, 2023 11:47 am
Forum: VCL / FMX
Topic: TeeGrid V1.12 & C++ Builder 11.3 and runtime packages
Replies: 1
Views: 14545

Re: TeeGrid V1.12 & C++ Builder 11.3 and runtime packages

Hello Andy,

Thank you for the bug report. We can reproduce it and will check for a fix.

Regards,
Marc Meumann
by Marc
Thu Oct 26, 2023 11:38 am
Forum: VCL / FMX
Topic: TeeGrid Swipe?
Replies: 2
Views: 17060

Re: TeeGrid Swipe?

Hello,

No gestures beyond Tap are currently supported. It has been added as a feature request.

Regards,
Marc Meumann
by Marc
Thu Oct 26, 2023 11:10 am
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 35219

Re: TeeGrid OnTap

Hello, I've tried it in the CellEditors project (FMX on Windows) with the following co-ordinates; procedure TFormCellEditors.Button1Click(Sender: TObject); var myColumn : TColumn; myRow : Integer; begin myColumn := TeeGrid1.Columns.FindAt(160,TeeGrid1.Width); myRow := TeeGrid1.Rows.RowAt(218,TeeGrid...
by Marc
Sun Oct 15, 2023 10:14 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 20881

Re: Questions regarding export charts to various formats

Progress report: 2 improvements will be included with an update build this week: correction of irregularities of circumference plot for Pie series in SVG export https://www.steema.com/bugs/show_bug.cgi?id=2636 Improvements to text positioning for SVG export https://www.steema.com/bugs/show_bug.cgi?i...
by Marc
Tue Oct 10, 2023 4:28 pm
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 35219

Re: TeeGrid OnTap

Great, thanks for the feedback.
by Marc
Tue Oct 10, 2023 7:44 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 20881

Re: Questions regarding export charts to various formats

Thank you for the additional feedback. We're working through the points you've raised. Some issues have been resolved or are being worked on; improvements will be made to SVG export. We have currently not entered into checks on the Custom fonts for EPS question. Re. a) Is there a way, to ensure that...
by Marc
Mon Oct 09, 2023 4:18 pm
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 35219

Re: TeeGrid OnTap

Hello, Apologies for the delay with the reply. The detail for the information required is found via: var myColumn : TColumn; myRow : Integer; myX; myY: Integer; begin //myX := x //myY := y myColumn := TeeGrid1.Columns.FindAt(myX,TeeGrid1.Width); myRow := TeeGrid1.Rows.RowAt(myY,TeeGrid1.Height); Sho...
by Marc
Mon Oct 09, 2023 1:44 pm
Forum: VCL / FMX
Topic: TeeGrid show graphic in column?
Replies: 2
Views: 13099

Re: TeeGrid show graphic in column?

Hello,

This example renders a bitmap to a cell:

https://github.com/Steema/TeeGrid-VCL-F ... StringGrid

Regards,
Marc Meumann
by Marc
Wed Oct 04, 2023 6:51 pm
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 20881

Re: Questions regarding export charts to various formats

Hello, Here's a review of your questions: Re. 1 Does TeeChart have the functionality to scale images so that all font sizes, line weights, and other elements would scale accordingly on exporting JPEG or other formats? For bitmap formats such as JPEG & PNG, no. This to be automatic it would need to b...
by Marc
Tue Oct 03, 2023 10:35 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 20881

Re: Questions regarding export charts to various formats

Hello, There are several issues here that we are looking at. Some that are subject to design limitations, some for which we may be able to offer a workable approach for your requirements and at least one other that we may be able to add as a feature improvement. We will get back to this thread on ea...
by Marc
Tue Oct 03, 2023 8:42 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 20881

Re: Questions regarding export charts to various formats

Hello, Re. 3) For chart type Line, after we increase the line width it starts to be visible, that two lines join have some white gaps. The more sharper the line connects another line, the more it is visible. Looks like, two rectangles were drawn without filling a smooth connection between them. Ther...
by Marc
Wed Sep 27, 2023 9:40 am
Forum: .NET
Topic: What is the latest version that fully supports .NET 5.0?
Replies: 1
Views: 11817

Re: What is the latest version that fully supports .NET 5.0?

Hello,

Reviewing release builds it seems there was a problem with NET5 support specifically with the 4.2023.4.18 release. Subsequent builds build for NET5 projects. We recommend anyway, moving to NET6+ when possible.

Regards,
Marc Meumann
by Marc
Tue Sep 26, 2023 10:20 am
Forum: JavaScript / HTML5
Topic: Unable find mouse click event on rectangle
Replies: 9
Views: 53409

Re: Unable find mouse click event on rectangle

Hello Here's the approach used in the Steema demos: https://www.steema.com/files/public/teechart/html5/es6test/demos/ This one for example, https://www.steema.com/files/public/teechart/html5/es6test/demos/series/line/highlow.html, the resize routine is in demo.js. It modifies the width but could app...
by Marc
Tue Sep 26, 2023 7:21 am
Forum: .NET
Topic: Incorrect left axis position when changing labels text with GetAxisDrawLabel event
Replies: 4
Views: 13871

Re: Incorrect left axis position when changing labels text with GetAxisDrawLabel event

Hello, Something like this would do it: tChart1.Axes.Left.FixedLabelSize = false; tChart2.Axes.Left.FixedLabelSize = false; if (tChart1.Axes.Left.MaxLabelsWidth() > tChart2.Axes.Left.MaxLabelsWidth()) { tChart1.Axes.Left.Labels.CustomSize = tChart1.Axes.Left.MaxLabelsWidth(); tChart2.Axes.Left.Label...
by Marc
Mon Sep 25, 2023 3:28 pm
Forum: .NET
Topic: A new WinForms App (.NET Framework 4.x) created from a scratch is not compiling
Replies: 10
Views: 17939

Re: A new WinForms App (.NET Framework 4.x) created from a scratch is not compiling

Hello, We're checking the options here. Our test results for VSNet2019: If you wish to use Framework 4.0, we confirm that TeeChart v4.2023.4.18 works correctly on Winform for both a designtime and runtime chart. If you are able to use Framework 4.5.1, we confirm that TeeChart v4.2023.8.31, the lates...