Search found 14710 matches

by Narcís
Thu Jan 13, 2005 2:55 pm
Forum: VCL
Topic: Marks - Behind Bar Series
Replies: 5
Views: 10429

Hi Marcelo,

Yes, we can consider it a deffect but it having a workaround makes it not so severe.
by Narcís
Thu Jan 13, 2005 1:05 pm
Forum: .NET
Topic: Bezier line
Replies: 4
Views: 8798

Hi Markus,

That's not true, the bezier series are based on Bezier Curve algorithmand the variables under it can't be changed. The hits depend on your series points, you can try adding values to your bezier series using FillSampleValues and you will see that it's not allways 4.
by Narcís
Thu Jan 13, 2005 12:50 pm
Forum: .NET
Topic: Coloring the header and footer
Replies: 1
Views: 4794

Hi Antoon,

That's because you should set the header or footer transparent property to false either using the chart editor or programmaticaly.

Code: Select all

tChart1.Header.Transparent=false;
tChart1.Footer.Transparent=false;
by Narcís
Thu Jan 13, 2005 12:39 pm
Forum: .NET
Topic: Smooth lines
Replies: 7
Views: 13900

Hi Antoon,

You can use the smoothing function, creating a line series and setting it's datasource to a smoothing function with another line series as source. Then you can hide the source line series if you wish.
by Narcís
Thu Jan 13, 2005 12:35 pm
Forum: VCL
Topic: Marks - Behind Bar Series
Replies: 5
Views: 10429

Hi Marcelo, The solution depends on the TeeChart version you are using. According to our sales department, your license number corresponds to a TeeChart Pro v6 VCL With Source Code. If you were using a Pro version then you can replace the series marks for an anotation tool. If you use a standard ver...
by Narcís
Thu Jan 13, 2005 11:25 am
Forum: .NET
Topic: Smoothing function
Replies: 5
Views: 10123

Hi Markus,

Thanks for reporting this bug, I have added it to our deffect list to be fixed for future releases.
by Narcís
Thu Jan 13, 2005 11:02 am
Forum: .NET
Topic: set the color of points
Replies: 2
Views: 5959

Hi Markus,

You're right, this is a bug. I have added it to our defect list to be fixed for future releases.

You can also set the color populating the series using:

Code: Select all

line1.Add(1, 3, Color.Blue);
by Narcís
Thu Jan 13, 2005 9:50 am
Forum: VCL
Topic: version 7.03
Replies: 7
Views: 12060

Yes, you can post it at the newsgroups mentioned above which can be found configuring news:\\www.steema.net in a newsreader.
by Narcís
Thu Jan 13, 2005 9:46 am
Forum: ActiveX
Topic: Problem with adding custom axis...
Replies: 6
Views: 9437

Hi TurboK,

The message is certainly in the newsgroups steema.public.attachments.

You can access our public newsgroups using a newsreader and configuring news:\\www.steema.net.
by Narcís
Thu Jan 13, 2005 9:27 am
Forum: .NET
Topic: Coloring series
Replies: 3
Views: 7203

Hi Antoon,

This will depend on if you are using 3D or 2D view.

For 2D view use:

Code: Select all

line.LinePen.Width=3;
For 3D view use:

Code: Select all

line.LineHeight = 3;
by Narcís
Thu Jan 13, 2005 9:14 am
Forum: VCL
Topic: version 7.03
Replies: 7
Views: 12060

Hi Allan,

Here it works for me using that installer. Could you please send as a small example project we can run "as-is" to reproduce the problem here or write here a code snippet you use?

You can post the example at the steema.public.attachments newsgroups.
by Narcís
Thu Jan 13, 2005 9:06 am
Forum: VCL
Topic: Select fast line series when TChart is in 3D mode
Replies: 2
Views: 5708

Hi Herman,

Wouldn't it be better for you to use the OnClickSeries event? This event does the work you are coding for you suppling some of the parameters you need.
by Narcís
Wed Jan 12, 2005 4:04 pm
Forum: .NET
Topic: hide line but show the datpoints
Replies: 6
Views: 11846

Hi Markus,

You may be interested using a point series to achieve this. You can also set a line series transparency to 100% using:

Code: Select all

line1.Transparency=100;
by Narcís
Wed Jan 12, 2005 3:54 pm
Forum: VCL
Topic: Marks - Behind Bar Series
Replies: 5
Views: 10429

Hi Marcelo,

I haven't been able to reproduce this problem here. Could you please send us a small project that we can run "as-is" to reproduce the problem here?

You can post the project at the steema.public.attachments newsgroups.
by Narcís
Wed Jan 12, 2005 3:20 pm
Forum: .NET
Topic: Rotating 3D series
Replies: 3
Views: 7301

Hello Elisabeth,

Yes, you are right. I've been able to reproduce this behaviour here. I can see that the only style which works is square.

I have added this bug to our deffect lists so that a fix for this will be considered for future releases.