Completely broken latest version 4.2023.3.23
Posted: Tue Apr 04, 2023 1:43 pm
Visual Studio 2022,
.net7.0 console project,
Steema.TeeChart.NET.Pro (4.2023.3.23)
1. This version doesn't work at all. It throws an exception in the constructor itself !
System.ArgumentNullException: 'Value cannot be null. Arg_ParamName_Name'
at System.ArgumentNullException.Throw(String paramName)
at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Activator.CreateInstance(Type type, Object[] args)
at Steema.TeeChart.Drawing.TeeBase.Instantiate[T](T property, Type type, Object[] args)
at Steema.TeeChart.Axis..ctor(Chart c)
at Steema.TeeChart.Axes..ctor(Chart c)
at Steema.TeeChart.Chart.InitVars()
at Steema.TeeChart.Chart..ctor(IChart parent, ILicenseProvider provider)
at Steema.TeeChart.TChart..ctor()
at Program.<Main>$(String[] args) in C:\Users\MicThi\source\repos\TeeChartNetConsoleTest\Program.cs:line 5
2. The "CheckBoxes" property has disappeared from Chart.Legend so the following code does not compile:
Best regards
.net7.0 console project,
Steema.TeeChart.NET.Pro (4.2023.3.23)
1. This version doesn't work at all. It throws an exception in the constructor itself !
Code: Select all
using Steema.TeeChart;
using Steema.TeeChart.Styles;
using System.Drawing;
var mChart = new TChart();
at System.ArgumentNullException.Throw(String paramName)
at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Activator.CreateInstance(Type type, Object[] args)
at Steema.TeeChart.Drawing.TeeBase.Instantiate[T](T property, Type type, Object[] args)
at Steema.TeeChart.Axis..ctor(Chart c)
at Steema.TeeChart.Axes..ctor(Chart c)
at Steema.TeeChart.Chart.InitVars()
at Steema.TeeChart.Chart..ctor(IChart parent, ILicenseProvider provider)
at Steema.TeeChart.TChart..ctor()
at Program.<Main>$(String[] args) in C:\Users\MicThi\source\repos\TeeChartNetConsoleTest\Program.cs:line 5
2. The "CheckBoxes" property has disappeared from Chart.Legend so the following code does not compile:
Code: Select all
mChart.Legend.CheckBoxes = true;