Search found 50 matches

by glikoz
Thu Feb 16, 2006 4:05 pm
Forum: .NET
Topic: Series.ChangeType fails when second time triggering...
Replies: 4
Views: 6143

Thx

Thx for delicious aids Narcis..
I made small changes in your code ...
And it works as consistent..
by glikoz
Thu Feb 16, 2006 1:04 pm
Forum: .NET
Topic: Series.ChangeType fails when second time triggering...
Replies: 4
Views: 6143

Hi Narcis ..U can Try this one .. public partial class Form1 : Form { //public List<CustomPoint> listCustom = new List<CustomPoint>(); public CustomPoint CP; public Form1() { InitializeComponent(); tChart1.Aspect.View3D = false; } private void Form1_Load(object sender, System.EventArgs e) { Line l =...
by glikoz
Thu Feb 16, 2006 9:14 am
Forum: .NET
Topic: Series.ChangeType fails when second time triggering...
Replies: 4
Views: 6143

Series.ChangeType fails when second time triggering...

Hi Narcis and all Steema Family .. Very simple trying : ChangeType any series ... Then Re-ChangeType same series.. It seems problem is related with a bug in ChangeType Method of Series.. When you run ChangeType method ,the Chart reference of series flies.. The ChangeType method runs like that : 1- A...
by glikoz
Wed Feb 01, 2006 12:42 pm
Forum: .NET
Topic: CustomAxis Both Side
Replies: 3
Views: 6699

CustomAxis Both Side

how could i add CustomAxis(Vertical) that will be drawn both left and right side ...Here is my code: Axis axis = new Axis(false, false, TChart1.Chart); axis.MinimumOffset = 5; axis.MaximumOffset = 10; axis.Grid.Visible = false; axis.Automatic = true; axis.Labels.Color = Color.Red; axis.Labels.Brush....
by glikoz
Fri Jan 20, 2006 9:24 am
Forum: .NET
Topic: Multiple Axes with FormTitleBar..
Replies: 6
Views: 8533

Big problem ?

Hi Narcis,

Splitter is added to TChart component...
But colorLine tool is added to TChart.Chart ?

**Removed by Glikoz
Please could you read my messages from beginning to end?
And if its imposible with TeeChart you can say
"No glikoz,You couldnt do this with TeeChart"
Thx for best aids..
by glikoz
Thu Jan 19, 2006 7:57 am
Forum: .NET
Topic: Multiple Axes with FormTitleBar..
Replies: 6
Views: 8533

Detailed Expression

Previous screenshot is from my demo project ... I made it..Its finished.. But (finished) demo project has got serious performance and maintenance problems .. I want a different approach but same abilities.. I will redesign my project if i could get different approach from you ! I dont want 3 Tchart ...
by glikoz
Wed Jan 18, 2006 4:24 pm
Forum: .NET
Topic: Multiple Axes with FormTitleBar..
Replies: 6
Views: 8533

Sorry I think I couldnt explain .... I already finished this approach .. I want different approach from you ... What is your advice for this requirement ...One TChart Component with 3 Axes..All Axes have got a title..And Tchart Component has got splitters between Axes.. One TChart Component with 3 A...
by glikoz
Wed Jan 18, 2006 3:20 pm
Forum: .NET
Topic: Multiple Axes with FormTitleBar..
Replies: 6
Views: 8533

Multiple Axes with FormTitleBar..

First I want to show interface of our demo product.. [img]Removed%20**%20Glikoz[/img] As you see i have 3 inner form with one TChart component per inner form. All Tchart Control have to synchronize ..(If you zoom one of them ,the others is zoomed exactly zoomed one) Splitter control resizes inner fo...
by glikoz
Tue Jan 17, 2006 11:40 am
Forum: .NET
Topic: Pie chart problem
Replies: 8
Views: 12308

Problem still existing.

Hi,
It seems fixed in debug mode for webchart.
But when i publish the website the problem occurs again.

Any ideas?
by glikoz
Mon Jan 16, 2006 11:35 am
Forum: .NET
Topic: Custom MultiLine DateTime Axis
Replies: 5
Views: 7993

Performance Problem

Because of performance issues i couldnt use AfterDraw event ..
Could you suggest any alternative method for these requirements:
How could i add Label to right side of tick ?
How could i add label with minor tick ?
Thx for your sincere aids ..
by glikoz
Fri Jan 06, 2006 1:05 pm
Forum: .NET
Topic: Custom MultiLine DateTime Axis
Replies: 5
Views: 7993

How could i add Label to right side of tick ?

(For Bottom Axis)
As Default Labels are located bottom of the ticks...

How could i add Label to right side of tick ?

And one extra question ..

How could i add label with minor tick ?


Many Thx..
by glikoz
Tue Jan 03, 2006 9:56 am
Forum: .NET
Topic: Not enough pixel for drawing Series correctly..
Replies: 6
Views: 9099

DrawValue Method

Steema.TeeChart.Styles.CustomPoint.DrawValue(Int32) : Void

All of the Series override this method..

Where this method is called from ?

I try to prevent drawing of some values ..
by glikoz
Mon Jan 02, 2006 4:37 pm
Forum: .NET
Topic: Not enough pixel for drawing Series correctly..
Replies: 6
Views: 9099

Not enough pixel for drawing Series correctly..

Is there any property if window hasnt got enough pixel to draw chart..
If not i will calculate pixels manually ..And Ignore some values ..

InSummary I try to fix this bad apperance :)

Img .Deleted

Thx for advice...
by glikoz
Mon Jan 02, 2006 1:31 pm
Forum: .NET
Topic: Custom MultiLine DateTime Axis
Replies: 5
Views: 7993

Custom MultiLine DateTime Axis

We try to make "Technical Analysis" application as you know ... Nature of Technical Analysis , DateTimeAxis (Bottom Axis) doesnt have gap.. Not only weekends but also some special days "Stock Market" could be close..So DateTime Axis couldnt behave as Calendar..For example if our stock market is clos...
by glikoz
Mon Dec 26, 2005 10:06 am
Forum: .NET
Topic: Avoid Gap between DateTime Axis ....
Replies: 1
Views: 3932

Avoid Gap between DateTime Axis ....

I searched forum and couldnt find solution ..I could only find trick .. So i made trick as u point ... void RasChart_BeforeDrawAxes(object sender, Steema.TeeChart.Drawing.Graphics3D g) { if (this.Series.Count != 0) { (sender as RasChart).Series[0].Labels = Program.sl; //I store labels to Program.sl ...