I'm using Visual Studio 2019 Pro (16.0.2) and .NET Core 3 SDK Preview 4.
I've create application from a Windows Forms App (.NET Core) template and added Steema.TeeChart.NET nuget package to my project (4.2019.3.15).
After that I've created Steema.TeeChart.Chart variable (because there is no Steema.TeeChart.TChart class in assembly I've referenced).
But it has less properties than Steema.TeeChart.TChart that I was using before for .NET 4.0 (for example Dock property is missing).
Moreover I cannot simply use this.Controls.Add(this.tChart1):
Code: Select all
cannot convert from 'Steema.TeeChart.Chart' to 'System.Windows.Forms.Control'
According to latest news from Microsoft upcoming .NET Framework 4.8 will have less features than .NET Core 3 (it will support .NET Standart 2.1) - so we are looking for retargeting our new Windows Forms projects to the most modern platform.
Thank you.