Search found 104 matches

by Calou
Tue Oct 13, 2009 8:53 am
Forum: VCL
Topic: Tool Data Table
Replies: 3
Views: 4518

Tool Data Table

Hello,

I have problem with DataTable

Here are the pictures:
http://www.cijoint.fr/cjlink.php?file=c ... th66PH.jpg
http://www.cijoint.fr/cjlink.php?file=c ... DXAunS.jpg

With the datatable there is no mars month.

I don't understand why :oops:

Thanks for help
by Calou
Thu Sep 10, 2009 4:08 pm
Forum: VCL
Topic: barwidth 8.04->8.06
Replies: 8
Views: 7731

Re: barwidth 8.04->8.06

:shock:
So i hope that i can reinstall the previous version!
by Calou
Thu Sep 10, 2009 10:00 am
Forum: VCL
Topic: barwidth 8.04->8.06
Replies: 8
Views: 7731

Re: barwidth 8.04->8.06

Hello,

I 've never used the 8.05 but in the 8.04 it works good

How could prevent it in 8.06?

Regards
by Calou
Thu Sep 10, 2009 9:12 am
Forum: VCL
Topic: barwidth 8.04->8.06
Replies: 8
Views: 7731

Re: barwidth 8.04->8.06

Hi,

Yes with your code is good.

With the code below the width change

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
var i: integer;
begin
  for i := 0 to 10 do
  begin
    Series1.Addxy(i,i);
  end;
  for i := 0 to 20 do
  begin
    Series2.Addxy(i/2,i/2);
  end;
end;
by Calou
Wed Sep 09, 2009 4:05 pm
Forum: VCL
Topic: barwidth 8.04->8.06
Replies: 8
Views: 7731

Re: barwidth 8.04->8.06

I have found it is because on the same chart i have a TbarSeries and TlineSeries. If i uncheck the TlineSeries the width is ok and if i check the TlineSeries the width change and is not correct for me. This behavior did not exist on the previous version http://cjoint.com/?jjsd5TlRCm http://cjoint.co...
by Calou
Wed Sep 09, 2009 3:35 pm
Forum: VCL
Topic: barwidth 8.04->8.06
Replies: 8
Views: 7731

barwidth 8.04->8.06

Hello

I have installed the 8.06 verison and now the width of tbarseries is very small. How could i do to have the same behavior than the 8.04 version (all the parameters of the tbarseries was by default)

Regards
by Calou
Tue Sep 01, 2009 10:01 am
Forum: VCL
Topic: Title Add line
Replies: 2
Views: 3800

Re: Title Add line

Thanks

I was using the property caption. With text it works

Regards
by Calou
Mon Aug 31, 2009 3:02 pm
Forum: VCL
Topic: Title Add line
Replies: 2
Views: 3800

Title Add line

Hello,

How can i do to add a line in a title with delphi?
For example :

This is the first line of my title
this is the second line of my title

I have tried by using #13#10 but it doesn't work

Thanks

Regards
by Calou
Thu Jul 16, 2009 2:21 pm
Forum: VCL
Topic: Save settings with charteditor
Replies: 1
Views: 3056

Save settings with charteditor

Hello,

By using ChartEditor at run time is there is a way to save the parameter's chart in order to have the same when the application is relauched?

Regards
by Calou
Thu Jun 25, 2009 1:34 pm
Forum: VCL
Topic: TpolarSeries and graduation
Replies: 6
Views: 6765

Re: TpolarSeries and graduation

I find the solution with property rotation

Many thanks for help
by Calou
Thu Jun 25, 2009 1:10 pm
Forum: VCL
Topic: TpolarSeries and graduation
Replies: 6
Views: 6765

Re: TpolarSeries and graduation

Thank you, it works good,

I have an other question. On a Tpolar how could i do to begin the graduation 0° at top instead of on the right?

Thanks
by Calou
Thu Jun 25, 2009 10:07 am
Forum: VCL
Topic: TpolarSeries and graduation
Replies: 6
Views: 6765

Re: TpolarSeries and graduation

Hello here is my code with a TRoseSeries Series1.AddXY(0,20); Series1.AddXY(30,20); Series1.AddXY(30,0); Series1.AddXY(30,40); Series1.AddXY(60,40); Series1.AddXY(60,0); It works good Now if i do the code below the draw is not correct (i want the same that above but in clockwise) Series1.AddXY(0,20)...
by Calou
Tue Jun 23, 2009 3:31 pm
Forum: VCL
Topic: TpolarSeries and graduation
Replies: 6
Views: 6765

TpolarSeries and graduation

Hello,

On a TPolarSeries is it possible to change the place of the angle 0° and to increment the angle in clock wise instead of anticlockwise?

Thanks for help

Regards
by Calou
Thu Jun 11, 2009 12:32 pm
Forum: VCL
Topic: Chart dimension and legend
Replies: 1
Views: 2962

Chart dimension and legend

Hello,

I would like to have the chart dimension always the same even if the legend is hidden or not. How can i do to block the automatic autosize?

Regards
by Calou
Wed Jun 10, 2009 12:53 pm
Forum: VCL
Topic: Modify height of legend
Replies: 1
Views: 2917

Modify height of legend

Hello,

I want to modify the height of a legend but if i do chart.legend.height:=newvalue nothing occur.

Is it possible to do it?

Thanks

Regards