Search found 92 matches

by moelski
Tue May 12, 2009 10:40 am
Forum: VCL
Topic: Clone Series from a TmpChart ?
Replies: 26
Views: 37058

This won´t work, too: :( var SerieCopy : TChartSeries; ...... tmpEmpty := TChart.Create(nil); { Create an empty chart } tmpEmpty.Parent := Self; try LoadChartFromStream(TCustomChart(tmpEmpty), Stream); // Dummy Chart mit Stream füllen // Serien kopieren while Serien <> '' do begin Serie := StrToInt(...
by moelski
Tue May 12, 2009 10:15 am
Forum: VCL
Topic: Clone Series from a TmpChart ?
Replies: 26
Views: 37058

I also tried this: tmpEmpty := TChart.Create(nil); { Create an empty chart } tmpEmpty.Parent := Self; try LoadChartFromStream(TCustomChart(tmpEmpty), Stream); // Dummy Chart mit Stream füllen // Serien kopieren while Serien <> '' do begin Serie := StrToInt(Copy(Serien, 1, pos('#', Serien) - 1)); Ser...
by moelski
Tue May 12, 2009 8:42 am
Forum: VCL
Topic: Clone Series from a TmpChart ?
Replies: 26
Views: 37058

Clone Series from a TmpChart ?

Hi ! I use this code to Clone Series from a Temp Chart to an available chart: // Dummy Chart erzeugen tmpEmpty := TChart.Create(nil); { Create an empty chart } tmpEmpty.Parent := Self; try LoadChartFromStream(TCustomChart(tmpEmpty), Stream); // Dummy Chart mit Stream füllen // Serien kopieren while ...
by moelski
Tue May 12, 2009 7:47 am
Forum: VCL
Topic: TChartListBox and Drag & Drop
Replies: 1
Views: 4040

TChartListBox and Drag & Drop

Hi ! I have a problem using TChartListBox with Drag & Drop. I use the DropMaster component from www.raize.com for Drag & Drop. My ListBox has Multiselect and ExtendedSelect enabled. So the user can select any series he wants. Lets say we have 3 series and the user selects 2 of them. This works fine....
by moelski
Mon May 11, 2009 8:52 am
Forum: VCL
Topic: How to copy series between applications?
Replies: 4
Views: 6904

And one aditional question ...

Why can´t you simple add functions liek SaveToStream / LoadFromStream to the series?
by moelski
Sun May 10, 2009 6:19 pm
Forum: VCL
Topic: How to copy series between applications?
Replies: 4
Views: 6904

Hi Yeray, well dropMaster from www.raize.com can send Byte Stream via Drag & Drop from one application to another one. Could you think about a solution to only send one series? Sending the whole chart and first creating a dummy chart in the destination application is not such a good way. Maybe there...
by moelski
Mon May 04, 2009 7:39 pm
Forum: VCL
Topic: How to copy series between applications?
Replies: 4
Views: 6904

How to copy series between applications?

Hi ! Is there any way to copy series (or a whole chart) between applications? I don´t want to use files! Let me give you an example ... Lets say there are two applications which have both a chart with 2 series each. Now I want to copy series 1 from application ONE to application TWO and add it as se...
by moelski
Wed Apr 29, 2009 5:33 am
Forum: VCL
Topic: Next VCL Release
Replies: 9
Views: 12646

Hi !

Will it be release 9.0 or 8.xx ?
And any news about the v9 Beta / preview?
by moelski
Thu Mar 12, 2009 10:17 am
Forum: VCL
Topic: Looking forward to version 9... what's coming?
Replies: 34
Views: 48616

Hi Narcis, well if you take a look at the PDF file you will find die information that there will be an beta V9 (VCL) at the end of the 1st Qtr. We are in the middle of march and I want to ask you if we could expect a V9 beta in 3-4 weeks. And have you some information what kind of new features will ...
by moelski
Mon Mar 09, 2009 12:32 pm
Forum: VCL
Topic: Saveing TChart during series update?
Replies: 5
Views: 8302

Hi Yeray,

thx for the information.

One last question ...
There is a AutoRepaint for series:

Code: Select all

//  for i := 0 to Chart.SeriesCount - 1 do
//    TFastLineSeries(Chart[i]).AutoRepaint := True;
and a AutoRepaint for the Chart:

Code: Select all

Chart.AutoRepaint := ....
I should use Chart.AutoRepaint !?
by moelski
Mon Mar 09, 2009 11:44 am
Forum: VCL
Topic: Saveing TChart during series update?
Replies: 5
Views: 8302

Hi Yeray, I tried this: Chart.AutoRepaint := False; TeeSaveToJPEGFile( Chart, // Chart ... HTMLDir + '\mychart.jpg', // Path False, // not gray scale jpBestQuality, 95, // compression Chart_Width, //Chart1.Width, Chart_Height); //Chart1.Height ); Chart.AutoRepaint := True; Chart.Repaint; But I have ...
by moelski
Thu Mar 05, 2009 8:13 am
Forum: VCL
Topic: Saveing TChart during series update?
Replies: 5
Views: 8302

Saveing TChart during series update?

Hello ! We want to implement a very simple HTTP Server into our application. This webserver should serve a webside which contains the actual chart view as JPG. Everytime the webside is requested from the browser the chart should be refreshed. For use the following code for that: TeeSaveToJPEGFile( C...
by moelski
Tue Jan 13, 2009 11:56 am
Forum: VCL
Topic: Looking forward to version 9... what's coming?
Replies: 34
Views: 48616

Hi !

This would be really interesting for us, too :)
by moelski
Tue Jan 13, 2009 11:45 am
Forum: VCL
Topic: Show TFormTeeSeries in a seperated Window?
Replies: 5
Views: 7653

Hi Narcis, yes my version seems to work as expected. I found a solution for editing the Axis only, too: procedure TLVMainForm.dxBarButton11Click(Sender: TObject); var Form : TForm; Panel : TPanel; tmpForm : TFormTeeAxis; begin Form := TForm.Create(self); Form.Caption := 'Achsen'; Form.BorderStyle :=...
by moelski
Tue Jan 13, 2009 11:27 am
Forum: VCL
Topic: Show TFormTeeSeries in a seperated Window?
Replies: 5
Views: 7653

Hi Narcis,

but your solution works only with FastLineSeries, right?
What I need is a "global" solution for all series types.