Search found 1603 matches

by Christopher
Fri Apr 28, 2023 10:37 am
Forum: .NET
Topic: net6 and net4 (winform) and handling of chart settings
Replies: 14
Views: 9332

Re: net6 and net4 (winform) and handling of chart settings

Hello Kris, You can download the new source-code version from here: https://steema.com/files/public/support/Sources_4.2023.2.28.zip This is a simple zip file, instead of an installer, and the password is the first 12 characters of the TeeChart.licenses file you posted to our server in the file named...
by Christopher
Fri Apr 28, 2023 9:13 am
Forum: .NET
Topic: net6 and net4 (winform) and handling of chart settings
Replies: 14
Views: 9332

Re: net6 and net4 (winform) and handling of chart settings

Hello Kris, we're going to have to do a special source-code build specially for you, as we still have a number of problems with the System.Text.Json NuGet when referencing a netstandard2.0 project from net48, both using v7.0.0.0 and v.6.0.0.0. I'm working on this special build for you now, and will ...
by Christopher
Wed Apr 26, 2023 7:47 am
Forum: .NET
Topic: net6 and net4 (winform) and handling of chart settings
Replies: 14
Views: 9332

Re: net6 and net4 (winform) and handling of chart settings

Hello Kris, For clarification - will we be able to read the old net472 settings? If we can do that and then persist in json in both net472 and net6 going forward (which it sounds like we can), this is definitely the direction we want to go in. You will be able to read the binary-formatted template f...
by Christopher
Tue Apr 25, 2023 5:15 pm
Forum: .NET
Topic: net6 and net4 (winform) and handling of chart settings
Replies: 14
Views: 9332

Re: net6 and net4 (winform) and handling of chart settings

Hello Kris, What we can offer you, if you're interested, is a compilation of this assembly; this technique allows you to use the same Json serialization across both net48 and net60. Just in case you're interested, I've done a build which you can download from here . This contains TeeChart.WinForm.dl...
by Christopher
Tue Apr 25, 2023 3:52 pm
Forum: .NET
Topic: net6 and net4 (winform) and handling of chart settings
Replies: 14
Views: 9332

Re: net6 and net4 (winform) and handling of chart settings

Hello Kris, We look forward to any ideas you might share to help us deal with this particular situation until (and if) you decide to implement the enhancement. The idea I had is feasible, which is the good news. The bad news is that the solution demonstrates what is possibly the same problem with Sy...
by Christopher
Tue Apr 25, 2023 11:12 am
Forum: .NET
Topic: net6 and net4 (winform) and handling of chart settings
Replies: 14
Views: 9332

Re: net6 and net4 (winform) and handling of chart settings

Hello Kris, Given the importance of preserving charts settings, the fundamental nature of this functionality, and the fact that implementation choices have made this unrealistic for us/other end-users to tackle -- we’re wondering what you offer for solving this dilemma? Is this something you are act...
by Christopher
Tue Apr 25, 2023 10:58 am
Forum: .NET
Topic: Export.Template.Save Not Working Correctly
Replies: 7
Views: 4842

Re: Export.Template.Save Not Working Correctly

Hi Kris, I think you should be fine working with SaveAsync, but if for whatever reason you want to work with Save for a MemoryStream (instead of Save for a fileName), then you can made the change in the sourcecode you have: public void Save(Stream stream) { //using (var writer = new StreamWriter(str...
by Christopher
Tue Apr 25, 2023 7:08 am
Forum: .NET
Topic: Export.Template.Save Not Working Correctly
Replies: 7
Views: 4842

Re: Export.Template.Save Not Working Correctly

Hello Kris, going back to the issue tracker issue id=2603 , I see that the code there: private async void button1_Click(object sender, EventArgs e) { var export = tChart1.Export.Template; var import = tChart2.Import.Template; var stream = new MemoryStream(); await export.SaveAsync(stream); stream.Po...
by Christopher
Mon Apr 24, 2023 8:55 am
Forum: .NET
Topic: Build error: The name 'TowerStyles' does not exist in the
Replies: 1
Views: 3127

Re: Build error: The name 'TowerStyles' does not exist in the

Hello, please note that there are now two versions of TeeChart and therefore two different NuGet packages: 1. TeeChart.NET Pro Edition 2. TeeChart Business Edition The Pro edition has the Tower Series in it: private void InitializeChart() { tChart1.Aspect.View3D = true; tChart1.Aspect.Orthogonal = f...
by Christopher
Thu Apr 20, 2023 10:18 am
Forum: .NET
Topic: Licensing with .NET 6 App
Replies: 31
Views: 45664

Re: Licensing with .NET 6 App

Hello Kris, I've been doing more testing regarding the System.Text.Json issue. I did find a post online with someone running into the same loading issue just like mine but unrelated to Steema or ArcGIS Pro. The solution they came up with isn't applicable in my situation, unfortunately. It's difficul...
by Christopher
Wed Apr 19, 2023 3:05 pm
Forum: .NET
Topic: Licensing with .NET 6 App
Replies: 31
Views: 45664

Re: Licensing with .NET 6 App

On the topic of the Export button - passing an action would work perfectly. Just need to make sure you pass in the image format, and we can pass back the filename to save to. Then we can prompt the user, they specify the filename, and we pass it back to you. That would work perfectly for our workfl...
by Christopher
Wed Apr 19, 2023 6:52 am
Forum: .NET
Topic: Licensing with .NET 6 App
Replies: 31
Views: 45664

Re: Licensing with .NET 6 App

Hello Kris, The new TeeChart NuGet is now available here . As you can see from its dependencies : Screenshot from 2023-04-19 08-44-58.png For net6.0 it is dependent on System.Text.Json (>=7.0.0). If you look on your hard disk for the version we use, v.7.0.2, you will see: Screenshot from 2023-04-19 ...
by Christopher
Tue Apr 18, 2023 7:41 pm
Forum: .NET
Topic: Licensing with .NET 6 App
Replies: 31
Views: 45664

Re: Licensing with .NET 6 App

Hello Kris, If I'm not mistaken, the latest version of System.Text.Json, version 7.02, supports both net60/net60-windows as well as net70/net70-windows. Screenshot from 2023-04-18 21-37-58.png This situation, of supporting both net60/net60-windows as well as net70/net70-windows, is identical to vers...
by Christopher
Tue Apr 18, 2023 12:29 pm
Forum: .NET
Topic: Licensing with .NET 6 App
Replies: 31
Views: 45664

Re: Licensing with .NET 6 App

Hello Kris, I really appreciate the quick turnaround on this one. You're welcome; publishing to NuGet enables a very quick turnaround on issues which block client work processes. On the topic of the Export button - passing an action would work perfectly. Just need to make sure you pass in the image ...
by Christopher
Tue Apr 18, 2023 9:37 am
Forum: .NET
Topic: Licensing with .NET 6 App
Replies: 31
Views: 45664

Re: Licensing with .NET 6 App

Hello Kris, I would say that this is expected, given that the TeeChart assemblies are looking for that file in the current directory. Expected, but that doesn't mean we can't work around it. I've changed the TeeChart source-code so we can find the TeeChart.licenses file independently of the Current ...