Search found 142 matches

by Quant
Tue Mar 10, 2015 6:03 am
Forum: .NET
Topic: How to hide buttons on ChartController
Replies: 1
Views: 4583

How to hide buttons on ChartController

I m using ChartController for my charts and i wanted to hide some buttons of it e.g. 3D, Zoom.
Help me find out how this can be achieved
by Quant
Tue Mar 10, 2015 5:38 am
Forum: .NET
Topic: While zooming chart annotation misplaced
Replies: 1
Views: 4736

While zooming chart annotation misplaced

i placed annotation on my chart using following code Steema.TeeChart.Tools.Annotation tAnnotation = new Steema.TeeChart.Tools.Annotation(); tAnnotation.Shape.Font.Color = Color.White; tAnnotation.Shape.Font.Size = 10; tAnnotation.Shape.Color = Color.Black; tAnnotation.Text = strVal; tAnnotation.Shap...
by Quant
Mon Mar 09, 2015 9:55 am
Forum: .NET
Topic: Planning to buy Teechart ASP.net version
Replies: 1
Views: 4201

Planning to buy Teechart ASP.net version

Dear Steema,
We are evaluating Teechart web version and found online demo http://www.steema.cat/TeeChartForNET/index.aspx
The above link of demo is not complete as windows demo. I also found that the the control is rendering image in browser which is not interactive.
by Quant
Tue Feb 24, 2015 4:22 am
Forum: .NET
Topic: Zooming Candle Chart
Replies: 3
Views: 7415

Re: Zooming Candle Chart

We tried the following code, it worked for us, but can you please include TeeChart Control's Size to calculate candle width?
by Quant
Tue Feb 24, 2015 4:19 am
Forum: .NET
Topic: Calculate Space Between two Candles
Replies: 5
Views: 8554

Re: Calculate Space Between two Candles

DisplayValues is not part of the TeeChart API (the calculation is not TeeChart's responsibility, as it were) - what do you mean be "recalculating No. of Pages after zoom and work accordingly"? Could you please explain? Yes, DisplayValues is not the part of TeeChart API. But we already mentioned Dis...
by Quant
Mon Feb 23, 2015 11:36 am
Forum: .NET
Topic: Calculate Space Between two Candles
Replies: 5
Views: 8554

Re: Calculate Space Between two Candles

Hi Christopher, Have a Look on following code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Steema.TeeChart; using Steema.TeeChart.Styles; namespace TeeCha...
by Quant
Mon Feb 23, 2015 5:34 am
Forum: .NET
Topic: Blank space issue for Candle Sticks Graph
Replies: 16
Views: 27112

Re: Blank space issue for Candle Sticks Graph

Hi Christopher, We need the same property on urgent basis, since we can not use given workaround for our project. Using integer value in date field makes us compromise most of the user requirements. It also changes our most of the source code which is based on the ActiveX Version of TeeChart. Please...
by Quant
Fri Feb 20, 2015 10:56 am
Forum: .NET
Topic: Custom Bottom Axis
Replies: 1
Views: 4389

Custom Bottom Axis

MS Chart.JPG
Custom Bottom Axis
MS Chart.JPG (69.38 KiB) Viewed 4465 times
How can we create Bottom Axis same as shown in above image?
by Quant
Fri Feb 20, 2015 10:01 am
Forum: .NET
Topic: Calculate Space Between two Candles
Replies: 5
Views: 8554

Calculate Space Between two Candles

How can we calculate space between two candles?
Please provide us some example to do the same.

Also please provide us some example which shows how to manage Zooming, Scrolling and Paging of TeeChart Candle Series?
by Quant
Thu Feb 19, 2015 12:25 pm
Forum: .NET
Topic: Blank space issue for Candle Sticks Graph
Replies: 16
Views: 27112

Re: Blank space issue for Candle Sticks Graph

Code: Select all

TChartMain.Series(0).asCandle.AddCandle(dtTemp.ToOADate(), OpenValue, HighValue, LowValue, CloseValue, dtTemp.Date.ToString(), (uint)TeeChart.EConstants.clTeeColor);
             
by Quant
Thu Feb 19, 2015 5:14 am
Forum: .NET
Topic: Blank space issue for Candle Sticks Graph
Replies: 16
Views: 27112

Re: Blank space issue for Candle Sticks Graph

Thank you for your prompt response. I already gone through that example.
But that workaround of labels will not work for me.
by Quant
Wed Feb 18, 2015 12:27 pm
Forum: .NET
Topic: Blank space issue for Candle Sticks Graph
Replies: 16
Views: 27112

Blank space issue for Candle Sticks Graph

while drawing Candle Stick Graph in Teechart.Net. When datavalue is not present for particular date it shows blank space (e.g.for Saturday, Sunday and Holiday.). previously when we were using Ocx version the candlestick graph was continuous without any blank space
Kindly see the attached file
by Quant
Thu Feb 12, 2015 11:43 am
Forum: .NET
Topic: Scrolling and Paging with AutoScroll
Replies: 4
Views: 10326

Re: Scrolling and Paging with AutoScroll

Hi,

We solved this problem by combining our code with the code presented here http://www.teechart.net/support/viewtopic.php?t=5060.

Thanks for your help.
by Quant
Thu Feb 12, 2015 11:39 am
Forum: .NET
Topic: Trendline with Snap to Point & Semi log Aware Trendline
Replies: 26
Views: 44198

Re: Trendline with Snap to Point & Semi log Aware Trendline

Hi, Currently we are not using any algorithm for calculating points that are drawn in the trendline. We are using Line Tool for drawing trendline. I can suggest you algorithm that is TeeChart currently using for Tool "Nearest Point". For the Snap Point functionality yes we want the line to snap when...
by Quant
Thu Feb 12, 2015 6:41 am
Forum: .NET
Topic: Trendline with Snap to Point & Semi log Aware Trendline
Replies: 26
Views: 44198

Re: Trendline with Snap to Point & Semi log Aware Trendline

We yet to start work on this, but we can explain you both the requirement in more detail. 1] Draw Line with Snap to Point (Check below Image 1): As shown in the screenshot we draw two trend lines. The Pink Line is normal line without Snap to Point Option. Whereas the Green Line as you see are attach...