Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1224 - White axis grid lines crash.
Summary: White axis grid lines crash.
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: iOS (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- major
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-05 04:47 EDT by narcís calvet
Modified: 2015-06-08 06:09 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments
test case supplied by the customer (8.16 KB, application/x-zip-compressed)
2015-06-05 04:47 EDT, narcís calvet
Details

Note You need to log in before you can comment on or make changes to this bug.
Description narcís calvet 2015-06-05 04:47:46 EDT
Created attachment 458 [details]
test case supplied by the customer

I'm trying to get horizontal grid lines to appear on the chart area. In order to do this, I configure Axes.Left.Grid appropriately. However, this leads to a crash. Only if I uncomment the following line:

[code]this.Chart.Axes.Left.Grid.Visible = false;[/code]

the charts works without crashing, but I don't get any grid lines in that case (of course). Note that the same code used to work in previous versions - it stopped working when I migrated my project to iOS unified.

This occurs with the test case attached and only occurs when Grid.Color is set to white. Commenting out the line below works fine as well.

      this.Chart.Axes.Left.Grid.Color = UIColor.White.CGColor;