Page 1 of 1

TeeChart for Xamarin.Android 2016 v4.16.7.11 available

Posted: Mon Jul 11, 2016 11:44 am
by narcis
Steema is very pleased to announce a new maintenance release of TeeChart for Xamarin.Android!

This release, which comes with registered, evaluation and full source code installers, is available at www.steema.com/product/net_android.

All licence holders of TeeChart for Xamarin.Android 2015/2016 can now access this new full release binary installer from Steema's Customer Download pages.

The maintenance release contains PDF export among other new functionality and also a few bug fixes and enhancements. The release notes for the build can be viewed at www.steema.com/version_info/net_android.

For a fully functional evaluation version please follow this link to the evaluation download page.

Re: TeeChart for Xamarin.Android 2016 v4.16.7.11 available

Posted: Fri Nov 04, 2016 6:08 am
by 16079056
I've recently updated my TeeChartAndroidSource from 4.15.5.18 to 4.16.7.11 and now find that my previously working apps crash in Utils.cs.

I get a "System.NullReferenceException: Object reference not set to an instance of an object."

In the HexArrayToColorArray method of Utils.cs

Can you offer any ideas? - It happens on several computers (All of which are using the latest versions of VS2015 and Xamarin).

Yours Sincerely,

Andy Pybus

Re: TeeChart for Xamarin.Android 2016 v4.16.7.11 available

Posted: Mon Nov 07, 2016 11:53 am
by yeray
Hello,
Anaesthesia wrote:I get a "System.NullReferenceException: Object reference not set to an instance of an object."

In the HexArrayToColorArray method of Utils.cs

Can you offer any ideas? - It happens on several computers (All of which are using the latest versions of VS2015 and Xamarin).
I'm trying to reproduce this error but the following simple example seems to work fine for me here:

Code: Select all

      tChart1 = new Steema.TeeChart.TChart(this);

      tChart1.Aspect.View3D = false;

      var series = new Steema.TeeChart.Styles.Pie(tChart1.Chart);
      series.FillSampleValues();
      series.Circled = true;

      Steema.TeeChart.Themes.ThemeProperties.Instance.Palette = Steema.TeeChart.Utils.ColorArrayToHexArray(Steema.TeeChart.Themes.Theme.CoolPalette);
      Steema.TeeChart.Themes.ColorPalettes.ApplyPalette(tChart1.Chart, Steema.TeeChart.Utils.HexArrayToColorArray(Steema.TeeChart.Themes.ThemeProperties.Instance.Palette));
If you still find problems with it, please try to arrange a simple example project we can run as-is to reproduce the problem here.