Search found 17 matches

by VideoTrack
Mon Apr 08, 2024 5:58 am
Forum: VCL
Topic: Downloads are not working
Replies: 3
Views: 174

Re: Downloads are not working

Update, the file that is downloaded is named: "TeeChartVCLFMX-2023.39.exe", however, it is not an exe at all, it appears to be a PHP error. Below are the contents of that exe file: ____________________________________________________ <div style="border:1px solid #990000;padding-left:20px;margin:0 0 ...
by VideoTrack
Sun Nov 18, 2018 12:57 pm
Forum: VCL
Topic: Align Marks Text with start of Horizontal Bar?
Replies: 2
Views: 7995

Re: Align Marks Text with start of Horizontal Bar?

Many thanks for the support. I got it working OK using a derivative of your example.
by VideoTrack
Sun Nov 18, 2018 11:15 am
Forum: VCL
Topic: How is it possible to use the right axis?
Replies: 2
Views: 7474

Re: How is it possible to use the right axis?

Many thanks for the clarification. I didn't work quite how In expected as it introduced another intervening blank horizontal bar that I cannot use, but I now know how to implement it.
by VideoTrack
Tue Nov 13, 2018 2:06 pm
Forum: VCL
Topic: How is it possible to use the right axis?
Replies: 2
Views: 7474

How is it possible to use the right axis?

I am unable to get the right axis to appear or display any values once a series has been added. Even the Chart Editor does not appear to allow anything to be drawn on the right axis. The Right Axis is visible until I add a series. I guess this must be simple, but it has got me confused. Many thanks ...
by VideoTrack
Tue Nov 13, 2018 1:47 pm
Forum: VCL
Topic: Align Marks Text with start of Horizontal Bar?
Replies: 2
Views: 7995

Align Marks Text with start of Horizontal Bar?

I have a stacked Horizontal Bar series. I am using custom mark position to place the marks above the bar series. However, despite efforts, the text I want to display shows at the RHS of the bar. How can I show the value at the LHS of the bar? The values I display are the actual start positions of th...
by VideoTrack
Tue Nov 13, 2018 1:32 pm
Forum: VCL
Topic: Count of Graph items in viewport?
Replies: 2
Views: 7600

Re: Count of Graph items in viewport?

Excellent, many thanks!
by VideoTrack
Tue Nov 06, 2018 10:06 am
Forum: VCL
Topic: Count of Graph items in viewport?
Replies: 2
Views: 7600

Count of Graph items in viewport?

I have a graph with a scroll bar to scroll through the contents of a bar series. The 'visible' contents of the bar series are much less than the total bar series count. How can I determine programmatically how many bar series items in the graph are 'visible' in the viewport of the series? In other w...
by VideoTrack
Fri Oct 12, 2018 12:09 am
Forum: VCL
Topic: How to place a 'point' on a horizontal bar graph.
Replies: 2
Views: 7980

Re: How to place a 'point' on a horizontal bar graph. [Solved]

Resolved by adding the Point series separately: {______________________________________________________________________________} procedure TForm4.Button1Click(Sender: TObject); var Rnd : Integer; i : Integer; j : Integer; MyColour : TColor; begin {attempt to add a data set to the bar chart} SetLengt...
by VideoTrack
Tue Oct 09, 2018 11:08 am
Forum: VCL
Topic: How to place a 'point' on a horizontal bar graph.
Replies: 2
Views: 7980

How to place a 'point' on a horizontal bar graph.

I want to draw a horizontal bar graph series and draw one of more points at some location over the horizontal bar. The bars work fine until I want to add the points, and then only every second bar is displayed. How can I show TPoints and also display every horizontal bar? var HSeries : array of THor...
by VideoTrack
Thu Jul 12, 2018 10:13 am
Forum: VCL
Topic: Error 6 transferring internal Bitmap using BitBlt
Replies: 3
Views: 9503

Re: Error 6 transferring internal Bitmap using BitBlt

Hello
The project is quite complex and requires many other inputs.

But I attached (I hope) the zip file of the error trace log.
382291BE_VM-TMC-TNET_20180711102602 - Copy.zip
(10.12 KiB) Downloaded 804 times
by VideoTrack
Wed Jul 11, 2018 11:03 am
Forum: VCL
Topic: Error 6 transferring internal Bitmap using BitBlt
Replies: 3
Views: 9503

Error 6 transferring internal Bitmap using BitBlt

I have an application using a TeeChart Occasionally, I get an error: "Error 6 transferring internal Bitmap using BitBlt" which should not occur. There is nothing complicated about the calls, and it runs fine on many systems, but has issues I think on a Windows 7 system after upgrading to the latest ...
by VideoTrack
Wed Jun 20, 2018 12:13 pm
Forum: VCL
Topic: Plotting Lat/Long data as LineSeries gives incorrect display
Replies: 8
Views: 15571

Re: Plotting Lat/Long data as LineSeries gives incorrect display

Thank you

Both changing from FastLineSeries to LineSeries, and adding the null worked.

Code: Select all

  
Dist := GetDistanceBetweenTwoLocations(ThisPt, LastPt, False);
  if (Dist < 500) then 
    Series1.AddXY(ThisPt.X, ThisPt.Y)
    else
    Series1.AddNull;
Your assistance is greatly appreciated
by VideoTrack
Tue Jun 19, 2018 11:10 pm
Forum: VCL
Topic: Plotting Lat/Long data as LineSeries gives incorrect display
Replies: 8
Views: 15571

Re: Plotting Lat/Long data as LineSeries gives incorrect display

Hi Team I have created a program that reproduces my issue. It needs the csv data file to be copied to the same location as the exe. Click on a point on the grid to draw the chart to that point. The problem occurs at row 148. 2018-06-20_09-03-42.jpg procedure TForm5.Button1Click(Sender: TObject); var...
by VideoTrack
Tue Jun 19, 2018 2:00 pm
Forum: VCL
Topic: Plotting Lat/Long data as LineSeries gives incorrect display
Replies: 8
Views: 15571

Re: Plotting Lat/Long data as LineSeries gives incorrect display

Thank you Yeeray for your valuable support, it is appreciated. I may have located the cause, but I don't yet know how to resolve. I have found that the vehicle records when it goes 'online' and travels from A(north) to B(south). It then goes 'offline' while it tracks back to point A again, goes onli...
by VideoTrack
Sat Jun 16, 2018 1:39 pm
Forum: VCL
Topic: Plotting Lat/Long data as LineSeries gives incorrect display
Replies: 8
Views: 15571

Re: Plotting Lat/Long data as LineSeries gives incorrect display

Hello, This probably happens because the values are x-sorted by default. You can disable this with: Series1.XValues.Order:=loNone; Thanks Yeeray, that's a minor improvement, but the start/end points lines are still being incorrectly connected. The graphic below shows the real vehicle path (green ar...