Search found 9507 matches

by Yeray
Mon Feb 18, 2008 11:05 am
Forum: VCL
Topic: Axis Title Overlaps Axis Values
Replies: 3
Views: 6284

Hi Leah,

I'm afraid it's not corrected yet.
by Yeray
Fri Feb 15, 2008 9:29 am
Forum: VCL
Topic: Chart to Image Problem
Replies: 6
Views: 10551

Hi Edward,

This happens because you populate your series but the chart is not drawn. So you should force it to be calculated adding the following line at the final of your UpdateChart method:

Code: Select all

chrtActValueInGrowth.Draw;
by Yeray
Fri Feb 15, 2008 9:19 am
Forum: VCL
Topic: Make a tmp copy of chart including customaxis?
Replies: 1
Views: 4737

Hi Dominik,

You could clone your chart importing to a stream and the importing to the new chart. Is the same we discussed here.

And for events, you should assign your events manually as described here.
by Yeray
Fri Feb 15, 2008 8:58 am
Forum: VCL
Topic: QrTee.pas (Flicker issue)
Replies: 3
Views: 6263

Hi Slim,

Please, try downloading latest TeeChart Source code version v7.12 and recompile it with provided tool. It should be solved.
by Yeray
Thu Feb 14, 2008 11:03 am
Forum: VCL
Topic: Reduce the number of axis labels ?
Replies: 3
Views: 6359

Hi Dominik, Here you have different options: - You could simply modify the PositionPercent of the axes: Chart1.MarginLeft := 15; Chart1.CustomAxes[0].PositionPercent := -8; Chart1.CustomAxes[1].PositionPercent := -16; - You could use OnGetAxisLabel event to change LabelText manually. But note that h...
by Yeray
Mon Feb 11, 2008 9:00 am
Forum: VCL
Topic: Hide some Chart Editor tabs
Replies: 3
Views: 5880

Hi John,

Sorry for delay. We were doing some tests and we could reproduce it. So, I've included the bug to the wish list to be fixed in future releases. (TV52012807)

By the meanwhile note that you still can do the same with the ChartEditor inspector.
by Yeray
Mon Feb 11, 2008 8:47 am
Forum: VCL
Topic: TeeChart with Quick Reports & CB2007
Replies: 8
Views: 10495

Hi TLA,

I've just sent the mail again.
by Yeray
Thu Feb 07, 2008 11:20 am
Forum: VCL
Topic: Installation TChart 8, QuickReport 4 and Delphi 6
Replies: 5
Views: 8102

Hi Stuart, Could you please try to run this example? This works fine for us here. uses QrTee, Series; procedure TForm1.FormCreate(Sender: TObject); var PQRChart1: TQRChart; line1: TLineSeries; begin line1 := TLineSeries.Create(self); line1.FillSampleValues(20); PQRChart1 := TQRChart.create(Self); PQ...
by Yeray
Thu Feb 07, 2008 8:58 am
Forum: VCL
Topic: TeeChart with Quick Reports & CB2007
Replies: 8
Views: 10495

Hi TLA,

I've sent the files to your registered mail address.
by Yeray
Wed Feb 06, 2008 11:03 am
Forum: VCL
Topic: Re: help for DBChart and MS SQL server DB
Replies: 2
Views: 4998

Hi daniel, You should connect your database to cbuilder using a component such as DatabaseSource. It should allow you to access to your database as a table and then you should be able to do queries or to connect it to a chart. If you have this, what exactly problem do you have connecting them? Can y...
by Yeray
Wed Feb 06, 2008 10:22 am
Forum: ActiveX
Topic: Russian Symbols in Legend in title
Replies: 7
Views: 9490

Hi Dunemaster,

When the string starts with non unicode characters you will need to decode the unicode string. Here is an example:

Code: Select all

TChart1.Header.Caption = TChart1.Environment.CodeUTF8String("EXAMPLE " & TChart1.Environment.DecodeUTF8String("@U#4558414D504C45"), True)
by Yeray
Tue Feb 05, 2008 9:31 am
Forum: VCL
Topic: Remove everything, leave the lines
Replies: 1
Views: 3454

Minas, I'm not sure to understand what type of chart are you trying to draw. But here there are some examples of how you can deactivate some things: Series1.Active := false; Chart1.Legend.Visible := false; Chart1.Title.Visible := false; Chart1.Axes.Visible := false; Chart1.Walls.Visible := false; Ch...
by Yeray
Tue Feb 05, 2008 9:12 am
Forum: ActiveX
Topic: Add LegendPalette Tool with VBScript
Replies: 5
Views: 7743

Hi Danila,

Maybe you are trying to use Legend palette with an unaccepted series. Note that this tool only works for 3D series (Surface, Contour, Tower,...)
by Yeray
Tue Feb 05, 2008 8:56 am
Forum: ActiveX
Topic: How Can I Change source series in program
Replies: 1
Views: 3990

Hi Jameh2020,

You can change function period as follows:

Code: Select all

TChart1.Series(FunctionIndex).FunctionType.Period = NewPeriodValue
You can assign a function source as follows:

Code: Select all

TChart1.Series(FunctionIndex).DataSource = TChart1.Series(SourcesIndex)
by Yeray
Mon Feb 04, 2008 11:43 am
Forum: VCL
Topic: Re: How to use TDBChart
Replies: 4
Views: 7143

Hi Daniel, I've tested Tee7New.bpr with latest TeeChart v7 version (TeeChart7.12Delphi2006.exe) and this works fine here. Could you please download and install it? Note that to be able to compile Tee7New.bpr project, you will need to add two files (TeeExpForm.pas and TeeDesignOptions.pas) to the pro...