Search found 3271 matches

by Pep
Mon Dec 22, 2003 1:03 pm
Forum: .NET
Topic: Change pen style while adding points to a serie
Replies: 4
Views: 13327

>Is there a way to do this ? No, that I know of. This feature is not yet available, I'll add it on our wish list to be considered to inclusion for the next releases. >Do you consider seriously your support forum is efficient ? We try to answer your questions as soon as possible , but if you need to ...
by Pep
Mon Dec 22, 2003 12:22 pm
Forum: .NET
Topic: Question about Chart panel border
Replies: 3
Views: 12338

Hi David, which code are you using to custimize the WebChart (color, border style,.. ) ? I can't see any borders just placing a WebChart on the WebForm and using the following code : private void Page_Load(object sender, System.EventArgs e) { WebChart1.Chart.Panel.Color = Color.White; WebChart1.Char...
by Pep
Mon Dec 22, 2003 10:42 am
Forum: ActiveX
Topic: export data with datetime axis
Replies: 5
Views: 12768

Yes, you're correct, I'm able to reproduce the problem here using the TeeChart Pro v5.05. This problem has been solved in the TeeChart Pro v6.0.

Josep Lluis Jorge
http://support.steema.com
by Pep
Mon Dec 22, 2003 10:30 am
Forum: ActiveX
Topic: OnGetSeriesMark - suppress mark when value = 0 for PRINTING
Replies: 2
Views: 8273

you need to make an EXE file from your project, run it and print from
there.

Josep Lluis Jorge
http://support.steema.com
by Pep
Fri Dec 19, 2003 10:33 am
Forum: ActiveX
Topic: PointColor array
Replies: 3
Views: 9769

Hi Nefis,

the PointColor Array is set independently of ColorEachPoint, that means that the PointColor Array is set everytime a series is created.

Josep Lluis Jorge
http://support.steema.com
by Pep
Fri Dec 19, 2003 10:32 am
Forum: ActiveX
Topic: MinVisibleValue MaxVisibleValue functions
Replies: 2
Views: 8153

Hi Nefis, The following code shows that points with clnone are involved in MinVisibleSeriesValue calculations : Private Sub Form_Load() With TChart1 .AddSeries scLine For i = 0 To 10 .Series(0).AddXY i, Rnd * 100, "", clNone Next i For j = 11 To 20 .Series(0).AddXY j, Rnd * 100, "", clTeeColor Next ...
by Pep
Thu Dec 18, 2003 9:10 pm
Forum: ActiveX
Topic: Print Preview / Series Marks problem
Replies: 5
Views: 12905

>TCHart.Printer.Preview
Do you mean TChart.Printer.ShowPreview ?

Which TeeChart version are you using ?
I've test it here using the latest TeeChart Pro v6.04 and works as expected. Could you please attach the code that you are using ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Dec 18, 2003 9:06 pm
Forum: ActiveX
Topic: SelectedSeries - problem
Replies: 4
Views: 11069

Hi Ariel,

the SelectedSeries property is used to read the SeriesList index of the selected series. You cannot assign any value to it.

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Dec 18, 2003 10:13 am
Forum: .NET
Topic: I can't populate series in WebForm ASP.NET Application
Replies: 2
Views: 9981

Hi Simon,

Yes, WebChart doesn’t yet work with databases at design time. However, it runs fine with databases designed at runtime. Please see “Tutorial8 – ADO.NET Database Access” for some runtime examples.

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Dec 18, 2003 10:02 am
Forum: ActiveX
Topic: FastLine clear crash !
Replies: 7
Views: 18012

I need one example (source code) with which I can reproduce the problem as is here.
You can send me it to the steema.public.attachments newsgroup or directly to pep@steema.com

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Dec 18, 2003 9:55 am
Forum: ActiveX
Topic: Large Cursor
Replies: 3
Views: 9581

Hi Hans, the best way to do this is using a CursorTool and then hide the MourseCursor when the Mouse is over the Chart using the following code : Private Sub TChart1_OnMouseMove(ByVal Shift As TeeChart.EShiftState, ByVal X As Long, ByVal Y As Long) With TChart1 If X >= .Axis.Left.Position And _ X <=...
by Pep
Thu Dec 18, 2003 9:04 am
Forum: ActiveX
Topic: export data with datetime axis
Replies: 5
Views: 12768

Which TeeChart version are you using ?
It works fine here using the latest TeeChart Pro v6.04. I've attached one example to the steema.public.attachments newsgroup, could you please test it if works fine for you ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Dec 17, 2003 1:40 pm
Forum: .NET
Topic: Question about Chart panel border
Replies: 3
Views: 12338

Hi David,

you can do :

Code: Select all

WebChart1.Chart.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
WebChart1.Chart.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Dec 17, 2003 12:41 pm
Forum: ActiveX
Topic: Large Cursor
Replies: 3
Views: 9581

Hi Hans,

I'm not sure what you mean, if you are referencing to the width of the Cursor the you can do the following (using the CursorTool) :

TChart1.Tools.Items(0).asTeeCursor.Pen.Width = 5

Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Dec 17, 2003 12:37 pm
Forum: ActiveX
Topic: export data with datetime axis
Replies: 5
Views: 12768

Have you set the XValues of the Series to DateTime ?

MyChart.Series(0).XValues.DateTime = True

Josep Lluis Jorge
http://support.steema.com