Search found 3271 matches

by Pep
Fri Nov 21, 2003 12:17 pm
Forum: .NET
Topic: Horizontal bars with start point
Replies: 1
Views: 6876

You coud use something like :

Code: Select all

private void Form1_Load(object sender, System.EventArgs e)
{
	horizBar1.Add(20,10,"");
	horizBar1.Add(30,20,"");
}
Josep Lluis Jorge
http://support.steema.com
by Pep
Fri Nov 21, 2003 11:55 am
Forum: .NET
Topic: Multiline Series Marks display improperly
Replies: 7
Views: 21562

>1. When using a long text string, the text extends beyond the borders of >the label. Yes, you are correct, I'm able to reproduce the problem. I've added it on our defect list and a fix for it will be considered to inclusion for the next maintenance releases. In meantime you could use multiline mark...
by Pep
Fri Nov 21, 2003 10:43 am
Forum: ActiveX
Topic: OCX in web pages
Replies: 7
Views: 23259

>Thanks, I will try this out. But is it also possible to use the TeeChart.NET >component in WebForms in a way so that it is a component not just a >picture in the browser? When I include the TeeChart.NET component to >a WebForm and run the form it is displayed as an image not a object. This feature ...
by Pep
Fri Nov 21, 2003 10:33 am
Forum: ActiveX
Topic: Problem with ShowEditor and its modal behavior
Replies: 3
Views: 13867

I'm afraid there's no way to solve this. But I've added it on our wish list to be considered for the next releases.

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 20, 2003 2:44 pm
Forum: ActiveX
Topic: TeeChart ActiveX v5 in VS2003 ASP.Net
Replies: 1
Views: 9755

I've sent you one example (directly to your mail) which works fine here so you can test it.

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 20, 2003 11:20 am
Forum: ActiveX
Topic: Problem running VC++ app with TeeChart 6 component on client
Replies: 2
Views: 7728

I cannot see the complete message, could you please send it again ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 20, 2003 11:17 am
Forum: ActiveX
Topic: Time axis the same for several charts
Replies: 9
Views: 26472

Have you tried to get the ColumnWidths in the OnGetLegendRect event ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 20, 2003 11:11 am
Forum: ActiveX
Topic: When printing a Chart I get ...
Replies: 2
Views: 9266

I'm going to need one example with which I can reproduce the problem here. Could you please send me it directy to pep@steema.com ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Nov 19, 2003 11:43 am
Forum: ActiveX
Topic: Time axis the same for several charts
Replies: 9
Views: 26472

Hi, you use the following trick : Private Sub Form_Load() With TChart1 .Aspect.View3D = False .AddSeries scLine .Series(0).FillSampleValues (100) .Series(0).VerticalAxis = aBothVertAxis End With With TChart2 .Aspect.View3D = False .AddSeries scLine .Series(0).FillSampleValues (10) .Series(0).Vertica...
by Pep
Wed Nov 19, 2003 11:14 am
Forum: VCL
Topic: TeeChart Pro 5, D6, Intraweb 6
Replies: 4
Views: 15883

Hi Steve, we'll prepare the packages for this version as soon as we can. In meantime you should be able to modify the packages (replace Intraweb package names in the "requires" section) in the TeeChart for Intraweb components version you have installed (TC v5 for IWv5), then recompile and install ag...
by Pep
Wed Nov 19, 2003 11:11 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35811

This example is not included in the TeeChart Pro AX installation. Are you sure this project has not been created by you ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Nov 18, 2003 11:20 pm
Forum: .NET
Topic: MaximumOffset and MinimumOffset do not work on custom axes
Replies: 9
Views: 24444

Hi David,

we've received your email with the demo project. We'll review it and let you know something asap.

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Nov 18, 2003 10:34 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35811

Hi,

which example are you referencing ?

Best Regards !
Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Nov 18, 2003 10:21 am
Forum: ActiveX
Topic: Teechart ActiveX v5 StopMouse() ?
Replies: 6
Views: 21883

Hi, have you tried to do this : HRESULT __stdcall CPlotterView::OnClickSeries (long SeriesIndex,long ValueIndex,enum TeeChart::EMouseButton Button,enum TeeChart::EShiftState Shift,long X,long Y ) { m_chart.StopMouse(); if((Button == mbRight) && (Shift==ssNone)) { // Context Menu oeffnen HMENU hmenu ...
by Pep
Tue Nov 18, 2003 9:55 am
Forum: ActiveX
Topic: Adding a Gauge when I already have a Line CHart
Replies: 2
Views: 11728

Hi,

the problem is that you are trying to add a Bar series to the Chart instead of a Gauge series.
You should do :
m_cTeeChartGauge.AddSeries(42);
instead of:
m_cTeeChartGauge.AddSeries(1);

Best Regards
Josep Lluis Jorge
Steema Support Central