Search found 11 matches

by Thinkpower
Fri Mar 28, 2014 6:42 am
Forum: .NET
Topic: How to set the grid line to be dash?
Replies: 1
Views: 3848

How to set the grid line to be dash?

Hi, I'm using Xamarin to build an android project.

The following code doesn't work!

Code: Select all

mainChart.Axes.Left.Grid.Style = Steema.TeeChart.Drawing.DashStyle.Dash;
any suggestion?
by Thinkpower
Tue Mar 18, 2014 2:46 pm
Forum: .NET
Topic: Simulate ScrollPager on Android?
Replies: 9
Views: 12102

Re: Simulate ScrollPager on Android?

can you show me a sample?
by Thinkpower
Tue Mar 18, 2014 10:37 am
Forum: .NET
Topic: Simulate ScrollPager on Android?
Replies: 9
Views: 12102

Re: Simulate ScrollPager on Android?

Hi Support,

How can I also implement this by the way Jeremy mentioned?
by Thinkpower
Mon Mar 17, 2014 3:00 pm
Forum: .NET
Topic: Simulate ScrollPager on Android?
Replies: 9
Views: 12102

Re: Simulate ScrollPager on Android?

Hi Jeremy,

We are also working on this issue. Would you please share your code with us? We would appreciate your assistance!
Thank you!
by Thinkpower
Thu Mar 13, 2014 2:11 am
Forum: .NET
Topic: different marks with different arrowlengths
Replies: 1
Views: 3448

different marks with different arrowlengths

Hi, I'm using Xamarin to build an android project.

I have a chart with candle series, I want each mark of candles has different arrowlength.
How can it be done?
by Thinkpower
Wed Mar 12, 2014 6:41 am
Forum: .NET
Topic: Problem when setting the color of CandleBar
Replies: 1
Views: 3467

Problem when setting the color of CandleBar

Hi, I'm using Xamarin to build an android project. As the following code, if open value < close value then the candle color is red. And if open value > close value then the candle color is green. I want the candle be white when open value = close value, how can it be done? By my code, the candle is ...
by Thinkpower
Wed Mar 12, 2014 6:09 am
Forum: .NET
Topic: Problem with setting zoom style to ZoomStyles.InChart
Replies: 1
Views: 3607

Problem with setting zoom style to ZoomStyles.InChart

Hi, I'm using Xamarin to build an android project. If I set my chart's zoom style to Steema.TeeChart.ZoomStyles.Classic then everything is fine. Every setting of my code performed well. But if I set chart's zoom style to Steema.TeeChart.ZoomStyles.InChart, everything's wrong. The scale of chart get ...
by Thinkpower
Wed Mar 12, 2014 4:13 am
Forum: .NET
Topic: data displayed in chart
Replies: 1
Views: 3457

data displayed in chart

Hi, I'm using Xamarin to build an android project. I have a candle chart with 1000 candles, and I set the scale to 60 by following code. mainChart.Axes.Bottom.SetMinMax (candle1.Count - 60, candle1.Count);
 The chart ZoomStyles is set to InChart. When I scroll the chart, I can't scroll to the first ...
by Thinkpower
Wed Mar 12, 2014 3:45 am
Forum: .NET
Topic: Problems when setting right axis
Replies: 1
Views: 3659

Problems when setting right axis

Hi, I'm using Xamarin to build an android project. First, I set ZoomStyles to Inchart and the scale of left axis as following code. It scales well. And when I drag the chart, the left axis lables are dynamical changed, not fixed. mainChart.Zoom.Style = Steema.TeeChart.ZoomStyles.Inchart; mainChart.A...
by Thinkpower
Wed Mar 12, 2014 2:51 am
Forum: .NET
Topic: Scroll horizontal only
Replies: 1
Views: 3527

Scroll horizontal only

Hi, I'm using Xamarin to build an android project. I want my chart be scrolled horizontal only and the following code doesn't work. I can scroll my chart vertical too. mainChart.Zoom.Style = Steema.TeeChart.ZoomStyles.InChart; 
mainChart.Panning.Allow = Steema.TeeChart.ScrollModes.Horizontal;
 Pleas...
by Thinkpower
Wed Mar 12, 2014 2:37 am
Forum: .NET
Topic: How to change the color of a line series?
Replies: 1
Views: 3772

How to change the color of a line series?

Hi, I'm using Xamarin to build an android project.
I have one chart with two series, line and volume, but only the color of volume can be changed by following code.

Code: Select all

line1.LinePen.Color = Color.Yellow;

volume1.LinePen.Color = Color.MediumOrchid;
Please help!