Search found 13 matches
- Thu Sep 10, 2020 1:40 am
- Forum: .NET
- Topic: Adding labels to Areas
- Replies: 1
- Views: 8099
Adding labels to Areas
When plotting using the Area graphic is it possible to add a label?
- Tue Sep 08, 2020 12:59 am
- Forum: .NET
- Topic: Transfer TeeChart license to new computer
- Replies: 1
- Views: 8053
Re: Transfer TeeChart license to new computer
Just to let everyone know that this issue has been resolved very quickly and efficiently by Steema tech support and I want to highlight how excellent the TeeChart product is and brilliantly supported by Steema.
Thank you!
Thank you!
- Sun Sep 06, 2020 2:06 am
- Forum: .NET
- Topic: Transfer TeeChart license to new computer
- Replies: 1
- Views: 8053
Transfer TeeChart license to new computer
We are upgrading our development computer and need to transfer the license for TeeChart .NET across. TeeChart is all installed on but when I run the TeeCalc_Lic.exe and click activate I get "The activation process has failed" I tried manual authorization but cannot locate the 44 character code. Our ...
- Wed May 01, 2019 9:38 pm
- Forum: .NET
- Topic: TeeChart for .NET v2019 with 100% C# Sources RELEASE 4.2019.2.8
- Replies: 3
- Views: 23810
Re: TeeChart for .NET v2019 with 100% C# Sources RELEASE 4.2019.2.8
Thank you for your response and sending us the license however the Zip file is password protected and I cannot open it and the license app reports an error.
- Tue Apr 30, 2019 10:18 am
- Forum: .NET
- Topic: copied and printed TeeChart colors
- Replies: 2
- Views: 12188
Re: copied and printed TeeChart colors
Thanks Chris. I got the save to clipboard function to work but had to change to PNG format. Your tip about BufferStyle worked! Here is my code: Private Sub ButtonCopyGraph_Click(sender As Object, e As EventArgs) Handles ButtonCopyGraph.Click Dim PNG As Steema.TeeChart.Export.PNGFormat MainForm.TChar...
- Tue Apr 30, 2019 10:00 am
- Forum: .NET
- Topic: TeeChart for .NET v2019 with 100% C# Sources RELEASE 4.2019.2.8
- Replies: 3
- Views: 23810
Re: TeeChart for .NET v2019 with 100% C# Sources RELEASE 4.2019.2.8
Hi Gemma,
We purchased TeeChart for .NET in December 2018 and I have attached a copy of the paid invoice. Are we able to upgrade to v2019 with this license?
Thank you
Rob
We purchased TeeChart for .NET in December 2018 and I have attached a copy of the paid invoice. Are we able to upgrade to v2019 with this license?
Thank you
Rob
- Tue Feb 26, 2019 12:11 pm
- Forum: .NET
- Topic: Drawing X and Y axes on chart
- Replies: 1
- Views: 9986
Drawing X and Y axes on chart
Is there any way to ensure TeeChart draws the X and Y axes on a graph. In other words I need to display a vertical and horizontal line through the origin (0,0) of my Fastline chart.
Thanks
Rob
Thanks
Rob
- Tue Feb 26, 2019 12:04 pm
- Forum: .NET
- Topic: copied and printed TeeChart colors
- Replies: 2
- Views: 12188
copied and printed TeeChart colors
In my current application when I copy: Private Sub ButtonCopyGraph_Click(sender As Object, e As EventArgs) Handles ButtonCopyGraph.Click Dim JPEGf As Steema.TeeChart.Export.JPEGFormat = MainForm.TChartBMS.Export.Image.JPEG JPEGf.Height = 500 JPEGf.Width = 700 JPEGf.GrayScale = False JPEGf.Quality = ...
- Mon Feb 25, 2019 9:36 pm
- Forum: .NET
- Topic: Fastline.Add - load with individual points or pass array
- Replies: 7
- Views: 21614
Re: Fastline.Add - load with individual points or pass array
Hi Christopher,
Brilliant!
All looking good now. Thanks very much. As always outstanding support from Steema!
Kind regards
Rob
Brilliant!
All looking good now. Thanks very much. As always outstanding support from Steema!
Kind regards
Rob
- Mon Feb 25, 2019 1:06 pm
- Forum: .NET
- Topic: Fastline.Add - load with individual points or pass array
- Replies: 7
- Views: 21614
Re: Fastline.Add - load with individual points or pass array
Here is the file Zip compressed as well.
- Mon Feb 25, 2019 1:03 pm
- Forum: .NET
- Topic: Fastline.Add - load with individual points or pass array
- Replies: 7
- Views: 21614
Re: Fastline.Add - load with individual points or pass array
Hi Christopher,
The file is CSV so no need to unzip. Just rename changing .zip to .csv
I had to do this because the forum will not accept files with .csv extension.
Kind regards
Rob
The file is CSV so no need to unzip. Just rename changing .zip to .csv
I had to do this because the forum will not accept files with .csv extension.
Kind regards
Rob
- Sun Feb 24, 2019 9:21 am
- Forum: .NET
- Topic: Fastline.Add - load with individual points or pass array
- Replies: 7
- Views: 21614
Re: Fastline.Add - load with individual points or pass array
Hi Christopher, Thanks for your reply. I cannot figure out why there is a difference. With follow code: For count = 0 To plotsamples FastLineForce.Add(velocity(count + zoomstart), force(count + zoomstart)) Next count I get the distorted graph attached. Some points are plotting correctly but then the...
- Fri Feb 15, 2019 12:01 am
- Forum: .NET
- Topic: Fastline.Add - load with individual points or pass array
- Replies: 7
- Views: 21614
Fastline.Add - load with individual points or pass array
Hi, We have been using TeeChart.NET for more than a decade and love it. We have always loaded data into the FastLine using code such as: For count = 1 To samplecount FastLineVelocity.Add(velocity(count), force(count)) Next count However, we have been having trouble with a new plot and so have change...