Search found 3270 matches

by Pep
Sun Nov 30, 2003 8:18 pm
Forum: ActiveX
Topic: Add a Gauge at run time. Problems
Replies: 1
Views: 8925

>m_ChartGauge.AddSeries(scGauge); // is this needed ? Where are you creating the scGauge series ? Could you please send me one example with which I can reproduce the problem "as is" here. You can send it to the steema.public.attachments newsgroup or to pep@steema.com Josep Lluis Jorge http://support...
by Pep
Fri Nov 28, 2003 7:32 pm
Forum: ActiveX
Topic: OCX in web pages
Replies: 7
Views: 23187

Please find the example in the steema.public.attachments newsgroups.

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 27, 2003 6:00 pm
Forum: ActiveX
Topic: Teechart6 is permanently CRASHING
Replies: 1
Views: 8850

>PS: sorry, I do not know how to make attachment here.
You can tell the a link so I can download it or send me it to pep@steema.com

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 27, 2003 4:27 pm
Forum: VCL
Topic: Align Legend to Chart title
Replies: 2
Views: 10823

Hi Perry, to do this you can use the following code : with Chart1 do begin Legend.Alignment := latop; Legend.CustomPosition := true; Draw; Legend.Top := Chart1.Title.Top; Legend.Left := Chart1.Title.Left + Chart1.Title.Width + 10; end; Josep Lluis Jorge http://support.steema.com
by Pep
Thu Nov 27, 2003 4:13 pm
Forum: ActiveX
Topic: Multiple Y Axis
Replies: 2
Views: 11177

Hi Serge,

you can see some examples which show you how to use the Custom Axes in the TeeChart Pro AX v6 Demo Features under :
Welcome ! -> Previous version -> New Features -> Chart -> Axes ->..

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 27, 2003 12:48 pm
Forum: .NET
Topic: adding a line chart over a colormap
Replies: 1
Views: 6111

Hi Matt, using the following code works fine here : private void Form1_Load(object sender, System.EventArgs e) { tChart1.Aspect.View3D = false; tChart1.Series.Add(new Steema.TeeChart.Styles.ColorGrid()); tChart1.Series.Add(new Steema.TeeChart.Styles.Line()); tChart1[0].FillSampleValues(10); tChart1[...
by Pep
Thu Nov 27, 2003 11:51 am
Forum: VCL
Topic: Bring TSeriesMarkPosition to front
Replies: 7
Views: 21614

>Now, the 0 in the "Fourth Item" is hidden behind the "Fourth Item" Bar of the "Second Series" bar. Yes, I see the problem now. It's a known defect (the labels are hidden in 2D mode, it works fine using 3D), if's already added on our defect list and a fix for it will be considered to inclusion for t...
by Pep
Thu Nov 27, 2003 10:26 am
Forum: ActiveX
Topic: printing problems
Replies: 1
Views: 9346

Hi Wayne,

could you please post a link so I can download an example with which I can reproduce the problem "as is" here. Or could you please send me it directly to pep@steema.com ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Nov 27, 2003 9:00 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35722

Could you please check it again. I've just test it now and I can access.

Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Nov 26, 2003 10:04 pm
Forum: VCL
Topic: Marks inside of stacked bars?
Replies: 11
Views: 31991

Ok, I'll add on our wish list to be considered for the next releases.

Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Nov 26, 2003 12:29 pm
Forum: .NET
Topic: Why get a wrong Pie Chart ?
Replies: 4
Views: 8291

Using the following code works fine (use Series.Add to add the Series to the Chart) : Steema.TeeChart.Chart tChart = new Steema.TeeChart.Chart(); tChart.Width = 600; tChart.Height= 400; tChart.Header.Visible = false; tChart.Panel.Gradient.Visible = true; tChart.Series.Clear(); tChart.Legend.ResizeCh...
by Pep
Wed Nov 26, 2003 12:06 pm
Forum: .NET
Topic: Dynamically change chart size ??
Replies: 2
Views: 7947

To resize the WebChart you should use something like :

WebChart1.Width = Unit.Pixel(700);
WebChart1.Height = Unit.Pixel(700);

Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Nov 26, 2003 11:54 am
Forum: .NET
Topic: How can I avoid "Mark" overlap on a Pie Chart
Replies: 8
Views: 17337

>I consider to buy the Product. But too many problems occur. That will >stop me to do that..... >Can you tell me what properties or methods that can avoid Mark >overlapping ? TeeChart for Net v1 has a number of algorithmns that were designed to stop TeeChart SeriesMark overlap. If you aren't happy w...
by Pep
Wed Nov 26, 2003 11:37 am
Forum: VCL
Topic: Bring TSeriesMarkPosition to front
Replies: 7
Views: 21614

I'm sorry, I cannot reproduce the problem here using the code I post in y other reply. How are you stack the bars ? Getting the results as in the following image I am able to print the Chart and see all the Marks in front of the Bars : [img] http://80.32.235.114/hola/stack.jpg [/img] Josep Lluis Jor...
by Pep
Wed Nov 26, 2003 11:01 am
Forum: VCL
Topic: Marks inside of stacked bars?
Replies: 11
Views: 31991

How about using the following code ? : procedure TForm1.PositionChartMarks(BarSeries: TBarSeries); var i: integer; YPos: integer; BarTop: integer; BarBottom: integer; XPos: integer; MarkPos: TSeriesMarkPosition; begin MarkPos := TSeriesMarkPosition.Create; try for i := 0 to BarSeries.Count - 1 do be...