Search found 1194 matches

by Marc
Mon Aug 21, 2023 4:34 pm
Forum: .NET
Topic: How to adjust table styles adaptively?
Replies: 1
Views: 10916

Re: How to adjust table styles adaptively?

Hello, Re. 2) I want the table to have grid lines Open the Chart Editor after adding the tool go to the tool in the toolslist and select: - Rows to edit the horizontal Pen - Columns to edit the vertical Pen (display the grid lines) Re. 3) Data crowding together want to scroll bar The table can only ...
by Marc
Mon Aug 21, 2023 4:24 pm
Forum: .NET
Topic: How to set the X with category data?
Replies: 19
Views: 26765

Re: How to set the X with category data?

Hello, Re. Problem 1. 1) As shown in the image above, "Raw Data" Chart is drawn this way, but what about overlapping X-axis headings ? 2) What should I do if the X-axis title overflows? How are you adding the data labels? What code. Axis labels normally automatically separate when added, some circum...
by Marc
Thu Aug 17, 2023 11:00 am
Forum: VCL
Topic: How to Draw Lines
Replies: 1
Views: 10595

Re: How to Draw Lines

Hello, This example code would plot a line from the Chart's 0,0 location to 5,5: procedure TForm4.Chart1AfterDraw(Sender: TObject); var x0,y0,x1,y1 : Integer; begin if Series1.Count>5 then Begin x0 := Chart1.Axes.Bottom.CalcXPosValue(0); y0 := Chart1.Axes.Left.CalcYPosValue(0); x1 := Chart1.Axes.Bot...
by Marc
Mon Aug 14, 2023 11:43 am
Forum: VCL
Topic: Displaying charts on TeePreviewPanel
Replies: 7
Views: 14527

Re: Displaying charts on TeePreviewPanel

Hello Metek,

I'm checking what repaint method can force the render but haven't found one yet other than CopyToClipboard, which works but, as the name implies, leaves a chart on the clipboard.

ie.
Charts.CopyToClipboardBitmap;

Regards,
Marc Meumann
by Marc
Fri Aug 11, 2023 11:08 am
Forum: VCL
Topic: Installing from source: TVisualBlock undefined
Replies: 4
Views: 13146

Re: Installing from source: TVisualBlock undefined

Hello,

We are checking the source-control related to TeeMaker and will make the fix available, Apologies for the inconvenience.

Regards,
Marc Meumann
by Marc
Thu Aug 03, 2023 8:53 am
Forum: ActiveX
Topic: When a data point is expected to appear in the chart ?
Replies: 3
Views: 27163

Re: When a data point is expected to appear in the chart ?

I tried this code (TeeChart AX 2023 and VB6: added a Pojnt Series to Chart. No other changes. Private Sub Command1_Click() TChart1.AutoRepaint = False TChart1.Series(0).AddXY 10, 10, "", clTeeColor TChart1.AutoRepaint = True TChart1.Repaint End Sub vbpoint.jpg It painted ok. Maybe worth checking wit...
by Marc
Wed Aug 02, 2023 12:01 pm
Forum: ActiveX
Topic: When a data point is expected to appear in the chart ?
Replies: 3
Views: 27163

Re: When a data point is expected to appear in the chart ?

Hello Angelo,

With one point in the chart you typically see the axes with just one gridline running into the chart. What do you see?

You may not see the point if the Pointer visible isn't true (for a LineSeries). What type of Series are you using?

Regards,
Marc Meumann
by Marc
Wed Aug 02, 2023 11:56 am
Forum: ActiveX
Topic: What's wrong with CSeries?
Replies: 1
Views: 11114

Re: What's wrong with CSeries?

Hello, We'll need the context of a test project to see what's happening. If I test it in one of the MFC projects included with TeeChart, "Dragging Points", then this syntax works fine: int myColor = RGB(255,255,0); CSeries mySeries = m_ctrlChart.Series(1); mySeries.SetColor(myColor); Regards, Marc M...
by Marc
Wed Jul 05, 2023 2:16 pm
Forum: VCL / FMX
Topic: Error installing TeeGrid trial version
Replies: 2
Views: 21021

Re: Error installing TeeGrid trial version

Hello Andy,

Is there the possibility of any older version/aborted-install somewhere on the IDE search path?

Also check please to run the installer with administrator rights.

Regards,
Marc Meumann
by Marc
Fri Jun 30, 2023 8:23 am
Forum: .NET
Topic: zoom and scroll the panel image
Replies: 1
Views: 10982

Re: zoom and scroll the panel image

Hello, If you are associating an image with the start panel axes (before zoom) then I assume that you have already checked that the default coordination between image and x,y chart coordinates is correct. For that to coordinate correctly after zoom I suggest that you set it up in the following way: ...
by Marc
Fri Jun 30, 2023 7:25 am
Forum: .NET
Topic: icons or small images on the graph
Replies: 3
Views: 12120

Re: icons or small images on the graph

...one point to add. I described how to make the icon visible or not according to mousemove location. That may have missed the point a little. To actuate a link or "further process" when clicking in the zone, use the mousedown event and confirm that the boolean "zoneTrue" is active to actuate or not...
by Marc
Fri Jun 30, 2023 7:19 am
Forum: .NET
Topic: icons or small images on the graph
Replies: 3
Views: 12120

Re: icons or small images on the graph

Hello, You can render an image in this way: private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g) { Image myIcon = Image.FromFile(@"D:\Data\TCoherence\Publicity\icons\myIcon.png"); g.Draw(100, 100, myIcon); } Calculate the location as you require. To align it correctly ...
by Marc
Thu Jun 29, 2023 9:06 am
Forum: .NET
Topic: Dependencies of Steema.TeeChart.NET
Replies: 11
Views: 16141

Re: Dependencies of Steema.TeeChart.NET

Thanks for the feedback/suggestion, we'll review the proposal.

Regards,
Marc
by Marc
Fri Jun 23, 2023 2:38 pm
Forum: .NET
Topic: Dependencies of Steema.TeeChart.NET
Replies: 11
Views: 16141

Re: Dependencies of Steema.TeeChart.NET

We choose version 7. It's the version going forward.
by Marc
Thu Jun 22, 2023 3:49 pm
Forum: .NET
Topic: Dependencies of Steema.TeeChart.NET
Replies: 11
Views: 16141

Re: Dependencies of Steema.TeeChart.NET

Greetings, With respect to the request to remove support for a package titled as Beta, SixLabors ImageSharp, we understand the requirement and propose this optional solution: To create a standalone TeeChart WPF Nuget that does not include the dependency. The currently active TeeChart Nugets will con...