Search found 9 matches

by XamarinProgrammer
Wed Sep 14, 2016 6:30 am
Forum: .NET
Topic: Xamarin.iOS Legend Checkbox behaviour
Replies: 3
Views: 9787

Re: Xamarin.iOS Legend Checkbox behaviour

Hi Pep,

Thank you. Do you have any tutorial/documentation that may point me in the right direction on creating this custom legend?
by XamarinProgrammer
Tue Sep 13, 2016 8:29 am
Forum: .NET
Topic: Xamarin.iOS Legend Checkbox behaviour
Replies: 3
Views: 9787

Xamarin.iOS Legend Checkbox behaviour

Hello, I'm new to TeeChart programming. I'm creating an iOS app with TeeChart, wanted to display the legend checkboxes. So I set: Chart.Legend.CheckBoxes = true; I got the following legend display: https://s21.postimg.org/ndusj8kgn/Screen_Shot_2016_09_13_at_3_28_36_PM.png My question is, is this rea...
by XamarinProgrammer
Tue Sep 13, 2016 3:57 am
Forum: .NET
Topic: Marks Overlapping
Replies: 4
Views: 12250

Re: Marks Overlapping

Hi Pep, Firstly thank you for spending time on this. I really appreciate it. Ok so I have incorporated the codes you have given me but the problem still persists. The mark is positioning well on Y axis however when I call CalcXPosValue it is giving me an x coordinate that is almost out of screen. I ...
by XamarinProgrammer
Thu Sep 08, 2016 8:25 am
Forum: .NET
Topic: Marks Overlapping
Replies: 4
Views: 12250

Marks Overlapping

Hi Guys, I have a chart with 3 bar groups: https://s13.postimg.org/cvz1ero8j/Screen_Shot_2016_09_08_at_3_47_31_PM.png My problem is that the marks on top of the bars are overlapping. Making some of them unreadable. I have tried applying this solution: http://www.teechart.net/support/viewtopic.php?t=...
by XamarinProgrammer
Tue Sep 06, 2016 5:44 am
Forum: .NET
Topic: Horizontal Scrolling and Overflow
Replies: 8
Views: 17884

Re: Horizontal Scrolling and Overflow

Hi, I have compiled the project that you gave me with the dll you sent and is now working fine. My original project is also now running ok with the new dll. Thank you so much for your help. I'm not sure why the version I downloaded from your is not working as expected. Maybe I'll try out other versi...
by XamarinProgrammer
Sat Sep 03, 2016 4:02 am
Forum: .NET
Topic: Horizontal Scrolling and Overflow
Replies: 8
Views: 17884

Re: Horizontal Scrolling and Overflow

HI I run the project you gave me both on iPhone 6s Simulator 9.3 and actual iPhone 6s device with iOS 9.3 Both are not panning horizontally (left or right). Please see screen recording https://www.dropbox.com/s/bs1p1mfsydi07fr/horiz_pannin_screen_recording.mov?dl=0 My version of TeeChart as written ...
by XamarinProgrammer
Fri Sep 02, 2016 7:40 am
Forum: .NET
Topic: Horizontal Scrolling and Overflow
Replies: 8
Views: 17884

Re: Horizontal Scrolling and Overflow

I am using the latest version of Xamarin.iOS
by XamarinProgrammer
Fri Sep 02, 2016 2:35 am
Forum: .NET
Topic: Horizontal Scrolling and Overflow
Replies: 8
Views: 17884

Re: Horizontal Scrolling and Overflow

Hi was able to limit data by applying the code you gave: tChart1.Page.MaxPointsPerPage = 10; // or tChart1.Axes.Bottom.SetMinMax(10, 20); and also applied: tChart1.Panning.Active = true; tChart1.Panning.Allow = ScrollModes.Horizontal; Although it is correctly showing me the correct number of data in...
by XamarinProgrammer
Thu Sep 01, 2016 11:46 am
Forum: .NET
Topic: Horizontal Scrolling and Overflow
Replies: 8
Views: 17884

Horizontal Scrolling and Overflow

Hi I'm hoping anyone can help me. I have created a chart with three bars and I'm displaying a number of grouped data into the three bars. Right now I'm able to show this graph: https://s11.postimg.org/u5gkelfxr/Simulator_Screen_Shot_1_Sep_2016_7_22_38_PM.png Based on the documentations, scrolling in...