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 2033 - Review Pie Pen Mode in Xamarin.ios.
Summary: Review Pie Pen Mode in Xamarin.ios.
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: iOS (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2018-05-09 08:39 EDT by sandra pazos
Modified: 2018-05-14 17:15 EDT (History)
1 user (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sandra pazos 2018-05-09 08:39:12 EDT
Review Pie Pen mode in Xamarin.iOS, it doesn't work fine. The code below shows the exactly problem: 
		public MainPage()
		{
			InitializeComponent();

			tChart1 = new ChartView();
			tChart1.Chart.Panning.Allow = ScrollModes.None;
			tChart1.Chart.Panel.Gradient.Visible = false;
			tChart1.Chart.Panel.Color = Color.White;

			tChart1.Chart.Walls.Back.Visible = false;
			tChart1.Chart.Header.Visible = false;
			tChart1.Chart.Legend.Visible = false;
			tChart1.Chart.Aspect.View3D = false;
			
			Steema.TeeChart.Styles.Pie pie1 = new Steema.TeeChart.Styles.Pie(tChart1.Chart);
			pie1.Add(81, Color.FromHex("#B9C4D8"));
			pie1.Add(1, Color.FromHex("#1D386D"));
			pie1.Add(10, Color.FromHex("#F5A623"));
			pie1.Add(5, Color.FromHex("#BBC3D3"));
			pie1.Add(3, Color.FromHex("#BBC3D3"));


			
			pie1.Marks.Visible = false;
			pie1.Pen.Color = Color.White;
			pie1.AutoPenColor = false;
			pie1.Circled = true; 
			pie1.Pen.Width = 15;


			tChart1.WidthRequest = 650;
			tChart1.HeightRequest = 350;

		
			Content = new StackLayout
			{
				Children =
									{
										tChart1
									},
				VerticalOptions = LayoutOptions.CenterAndExpand,
				HorizontalOptions = LayoutOptions.CenterAndExpand,
			};

		}