Search found 50 matches

by glikoz
Wed Jun 07, 2006 11:48 am
Forum: .NET
Topic: Where is the Graphics3D.PointInArcTolerance :)
Replies: 1
Views: 3725

Where is the Graphics3D.PointInArcTolerance :)

I drawn arc by Graphics3D.DrawArc .. And i want to detect whether mouse cursor on the arc or not .. For lines we have Graphics3D.PointInLineTolerance method but for arc i couldnt find similar method.. (Surely Tolerance is important)

Whats your suggestion about this requirement ?

Thx .Best regards.
by glikoz
Wed May 03, 2006 8:49 am
Forum: .NET
Topic: Prevent Series to Overflow another CustomVerticalAxis
Replies: 1
Views: 3706

Prevent Series to Overflow another CustomVerticalAxis

A Line has got CustomVerticalAxis ..
Line has got values in the outside of its CustomVerticalAxis..
Normally its values where outside of the its CustomVerticalAxis
musnt visible ...
But if we plot two CustomVerticalAxis ,the line owerflows the area of another aXis..
How could i prevent ?
by glikoz
Mon May 01, 2006 3:25 pm
Forum: .NET
Topic: Fibonnacci Fans- Fibonnacci Arks -Trendline - Gann Lines
Replies: 3
Views: 5612

do you agree with me ? Fibonnacci ,Gann Lines etc are diffrent concept from Functions.. These are studyLines not indicators. Their usage different from indicators.. Im not sure that I can make them by "Deriving Functions" concept .. Why Did you produce DrawArcs,DrawBeizer methods for Graphics3D? Not...
by glikoz
Thu Apr 20, 2006 1:28 pm
Forum: .NET
Topic: Fibonnacci Fans- Fibonnacci Arks -Trendline - Gann Lines
Replies: 3
Views: 5612

Fibonnacci Fans- Fibonnacci Arks -Trendline - Gann Lines

You know that every Technical Analysis Application has got Study Lines .. They behave like TrendLine Tool but they have extended plotting operations.. What do you suggest about producing our own StudyLines... Fibonnacci Arks Fibonnacci Fans Gann Lines TrendLine Trend Channel Andrews Pitchfork .......
by glikoz
Fri Mar 31, 2006 1:22 pm
Forum: .NET
Topic: Not enough pixel for drawing Series correctly..
Replies: 6
Views: 9098

Hi Cristopher ; Downsampling is not suitable for us , Because Downsampling changes Data! We will add functions to our main candle series,and we dont want any changes on its data .. For example MACD of MainSeries is not equal MACD of DownSampledMainSeries ..WE dont want that .. We want same result ,o...
by glikoz
Fri Mar 24, 2006 3:12 pm
Forum: .NET
Topic: DateTime to Double ?
Replies: 3
Views: 5834

I found it...
MyDateTime.ToOADate()

Thx..
by glikoz
Fri Mar 24, 2006 3:01 pm
Forum: .NET
Topic: DateTime to Double ?
Replies: 3
Views: 5834

Code: Select all

DateTime d = new DateTime(1998, 1, 1);
double e = Convert.ToDouble(d);
Try and get InvalidCastException !
by glikoz
Fri Mar 24, 2006 2:17 pm
Forum: .NET
Topic: DateTime to Double ?
Replies: 3
Views: 5834

DateTime to Double ?

How could i convert DateTime variable to Double in TeeChart ..
In Utils reverse operation could be made by Utils.DateTime..
by glikoz
Thu Mar 23, 2006 12:42 pm
Forum: Wishes and ideas
Topic: GetAxisDrawLabelEventHandler must include AxisLabelItem
Replies: 5
Views: 13152

For GetNextAxisLabel :

But , It doesnt include X,Y,Z information ..
by glikoz
Thu Mar 23, 2006 11:38 am
Forum: Wishes and ideas
Topic: Automatic Scale must be corrected !
Replies: 3
Views: 10432

Other opinions?

I think we have to make questionnaire about this subject ! Because I posted lots of post (also some of them have got image for clarity) but we couldnt make agreement ! Please Narcis,say other supporter to read this topic from begin to end ! Especially read my posts ! Please some other teechart user ...
by glikoz
Thu Mar 23, 2006 11:30 am
Forum: Wishes and ideas
Topic: GetAxisDrawLabelEventHandler must include AxisLabelItem
Replies: 5
Views: 13152

You gave got three axisLabelItem and All of them has got same text ..
"November" ," November", "November" ?
How could you access third item ? IndexOf is not solution for that
Because all of them have got same Text ..
by glikoz
Thu Mar 23, 2006 7:49 am
Forum: Wishes and ideas
Topic: Automatic Scale must be corrected !
Replies: 3
Views: 10432

Automatic Scale must be corrected !

It doesnt work as expected ... You could follow this topic !
http://www.teechart.net/support/viewtopic.php?t=1375
by glikoz
Thu Mar 23, 2006 7:46 am
Forum: Wishes and ideas
Topic: GetAxisDrawLabelEventHandler must include AxisLabelItem
Replies: 5
Views: 13152

GetAxisDrawLabelEventHandler must include AxisLabelItem

You could access AxisLabelItem.Text ..But itself is not accessible ..
So you have to access AxisLabelItem by its text .. If you have got two different AxisLabelItem with same Text you couldnt access AxisLabelItem..
This is serious problem ..
by glikoz
Thu Mar 23, 2006 7:40 am
Forum: Wishes and ideas
Topic: Custom Axes Must Be Drawn Both Side ..
Replies: 1
Views: 7317

Custom Axes Must Be Drawn Both Side ..

It seems very easy ..Because normal Axes can be easily drawn both side..
But Custom Axes couldnt be drawn ..
by glikoz
Wed Mar 22, 2006 11:38 am
Forum: .NET
Topic: custom AxisLabels overlap
Replies: 61
Views: 93917

JohnK's Message was very helpful .. This may be a little late but here is the code I used on my custom labels to control overlap. I've only implemented the horizontal so far but the vertical would be similar. Code: private void axis_GetAxisDrawLabel(object sender, GetAxisDrawLabelEventArgs e) { //fl...